:root {
            --gold: #f5c518;
            --gold-light: #fde68a;
            --gold-dark: #b8860b;
            --purple: #7c3aed;
            --purple-dark: #1a0533;
            --bg: #0c0118;
            --card: rgba(255, 255, 255, 0.04);
            --border: rgba(245, 197, 24, 0.25);
            --text: #f5f5f5;
            --muted: #a1a1aa;
        }

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

        body {
            background: var(--bg);
            font-family: 'Noto Sans', sans-serif;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            min-height: 100vh;
            padding: 5vh 16px 40px;
            overflow-x: hidden;
        }

        /* Ambient glow bg */
        body::before {
            content: '';
            position: fixed;
            top: -30%;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(ellipse, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        .card {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 440px;
            background: linear-gradient(160deg, #140828 0%, #0c0118 60%, #1a0533 100%);
            border: 1px solid var(--border);
            border-radius: 24px;
            box-shadow:
                0 0 0 1px rgba(245, 197, 24, 0.08),
                0 30px 60px rgba(0, 0, 0, 0.7),
                inset 0 1px 0 rgba(255, 255, 255, 0.07);
            overflow: hidden;
            padding: 28px 20px 24px;
        }

        /* Top strip */
        .top-strip {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        /* Badges */
        .badges {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 18px;
        }

        .badge {
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .badge-green {
            background: rgba(74, 222, 128, 0.12);
            color: #4ade80;
            border: 1px solid rgba(74, 222, 128, 0.3);
        }

        .badge-gold {
            background: rgba(245, 197, 24, 0.12);
            color: var(--gold);
            border: 1px solid rgba(245, 197, 24, 0.3);
        }

        /* Logos */
        .logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            margin-bottom: 22px;
        }

        .logo-box {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: clamp(160px, 60vw, 260px);
            background: linear-gradient(135deg, rgba(245, 197, 24, 0.08) 0%, rgba(124, 58, 237, 0.12) 100%);
            border: 1px solid rgba(245, 197, 24, 0.3);
            border-radius: 18px;
            padding: 12px 18px;
            position: relative;
            overflow: hidden;
            box-shadow:
                0 4px 20px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.04),
                inset 0 1px 0 rgba(255, 255, 255, 0.08);
            animation: logoGlow 3s infinite ease-in-out;
        }

        .logo-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -80%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shimmer 3s infinite;
        }

        .logo-box img {
            width: 100%;
            height: auto;
            max-height: 80px;
            object-fit: contain;
            filter: drop-shadow(0 2px 10px rgba(245, 197, 24, 0.3));
            display: block;
            position: relative;
            z-index: 1;
        }

        .logos-vs {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
            flex-shrink: 0;
        }

        .logos-vs span {
            font-family: 'Rajdhani', sans-serif;
            font-size: 11px;
            font-weight: 700;
            color: var(--gold);
            opacity: 0.7;
            letter-spacing: 1px;
        }

        .logos-vs::before,
        .logos-vs::after {
            content: '';
            width: 1px;
            height: 14px;
            background: linear-gradient(to bottom, transparent, rgba(245, 197, 24, 0.4), transparent);
        }

        @keyframes logoGlow {

            0%,
            100% {
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.08);
            }

            50% {
                box-shadow: 0 6px 28px rgba(245, 197, 24, 0.15), 0 0 0 1px rgba(245, 197, 24, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.08);
            }
        }

        /* Heading */
        h1 {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(22px, 6vw, 28px);
            font-weight: 700;
            text-align: center;
            line-height: 1.15;
            color: var(--text);
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .gold-word {
            background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .subtitle {
            text-align: center;
            font-size: 13px;
            color: var(--muted);
            font-weight: 600;
            margin-bottom: 22px;
            letter-spacing: 0.3px;
        }

        /* Stats row */
        .stats-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1px;
            background: var(--border);
            border: 1px solid var(--border);
            border-radius: 14px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .stat-cell {
            background: rgba(12, 1, 24, 0.9);
            padding: 12px 8px;
            text-align: center;
        }

        .stat-label {
            font-size: 9px;
            font-weight: 800;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            margin-bottom: 4px;
            color: var(--muted);
        }

        .stat-value {
            font-family: 'Rajdhani', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
        }

        .stat-value.gold {
            color: var(--gold);
        }

        .stat-value.green {
            color: #4ade80;
        }

        .live-dot {
            display: inline-block;
            width: 6px;
            height: 6px;
            background: #ef4444;
            border-radius: 50%;
            box-shadow: 0 0 6px #ef4444;
            animation: blink 1.2s infinite;
            vertical-align: middle;
            margin-right: 4px;
        }

        /* Feature list */
        .features {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 14px;
            padding: 16px;
            margin-bottom: 20px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 8px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 13px;
            color: #e4e4e7;
            line-height: 1.4;
        }

        .feature-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .feature-item:first-child {
            padding-top: 0;
        }

        .feature-icon {
            font-size: 16px;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .feature-item strong {
            color: var(--gold);
            font-weight: 700;
        }

        /* CTA Button */
        .cta-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: linear-gradient(135deg, #fde047 0%, #f59e0b 60%, #d97706 100%);
            color: #171717;
            text-decoration: none;
            padding: 16px 24px;
            border-radius: 50px;
            font-size: 17px;
            font-family: 'Rajdhani', sans-serif;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            border: none;
            width: 100%;
            margin-bottom: 14px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow:
                0 8px 24px rgba(245, 158, 11, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            animation: pulse 2.2s infinite ease-in-out;
            transition: transform 0.15s, box-shadow 0.15s;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
            animation: shimmer 2.5s infinite;
        }

        .cta-btn:active {
            transform: scale(0.97);
        }

        .cta-group {
            display: flex;
            gap: 12px;
            width: 100%;
        }

        .cta-group .cta-btn {
            margin-bottom: 0;
            flex: 1;
        }

        .trust-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            padding: 10px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 4px;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 11px;
            color: var(--muted);
            font-weight: 600;
        }

        /* Animations */
        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
            }

            50% {
                box-shadow: 0 12px 36px rgba(245, 158, 11, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.3);
            }
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }

            100% {
                left: 200%;
            }
        }

        @keyframes blink {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.2;
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(18px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card>* {
            animation: fadeUp 0.5s ease both;
        }

        .card>*:nth-child(1) {
            animation-delay: 0.05s;
        }

        .card>*:nth-child(2) {
            animation-delay: 0.10s;
        }

        .card>*:nth-child(3) {
            animation-delay: 0.15s;
        }

        .card>*:nth-child(4) {
            animation-delay: 0.20s;
        }

        .card>*:nth-child(5) {
            animation-delay: 0.25s;
        }

        .card>*:nth-child(6) {
            animation-delay: 0.30s;
        }

        .card>*:nth-child(7) {
            animation-delay: 0.35s;
        }

        .card>*:nth-child(8) {
            animation-delay: 0.40s;
        }

        /* SEO Content Section */
        .seo-content {
            max-width: 600px;
            width: 100%;
            margin: 40px auto 0;
            color: #d4d4d8;
            font-size: 14px;
            line-height: 1.6;
            animation: fadeUp 0.8s ease both;
            animation-delay: 0.45s;
        }

        .seo-content h2 {
            color: var(--gold);
            font-family: 'Rajdhani', sans-serif;
            font-size: 22px;
            margin: 28px 0 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .seo-content p {
            margin-bottom: 16px;
        }

        .seo-content ul {
            margin-left: 20px;
            margin-bottom: 16px;
        }

        .seo-content li {
            margin-bottom: 8px;
            list-style-type: disc;
        }

        .seo-content strong {
            color: white;
        }

        .seo-content a {
            color: var(--gold);
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: color 0.2s;
        }

        .seo-content a:hover {
            color: var(--gold-light);
        }

        /* Site Footer */
        .site-footer {
            max-width: 600px;
            width: 100%;
            margin: 40px auto 0;
            padding: 24px 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            text-align: center;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 20px;
            margin-bottom: 16px;
        }

        .footer-links a {
            color: var(--muted);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            transition: color 0.2s;
        }

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

        .footer-contact {
            margin-bottom: 12px;
        }

        .footer-contact a {
            color: var(--gold);
            text-decoration: none;
            font-size: 13px;
        }

        .footer-contact p {
            color: var(--muted);
            font-size: 13px;
        }

        .footer-copy p {
            color: rgba(161, 161, 170, 0.5);
            font-size: 11px;
        }

        /* CTA Section (for sub-pages) */
        .cta-section {
            margin: 32px 0;
            text-align: center;
        }

        .cta-section .cta-btn {
            display: inline-flex;
            width: auto;
            padding: 16px 40px;
            margin-bottom: 0;
        }

        /* Sub-page Layout */
        .page-container {
            width: 100%;
            max-width: 720px;
            margin: 0 auto;
            padding: 0 16px;
        }

        .page-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            margin-bottom: 32px;
        }

        .nav-back {
            color: var(--muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: color 0.2s;
        }

        .nav-back:hover {
            color: var(--gold);
        }

        .nav-logo {
            color: var(--gold);
            text-decoration: none;
            font-family: 'Rajdhani', sans-serif;
            font-size: 18px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .page-content {
            padding-bottom: 40px;
        }

        .page-content h1 {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(24px, 6vw, 32px);
            font-weight: 700;
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
        }

        .page-updated {
            color: var(--muted);
            font-size: 13px;
            margin-bottom: 28px;
        }

        .page-content h2 {
            color: var(--gold);
            font-family: 'Rajdhani', sans-serif;
            font-size: 20px;
            margin: 32px 0 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .page-content h3 {
            color: var(--text);
            font-family: 'Rajdhani', sans-serif;
            font-size: 17px;
            margin: 24px 0 8px;
            font-weight: 700;
        }

        .page-content p {
            color: #d4d4d8;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 14px;
        }

        .page-content ul {
            margin-left: 20px;
            margin-bottom: 16px;
        }

        .page-content li {
            color: #d4d4d8;
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 8px;
            list-style-type: disc;
        }

        .page-content strong {
            color: var(--gold);
        }

        .page-content a {
            color: var(--gold);
            text-decoration: underline;
            text-underline-offset: 3px;
            transition: color 0.2s;
        }

        .page-content a:hover {
            color: var(--gold-light);
        }