        /* ===== CSS Variables & Reset ===== */
        :root {
            --primary: #0F2B5B;
            --primary-dark: #081A3A;
            --primary-light: #1E4A7A;
            --accent: #D4A843;
            --accent-light: #E8C96E;
            --bg: #F5F7FA;
            --card-bg: rgba(255, 255, 255, 0.88);
            --text: #1A1A2E;
            --text-light: #5A5A7A;
            --border: rgba(15, 43, 91, 0.08);
            --shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
            --radius: 24px;
            --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --glass-bg: rgba(255, 255, 255, 0.55);
            --glass-border: rgba(255, 255, 255, 0.30);
            --nav-bg: rgba(8, 26, 58, 0.94);
            --footer-bg: #081A3A;
            --gradient-hero: linear-gradient(135deg, #081A3A 0%, #0F2B5B 50%, #1E4A7A 80%, #D4A843 100%);
            --gradient-card: linear-gradient(145deg, #ffffff, #f5f7fa);
            --body-font: 'Segoe UI', 'PingFang SC', system-ui, -apple-system, sans-serif;
        }

        [data-theme="dark"] {
            --bg: #0D0D1A;
            --card-bg: rgba(20, 20, 45, 0.85);
            --text: #EAEAEA;
            --text-light: #9A9AB8;
            --border: rgba(212, 168, 67, 0.15);
            --shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
            --glass-bg: rgba(16, 16, 40, 0.70);
            --glass-border: rgba(255, 255, 255, 0.04);
            --nav-bg: rgba(6, 12, 28, 0.96);
            --gradient-card: linear-gradient(145deg, #1A1A35, #0D0D22);
            --gradient-hero: linear-gradient(135deg, #050A18 0%, #081A3A 50%, #0F2B5B 80%, #B8942A 100%);
        }

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

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: var(--body-font);
            background: var(--bg);
            color: var(--text);
            line-height: 1.7;
            transition: background var(--transition), color var(--transition);
            overflow-x: hidden;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color var(--transition);
        }
        a:hover {
            color: var(--accent);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== Scrollbar ===== */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--bg);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }

        /* ===== Header / Nav ===== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: var(--nav-bg);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            transition: background var(--transition);
        }

        nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 74px;
            padding: 0 24px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.5px;
        }
        .nav-brand svg {
            width: 42px;
            height: 42px;
        }
        .nav-brand span {
            color: var(--accent-light);
            background: linear-gradient(135deg, var(--accent-light), #F5D742);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
        }
        .nav-links a {
            color: rgba(255, 255, 255, 0.75);
            font-weight: 500;
            font-size: 0.92rem;
            position: relative;
            padding: 4px 0;
            transition: color var(--transition);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 2px;
            background: var(--accent-light);
            transition: width var(--transition);
        }
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: #fff;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 14px;
        }
        .nav-actions button {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.75);
            font-size: 1.2rem;
            cursor: pointer;
            padding: 6px;
            border-radius: 8px;
            transition: all var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .nav-actions button:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px;
            background: none;
            border: none;
        }
        .nav-toggle span {
            width: 26px;
            height: 2.5px;
            background: #fff;
            border-radius: 4px;
            transition: all var(--transition);
        }
        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ===== Mobile Menu ===== */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 74px;
            left: 0;
            width: 100%;
            height: calc(100vh - 74px);
            background: var(--nav-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 32px 24px;
            flex-direction: column;
            gap: 20px;
            overflow-y: auto;
            z-index: 999;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }
        .mobile-menu.open {
            display: flex;
        }
        .mobile-menu a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            font-weight: 500;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
            transition: color var(--transition);
        }
        .mobile-menu a:hover {
            color: #fff;
        }

        /* ===== Breadcrumb ===== */
        .breadcrumb {
            padding: 100px 0 16px 0;
            font-size: 0.85rem;
            color: var(--text-light);
            background: transparent;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb span {
            margin: 0 6px;
        }

        /* ===== Hero ===== */
        .hero {
            position: relative;
            min-height: 92vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-hero);
            padding: 120px 24px 80px;
            overflow: hidden;
            margin-top: -74px;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 55%;
            height: 180%;
            background: radial-gradient(ellipse, rgba(212, 168, 67, 0.06), transparent 60%);
            pointer-events: none;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 140px;
            background: linear-gradient(to top, var(--bg), transparent);
            pointer-events: none;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 960px;
            text-align: center;
            color: #fff;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(8px);
            padding: 6px 24px;
            border-radius: 50px;
            font-size: 0.78rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            border: 1px solid rgba(255, 255, 255, 0.08);
            margin-bottom: 24px;
        }
        .hero-badge .gold {
            color: var(--accent-light);
        }
        .hero h1 {
            font-size: clamp(3rem, 10vw, 5.6rem);
            font-weight: 900;
            line-height: 1.04;
            letter-spacing: -2px;
            margin-bottom: 20px;
            text-shadow: 0 4px 50px rgba(0, 0, 0, 0.25);
        }
        .hero h1 span {
            color: var(--accent-light);
            background: linear-gradient(135deg, var(--accent-light), #F5D742);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero p {
            font-size: 1.2rem;
            opacity: 0.88;
            max-width: 680px;
            margin: 0 auto 36px;
            line-height: 1.9;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 38px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all var(--transition);
            text-decoration: none;
        }
        .btn-primary {
            background: var(--accent-light);
            color: #1A1A2E;
            box-shadow: 0 8px 30px rgba(212, 168, 67, 0.30);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(212, 168, 67, 0.45);
        }
        .btn-outline {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.20);
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: #fff;
            transform: translateY(-3px);
        }
        .btn-dark {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 8px 30px rgba(15, 43, 91, 0.30);
        }
        .btn-dark:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(15, 43, 91, 0.45);
        }
        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            justify-content: center;
            margin-top: 48px;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
        }
        .hero-stats .stat {
            text-align: center;
        }
        .hero-stats .stat-number {
            font-size: 2.6rem;
            font-weight: 800;
            color: #fff;
            display: block;
            letter-spacing: -1px;
        }
        .hero-stats .stat-label {
            font-size: 0.85rem;
            opacity: 0.7;
        }

        /* ===== Section Common ===== */
        section {
            padding: 80px 0;
            position: relative;
        }
        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 800;
            margin-bottom: 12px;
            letter-spacing: -1px;
        }
        .section-title span {
            color: var(--accent);
        }
        .section-title .primary {
            color: var(--primary);
        }
        .section-subtitle {
            color: var(--text-light);
            font-size: 1.05rem;
            max-width: 560px;
            margin-bottom: 40px;
        }
        .section-header {
            text-align: center;
            margin-bottom: 48px;
        }
        .section-header .section-subtitle {
            margin: 0 auto 0;
        }

        /* ===== Cards ===== */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .card {
            background: var(--card-bg);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: var(--radius);
            padding: 34px 28px;
            box-shadow: var(--shadow);
            border: 1px solid var(--glass-border);
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 56px rgba(0, 0, 0, 0.10);
        }
        .card .icon {
            font-size: 2.8rem;
            margin-bottom: 16px;
            display: block;
        }
        .card h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .card .tag {
            display: inline-block;
            background: var(--primary);
            color: #fff;
            font-size: 0.7rem;
            padding: 2px 16px;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }
        .card .tag-gold {
            background: var(--accent);
            color: #fff;
        }

        /* ===== Glassmorphism ===== */
        .glass {
            background: var(--glass-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        /* ===== Hero Banner (inner) ===== */
        .hero-banner {
            background: var(--gradient-hero);
            border-radius: var(--radius);
            padding: 60px 48px;
            color: #fff;
            position: relative;
            overflow: hidden;
            margin-bottom: 40px;
        }
        .hero-banner::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 50%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(212, 168, 67, 0.06), transparent 65%);
            pointer-events: none;
        }
        .hero-banner .content {
            position: relative;
            z-index: 2;
        }
        .hero-banner h2 {
            font-size: 2.4rem;
            font-weight: 800;
            margin-bottom: 12px;
        }
        .hero-banner p {
            opacity: 0.85;
            max-width: 520px;
        }

        /* ===== Article / Blog ===== */
        .article-card {
            background: var(--card-bg);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all var(--transition);
            border: 1px solid var(--glass-border);
        }
        .article-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
        }
        .article-card .thumb {
            width: 100%;
            height: 210px;
            background: var(--gradient-hero);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 700;
            font-size: 1.2rem;
            position: relative;
        }
        .article-card .thumb svg {
            width: 64px;
            height: 64px;
            opacity: 0.35;
        }
        .article-card .body {
            padding: 24px 24px 28px;
        }
        .article-card .body .meta {
            display: flex;
            gap: 16px;
            font-size: 0.78rem;
            color: var(--text-light);
            margin-bottom: 10px;
        }
        .article-card .body h4 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .article-card .body p {
            color: var(--text-light);
            font-size: 0.92rem;
            line-height: 1.7;
        }
        .article-card .body .read-more {
            display: inline-block;
            margin-top: 12px;
            font-weight: 600;
            color: var(--accent);
        }

        /* ===== FAQ ===== */
        .faq-item {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 20px 24px;
            margin-bottom: 12px;
            border: 1px solid var(--border);
            cursor: pointer;
            transition: all var(--transition);
        }
        .faq-item:hover {
            border-color: var(--accent);
        }
        .faq-item .question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            font-size: 1.05rem;
        }
        .faq-item .question .icon {
            font-size: 1.4rem;
            transition: transform var(--transition);
        }
        .faq-item.active .question .icon {
            transform: rotate(180deg);
        }
        .faq-item .answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .faq-item.active .answer {
            max-height: 300px;
            padding-top: 14px;
        }

        /* ===== HowTo ===== */
        .howto-step {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
        }
        .howto-step:last-child {
            border-bottom: none;
        }
        .howto-step .step-num {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            background: var(--accent);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.1rem;
        }
        .howto-step .step-content h4 {
            font-weight: 700;
            margin-bottom: 4px;
        }
        .howto-step .step-content p {
            color: var(--text-light);
            font-size: 0.92rem;
        }

        /* ===== Aside / Sidebar ===== */
        aside {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 28px 24px;
            border: 1px solid var(--glass-border);
            box-shadow: var(--shadow);
            margin-top: 40px;
        }
        aside h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--accent);
        }
        aside ul {
            list-style: none;
            padding: 0;
        }
        aside ul li {
            padding: 8px 0;
            border-bottom: 1px solid var(--border);
        }
        aside ul li:last-child {
            border-bottom: none;
        }
        aside ul li a {
            color: var(--text);
            font-weight: 500;
            transition: color var(--transition);
        }
        aside ul li a:hover {
            color: var(--accent);
        }

        /* ===== Footer ===== */
        footer {
            background: var(--footer-bg);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 30px;
            margin-top: 40px;
        }
        footer .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        footer h4 {
            color: #fff;
            font-weight: 700;
            margin-bottom: 16px;
            font-size: 1.05rem;
        }
        footer a {
            color: rgba(255, 255, 255, 0.6);
            display: block;
            padding: 4px 0;
            transition: color var(--transition);
        }
        footer a:hover {
            color: var(--accent-light);
        }
        footer .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.04);
            padding-top: 24px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            font-size: 0.85rem;
        }
        footer .qr-grid {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        footer .qr-item {
            text-align: center;
        }
        footer .qr-item svg {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            background: #fff;
            padding: 8px;
        }
        footer .qr-item span {
            display: block;
            font-size: 0.7rem;
            margin-top: 4px;
            opacity: 0.6;
        }

        /* ===== Back to Top ===== */
        .back-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 48px;
            height: 48px;
            background: var(--primary);
            color: #fff;
            border: none;
            border-radius: 50%;
            font-size: 1.4rem;
            cursor: pointer;
            box-shadow: 0 4px 24px rgba(15, 43, 91, 0.3);
            transition: all var(--transition);
            z-index: 999;
            opacity: 0;
            transform: translateY(20px);
            pointer-events: none;
        }
        .back-top.visible {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }
        .back-top:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 40px rgba(15, 43, 91, 0.4);
        }

        /* ===== Scroll Animation ===== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== Carousel ===== */
        .carousel {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
        }
        .carousel-track {
            display: flex;
            transition: transform 0.6s ease;
        }
        .carousel-slide {
            flex: 0 0 100%;
            padding: 44px;
            min-height: 220px;
            background: var(--gradient-hero);
            color: #fff;
            border-radius: var(--radius);
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .carousel-slide h3 {
            font-size: 1.8rem;
            font-weight: 800;
        }
        .carousel-slide p {
            opacity: 0.85;
            max-width: 520px;
        }
        .carousel-controls {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-top: 16px;
        }
        .carousel-controls button {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: none;
            background: var(--card-bg);
            color: var(--text);
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: var(--shadow);
            transition: all var(--transition);
        }
        .carousel-controls button:hover {
            background: var(--primary);
            color: #fff;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .nav-links {
                gap: 18px;
            }
            .nav-links a {
                font-size: 0.85rem;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            .nav-toggle {
                display: flex;
            }
            .hero {
                min-height: 80vh;
                padding: 100px 16px 60px;
            }
            .hero h1 {
                font-size: 2.6rem;
            }
            .hero-stats {
                gap: 20px;
            }
            .hero-stats .stat-number {
                font-size: 1.8rem;
            }
            section {
                padding: 48px 0;
            }
            .hero-banner {
                padding: 36px 24px;
            }
            .hero-banner h2 {
                font-size: 1.8rem;
            }
            .card-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .howto-step {
                flex-direction: column;
                gap: 8px;
            }
            .back-top {
                bottom: 16px;
                right: 16px;
                width: 42px;
                height: 42px;
                font-size: 1.2rem;
            }
            aside {
                margin-top: 24px;
            }
            .breadcrumb {
                padding: 88px 0 12px 0;
                font-size: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .btn {
                padding: 12px 24px;
                font-size: 0.9rem;
            }
            .card {
                padding: 24px 20px;
            }
            .container {
                padding: 0 16px;
            }
            .hero-banner {
                padding: 28px 16px;
            }
            .hero-banner h2 {
                font-size: 1.4rem;
            }
        }

        /* ===== Search Overlay ===== */
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(12px);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
        }
        .search-overlay.open {
            display: flex;
        }
        .search-overlay .search-box {
            background: var(--card-bg);
            border-radius: var(--radius);
            padding: 40px;
            max-width: 600px;
            width: 90%;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
        }
        .search-overlay .search-box input {
            width: 100%;
            padding: 16px 20px;
            font-size: 1.2rem;
            border: 2px solid var(--border);
            border-radius: 14px;
            background: var(--bg);
            color: var(--text);
            outline: none;
            transition: border var(--transition);
        }
        .search-overlay .search-box input:focus {
            border-color: var(--accent);
        }
        .search-overlay .search-box .close-search {
            display: block;
            margin-top: 16px;
            text-align: center;
            color: var(--text-light);
            cursor: pointer;
            font-weight: 500;
        }
        .search-overlay .search-box .close-search:hover {
            color: var(--accent);
        }

        /* ===== Team / EEAT ===== */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
        }
        .team-card {
            text-align: center;
            padding: 24px 16px;
            background: var(--card-bg);
            border-radius: var(--radius);
            border: 1px solid var(--glass-border);
            transition: all var(--transition);
        }
        .team-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }
        .team-card .avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gradient-hero);
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 2rem;
            font-weight: 700;
        }
        .team-card h4 {
            font-weight: 700;
        }
        .team-card p {
            font-size: 0.85rem;
            color: var(--text-light);
        }

        /* ===== Gold pulse ===== */
        @keyframes gold-pulse {
            0%,
            100% {
                box-shadow: 0 0 20px rgba(212, 168, 67, 0.15);
            }
            50% {
                box-shadow: 0 0 40px rgba(212, 168, 67, 0.35);
            }
        }
        .gold-pulse {
            animation: gold-pulse 2.5s ease-in-out infinite;
        }
        .gold-pulse:hover {
            animation: none;
        }