* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary-color: #1a1a1a;
    --accent-color: #2563eb;
    --background-color: #ffffff;
    --text-color: #1a1a1a;
    --transition: all 0.3s ease;
    --safe-area-inset-top: env(safe-area-inset-top, 0px);
    --safe-area-inset-bottom: env(safe-area-inset-bottom, 0px);
}

html {
    -webkit-text-size-adjust: 100%;
    height: -webkit-fill-available;
}

body {
    font-family: 'Kanchenjunga', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: linear-gradient(120deg, #f8fafc 0%, #e3eafc 100%);
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--safe-area-inset-top) 0 var(--safe-area-inset-bottom) 0;
}

.container {
    max-width: 480px;
    width: 100%;
    margin: 2rem auto;
    padding: 0;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(37,99,235,0.08), 0 1.5px 4px rgba(0,0,0,0.06);
    overflow: hidden;
}

header {
    text-align: center;
    padding: 3.5rem 0 2rem 0;
    margin-bottom: 2rem;
    position: relative;
    background: linear-gradient(135deg, #e3eafc 0%, #f8fafc 100%);
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.7rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--primary-color);
    opacity: 0.85;
    margin-bottom: 0;
    background: none;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}

.verified-badge {
    display: inline-block;
    font-size: 1.2rem;
    color: #3bb77e;
    background: #e6f9f0;
    border-radius: 50%;
    padding: 0.1em 0.35em;
    margin-left: 0.2em;
    box-shadow: 0 2px 8px rgba(59,183,126,0.08);
    vertical-align: middle;
}

.profile-pic {
    display: block;
    margin: 0 auto 2.2rem auto;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12), 0 1.5px 4px rgba(0,0,0,0.08);
    border: 5px solid #fff;
    background: #f8f9fa;
    transition: box-shadow 0.3s;
}

.profile-pic:hover {
    box-shadow: 0 8px 32px rgba(37,99,235,0.18), 0 3px 8px rgba(0,0,0,0.10);
}

section {
    background: transparent;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    text-align: center;
}

h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.85;
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: nowrap;
    white-space: normal;
    overflow-x: visible;
    padding: 0 1rem;
    max-width: 100vw;
}

.linkedin-btn, .instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: white;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.18rem;
    transition: var(--transition);
    min-height: 48px;
    min-width: 48px;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(37,99,235,0.08);
}

.linkedin-btn {
    background: linear-gradient(90deg, #2563eb 60%, #3b82f6 100%);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.linkedin-btn:hover, .instagram-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.12), 0 4px 6px -2px rgba(37, 99, 235, 0.08);
    filter: brightness(1.05);
}

.linkedin-btn i, .instagram-btn i {
    font-size: 1.25rem;
}

footer {
    text-align: center;
    padding: 2rem 0 1.5rem 0;
    color: #666;
    font-size: 0.95rem;
    opacity: 0.8;
    background: transparent;
}

.language-picker {
    margin-top: 2rem;
    text-align: center;
}

.language-picker .lang-btn {
    text-decoration: none;
    color: #666;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.language-picker .lang-btn:hover {
    color: #0077b5;
}

.language-picker .lang-btn.active {
    color: #0077b5;
    font-weight: bold;
}

.language-picker .lang-separator {
    color: #ccc;
    margin: 0 0.5rem;
}

.language-picker .globe-icon {
    margin-right: 0.5rem;
}

/* RTL Support */
[lang="ar"] {
    direction: rtl;
}

[lang="ar"] .linkedin-btn i,
[lang="ar"] .instagram-btn i {
    margin-left: 0.5rem;
    margin-right: 0;
}

/* Tablet and smaller desktop */
@media (max-width: 1024px) {
    .container {
        margin: 1.5rem;
    }

    h1 {
        font-size: 3.5rem;
    }

    header {
        padding: 4rem 0;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .container {
        max-width: 98vw;
        margin: 1rem;
    }

    h1 {
        font-size: 3rem;
    }

    header {
        padding: 3rem 0;
        margin-bottom: 2rem;
    }

    .linkedin-btn, .instagram-btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .social-links {
        gap: 1rem;
    }

    .profile-pic {
        width: 120px;
        height: 120px;
        margin-bottom: 1.5rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    h1 {
        font-size: 1.7rem;
    }

    header {
        padding: 2rem 0 1.2rem 0;
    }

    section {
        padding: 1.2rem 0.5rem;
    }

    h2 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .linkedin-btn, .instagram-btn {
        padding: 0.8rem 1.2rem;
        font-size: 1rem;
        min-height: 40px;
        min-width: 40px;
    }

    .language-picker {
        gap: 0.25rem;
        padding: 0 0.2rem;
        max-width: 100vw;
        overflow-x: auto;
        white-space: nowrap;
    }

    .lang-btn {
        font-size: 0.95rem;
        padding: 0.18rem 0.5rem;
        min-width: 2.1rem;
    }

    .lang-separator {
        margin: 0 0.1rem;
    }

    .social-links {
        gap: 0.7rem;
        padding: 0 0.2rem;
        max-width: 100vw;
        overflow-x: visible;
        white-space: normal;
    }
}

/* iPhone X and newer */
@supports (padding: max(0px)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
} 