/* Pembolehubah CSS */
        :root {
            --bg-color: #F5F1E8;
            --name-color: #7A736A;
            --role-color: #4F4942;
            --icon-color: #4B3724;
            --border-color: #6A5C4D;
        }

        /* Reset Global */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-color);
            display: flex;
            justify-content: center;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body.theme-style-solid {
            --bg-color: #f3f4f6;
        }

        body.theme-style-soft-gradient {
            --bg-color: #f5f1e8;
        }

        body.theme-style-dark-gradient {
            --bg-color: #1f2937;
            --name-color: #e5e7eb;
            --role-color: #d1d5db;
            --icon-color: #e5e7eb;
            --border-color: #4b5563;
        }

        body.theme-style-light-minimal {
            --bg-color: #f8fafc;
            --name-color: #374151;
            --role-color: #475569;
            --icon-color: #334155;
            --border-color: #cbd5e1;
        }

        /* Bekas Utama */
        .bio-page {
            width: 100%;
            max-width: 430px;
            background-color: var(--bg-color);
            position: relative;
            padding-bottom: 50px;
            overflow-x: hidden;
        }

        /* Bahagian Latar Belakang (Cover) */
        .cover {
            width: 100%;
            height: 160px; /* Dikecilkan dari 195px */
            overflow: hidden;
            position: relative;
        }

        .cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            display: block;
        }

        .cover-fallback {
            position: absolute;
            inset: 0;
            display: none;
            background: linear-gradient(135deg, rgba(109, 91, 255, 0.28), rgba(167, 139, 250, 0.16) 58%, rgba(255, 255, 255, 0.72));
        }

        .cover--fallback .cover-fallback {
            display: block;
        }

        /* Bahagian Profil */
        .profile-wrapper {
            display: flex;
            justify-content: center;
            margin-top: -75px; /* Dilaraskan mengikut saiz avatar baru */
            position: relative;
            z-index: 2;
        }

        .avatar {
            width: 150px; /* Dikecilkan dari 190px */
            height: 150px;
            border-radius: 50%;
            border: 4px solid var(--bg-color);
            object-fit: cover;
            filter: grayscale(100%);
            background-color: #E8E4D9;
        }

        .avatar-fallback {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 4px solid var(--bg-color);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 42px;
            letter-spacing: 0.04em;
            color: #ffffff;
            background: linear-gradient(135deg, #6D5BFF, #9F7AEA);
        }

        /* Tipografi */
        .name {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 300;
            font-size: 34px; /* Dikecilkan dari 42px */
            color: var(--name-color);
            text-align: center;
            margin-top: 18px;
            line-height: 1.1;
        }

        .role {
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            font-size: 11px; /* Dikecilkan dari 14px */
            color: var(--role-color);
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 6px;
            margin-top: 12px;
            text-indent: 6px; 
        }

        /* Ikon Media Sosial */
        .socials {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 45px; /* Dikurangkan dari 62px */
            margin-top: 40px;
            margin-bottom: 45px;
        }

        .socials a {
            color: var(--accent-color);
            text-decoration: none;
            font-size: 22px; /* Dikecilkan dari 30px */
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s ease;
        }

        .socials a:hover {
            opacity: 0.7;
        }

        /* Bahagian Pautan */
        .links {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .bio-link {
            width: calc(100% - 58px);
            height: 70px; /* Dikecilkan dari 92px */
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-color); 
            background-color: transparent;
            color: var(--role-color);
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            font-size: 13px; /* Dikecilkan dari 17px */
            text-transform: uppercase;
            letter-spacing: 7px;
            text-indent: 7px; 
            margin-bottom: 22px; /* Dikecilkan dari 30px */
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        .bio-link:last-child {
            margin-bottom: 0;
        }

        .bio-link:hover {
            background-color: var(--border-color);
            color: var(--bg-color);
        }

        .logo-wrap {
            display: flex;
            justify-content: center;
            margin-top: 12px;
        }

        .brand-logo {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            object-fit: cover;
            border: 1px solid rgba(0, 0, 0, 0.08);
            background: #ffffff;
        }

        .brand-logo-fallback {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            border: 1px solid rgba(106, 92, 77, 0.2);
            background: #ffffff;
            color: #6d5bff;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            letter-spacing: 0.05em;
        }

        .meta-line {
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 11px;
            color: #6d665f;
            margin-top: 10px;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .bio-intro {
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            font-size: 12px;
            color: #58524b;
            line-height: 1.5;
            max-width: 320px;
            margin: 10px auto 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
            width: calc(100% - 58px);
            margin: 24px auto 0;
        }

        .stat-card {
            border: 1px solid rgba(106, 92, 77, 0.3);
            border-radius: 12px;
            padding: 10px;
            text-align: center;
            background: rgba(255, 255, 255, 0.35);
        }

        .stat-card strong {
            display: block;
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            color: var(--accent-color);
            margin-bottom: 2px;
        }

        .stat-card span {
            display: block;
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            color: #5d5550;
            text-transform: uppercase;
            letter-spacing: 0.08em;
        }

        .contact-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            width: calc(100% - 58px);
            margin: 16px auto 10px;
        }

        .action-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 34px;
            padding: 0 12px;
            border-radius: 999px;
            border: 1px solid rgba(106, 92, 77, 0.35);
            background: #ffffff;
            color: #504942;
            font-family: 'Montserrat', sans-serif;
            font-size: 10px;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            text-decoration: none;
        }

        .bio-link {
            justify-content: flex-start;
            gap: 8px;
            padding: 0 18px;
        }

        .bio-link__icon {
            font-size: 16px;
            line-height: 1;
        }

        .bio-link__label {
            flex: 1;
            text-align: center;
        }

        .is-hidden {
            display: none !important;
        }

