*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --green: #00a379;
            --blue: #265e90;
            --navy: #0f1a2b;
            --bg: #f7f9fc;
            --text: #1a1a2e;
            --text-light: #5a6377;
            --border: #e2e8f0;
            --radius: 16px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg);
            color: var(--text);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        .container {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 480px;
            padding: 48px 20px 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Profile section */
        .profile {
            text-align: center;
            margin-bottom: 36px;
        }

        .profile-logo {
            display: block;
            margin: 0 auto 20px;
            transition: transform 0.3s ease;
        }

        .profile-logo:hover {
            transform: scale(1.05);
        }

        .profile-logo img {
            height: 48px;
            width: auto;
        }

        .profile h1 {
            font-size: 24px;
            font-weight: 800;
            color: var(--navy);
            letter-spacing: -0.5px;
            margin-bottom: 6px;
        }

        .profile h1 span {
            background: linear-gradient(135deg, var(--green), var(--blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .profile p {
            font-size: 15px;
            color: var(--text-light);
            font-weight: 400;
            line-height: 1.5;
            max-width: 320px;
            margin: 0 auto;
        }

        /* Links */
        .links {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .link-card {
            display: flex;
            align-items: center;
            gap: 16px;
            width: 100%;
            padding: 18px 24px;
            background: #ffffff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            text-decoration: none;
            color: var(--text);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .link-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: linear-gradient(135deg, rgba(0,163,121,0.04), rgba(38,94,144,0.04));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .link-card:hover {
            transform: translateY(-3px);
            border-color: rgba(0,163,121,0.3);
            box-shadow: 0 8px 32px rgba(0,163,121,0.1), 0 2px 12px rgba(0,0,0,0.06);
        }

        .link-card:hover::before {
            opacity: 1;
        }

        .link-card:active {
            transform: translateY(-1px);
        }

        .link-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }

        .link-icon svg {
            width: 22px;
            height: 22px;
            fill: #ffffff;
        }

        .link-icon.linkedin { background: #0A66C2; }
        .link-icon.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
        .link-icon.facebook { background: #1877F2; }
        .link-icon.skool { background: #FFD700; }
        .link-icon.skool svg { fill: #1a1a2e; }
        .link-icon.calendar { background: linear-gradient(135deg, var(--green), var(--blue)); }

        .link-info {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .link-info .link-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 2px;
        }

        .link-info .link-desc {
            font-size: 13px;
            color: var(--text-light);
            font-weight: 400;
        }

        .link-arrow {
            position: relative;
            z-index: 1;
            color: var(--border);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .link-card:hover .link-arrow {
            color: var(--green);
            transform: translateX(4px);
        }

        .link-arrow svg {
            width: 20px;
            height: 20px;
        }

        /* Footer */
        .footer {
            margin-top: 48px;
            text-align: center;
            padding-bottom: 24px;
        }

        .footer a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--green);
        }

        .footer .divider {
            width: 40px;
            height: 1px;
            background: var(--border);
            margin: 16px auto;
        }

        .footer .site-link {
            font-size: 12px;
            color: var(--text-light);
        }

        /* Mobile adjustments */
        @media (max-width: 520px) {
            .container { padding: 36px 16px 32px; }
            .profile-logo img { height: 40px; }
            .profile h1 { font-size: 22px; }
            .link-card { padding: 16px 20px; gap: 14px; }
            .link-icon { width: 40px; height: 40px; border-radius: 10px; }
            .link-icon svg { width: 20px; height: 20px; }
            .link-info .link-name { font-size: 15px; }

        /* ========== LANGUAGE TOGGLE ========== */

        /* Mobile nav toggle */

        }
    
        /* ========== LANGUAGE SWITCHER ========== */
        .custom .lang-switcher {
            position: relative;
            display: flex;
            align-items: center;
        }
        .custom .lang-switcher-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 7px 14px;
            border-radius: 8px;
            border: 1.5px solid var(--border);
            background: transparent;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-light);
            transition: var(--transition);
        }
        .custom .lang-switcher-btn:hover {
            border-color: var(--blue);
            color: var(--blue);
            background: rgba(38,94,144,0.04);
        }
        .custom .lang-switcher-btn svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }
        .custom .lang-switcher-btn .arrow {
            width: 10px;
            height: 10px;
            transition: transform 0.2s ease;
        }
        .custom .lang-switcher.open .lang-switcher-btn .arrow {
            transform: rotate(180deg);
        }
        .custom .lang-switcher.open .lang-switcher-btn {
            border-color: var(--blue);
            color: var(--blue);
        }
        .custom .lang-dropdown {
            position: absolute;
            top: calc(100% + 6px);
            right: 0;
            min-width: 140px;
            background: #fff;
            border-radius: 10px;
            border: 1px solid var(--border);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.2s ease;
            z-index: 1001;
            overflow: hidden;
        }
        .custom .lang-switcher.open .lang-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .custom .lang-dropdown a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }
        .custom .lang-dropdown a:hover {
            background: rgba(38,94,144,0.06);
            color: var(--blue);
        }
        .custom .lang-dropdown a.active-lang {
            color: var(--blue);
            font-weight: 600;
            background: rgba(38,94,144,0.04);
        }
        .custom .lang-dropdown a .check {
            margin-left: auto;
            opacity: 0;
        }
        .custom .lang-dropdown a.active-lang .check {
            opacity: 1;
        }
        .custom .mobile-nav .lang-switcher {
            padding: 16px 0;
            border-bottom: 1px solid var(--border);
        }
        .custom .mobile-nav .lang-switcher-btn {
            width: 100%;
            justify-content: center;
        }