/* Modern Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* Microsoft Copilot Style Font (Segoe UI) */
    font-family: 'Segoe UI Variable', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #f0f2f5 0%, #d9e2ec 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.profile-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 20px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
}

/* ဓာတ်ပုံနေရာ */
.img-container {
    width: 160px; 
    height: 180px;
    
    /* အောက်ဆုံးက ဂဏန်း 40px က ပုံနဲ့ စာသားကြား အကွာအဝေးပါ */
    /* နာမည်နဲ့ လွတ်သွားအောင် 15px ကနေ 40px လောက်ထိ တိုးလိုက်ပါတယ် */
    margin: 0 auto 40px auto; 
    
    padding: 0;
    background: none; 
    border-radius: 12px;
    
    /* အရိပ်တွေ လုံးဝ မကျအောင် ပိတ်ထားပါမယ် */
    box-shadow: none; 
    border: none;
}

.img-container:hover {
    transform: scale(1.05);
}

.default-icon {
    font-size: 50px; 
    color: white; 
    opacity: 0.5;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block; 
}

/* နာမည်ဒီဇိုင်း (Bold & Copilot Font) */
.name {
    color: #5e54bc; /* Deep Blurple */
    font-size: 24px;
    font-weight: 800; /* Extra Bold */
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.dob {
    color: #606060;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    background: #f3f3f3;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
}

/* Info Boxes */
.info-box {
    background: #fff;
    margin: 10px 0;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.info-box.hover-effect:hover {
    background: #f8f9fa;
    border-color: #5e54bc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.info-icon {
    font-size: 18px;
}

.address-icon { color: #ff4757; }
.web-icon { color: #2ed573; }
.address-text { text-align: left; }

.website-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Social Icons - One Line Layout */
.social-area {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap; /* တတန်းတည်း အတင်းထားခြင်း */
    gap: 10px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: all 0.2s;
    flex-shrink: 0; /* မပိန်သွားအောင် */
}

.social-btn:hover {
    transform: translateY(-3px);
}

/* Icon Colors */
.telegram { background: #0088cc; }
.youtube { background: #ff0000; }
.whatsapp { background: #25d366; }
.facebook { background: #3b5998; }
.line { background: #00c300; }
.gmail { background: #EA4335; }

/* Mobile Responsive Adjustments */
@media (max-width: 380px) {
    .profile-card { padding: 30px 15px; }
    
    /* ဖုန်းမျက်နှာပြင် သေးရင် Icon တွေကို အလိုအလျောက် သေးပေးမည် */
    .social-btn { 
        width: 34px; 
        height: 34px; 
        font-size: 14px; 
    }
    .social-area { gap: 6px; }
    
    .name { font-size: 22px; }
}