    /* ==========================================================================
           1. PREMIUM CSS VARIABLES (DEEP CHARCOAL & PURE EMERALD)
           ========================================================================== */
        :root {
            --bg-body: #0d1117; /* Deep Charcoal - No cheap blue tint */
            --bg-surface: #161b22; /* Slightly lighter Charcoal */
            --bg-card: #21262d; /* UI Card Charcoal */
            --bg-card-hover: #30363d;
            --primary: #00e676; /* Pure Converting Emerald */
            --primary-hover: #00c853;
            --accent: #ffab00; /* Warm Gold */
            --text-100: #ffffff;
            --text-200: #c9d1d9;
            --text-300: #8b949e;
            --border-color: rgba(255,255,255,0.08);
            --border-hover: rgba(0, 230, 118, 0.3);
            --radius-xl: 16px;
            --radius-lg: 12px;
            --radius-md: 8px;
            --radius-sm: 4px;
            --shadow-float: 0 12px 24px rgba(0,0,0,0.6);
            --shadow-glow: 0 0 20px rgba(0, 230, 118, 0.15);
            --font-heading: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
            --transition: all 0.25s cubic-bezier(0.3, 0, 0.2, 1);
            --safe-area: env(safe-area-inset-bottom, 15px);
        }

        /* 100% RESPONSIVE RESET */
        *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
        html, body { overflow-x: hidden; width: 100%; } /* Ultimate Anti-Overflow Lock */
        html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 90px; -webkit-tap-highlight-color: transparent; }
        body { font-family: var(--font-body); background-color: var(--bg-body); color: var(--text-300); line-height: 1.6; -webkit-font-smoothing: antialiased; overscroll-behavior-y: none; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-sm); }
        button, input, textarea { border: none; background: transparent; font-family: inherit; outline: none; }
        
        h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--text-100); line-height: 1.25; letter-spacing: -0.01em; }
        .container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 24px); }

        /* ==========================================================================
           2. HEADER (NATIVE APP FEEL)
           ========================================================================== */
        header { background: rgba(13, 17, 23, 0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; padding: 15px 0; }
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
        .logo { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 900; letter-spacing: -0.5px; color: #fff; display: flex; align-items: center; gap: 4px; }
        .logo span { color: var(--primary); }
        .nav-links { display: flex; gap: 32px; align-items: center; }
        .nav-links a { font-size: 0.95rem; font-weight: 600; text-transform: uppercase; color: var(--text-200); letter-spacing: 0.5px; position: relative; padding-bottom: 4px; }
        .nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); }
        .nav-links a:hover::after { width: 100%; }
        .hamburger { display: none; color: #fff; font-size: 1.8rem; cursor: pointer; }

        /* ==========================================================================
           3. HERO & GEO-MATRIX (NATIVE SCROLL-SNAP)
           ========================================================================== */
        .hero { padding: clamp(50px, 8vw, 80px) 0; background: radial-gradient(circle at top, var(--bg-surface) 0%, var(--bg-body) 100%); text-align: center; border-bottom: 1px solid var(--border-color); }
        .eeat-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(0, 230, 118, 0.1); border: 1px solid rgba(0, 230, 118, 0.2); color: var(--primary); padding: 6px 16px; border-radius: 30px; font-size: 0.85rem; font-weight: 700; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
        .hero h1 { font-size: clamp(2rem, 6vw, 4rem); margin-bottom: 16px; font-weight: 900; }
        .hero h1 span { color: var(--primary); }
        .hero p { font-size: clamp(0.95rem, 3vw, 1.15rem); max-width: 800px; margin: 0 auto 35px; color: var(--text-200); }

        .geo-matrix { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 15px; justify-content: center; -webkit-overflow-scrolling: touch; scrollbar-width: none; scroll-snap-type: x mandatory; }
        .geo-matrix::-webkit-scrollbar { display: none; }
        .geo-link { scroll-snap-align: start; background: var(--bg-card); border: 1px solid var(--border-color); padding: 12px 20px; border-radius: 30px; display: flex; align-items: center; gap: 8px; font-weight: 600; color: var(--text-200); white-space: nowrap; transition: var(--transition); flex-shrink: 0; }
        .geo-link:hover { border-color: var(--primary); color: #fff; box-shadow: var(--shadow-glow); transform: translateY(-2px); }

        /* ==========================================================================
           4. CORE LAYOUT
           ========================================================================== */
        .layout-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; padding: 50px 0; align-items: start; width: 100%; }
        .main-content { min-width: 0; /* Prevents flex/grid blowouts */ width: 100%; }
        .section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; border-bottom: 1px solid var(--border-color); padding-bottom: 12px; }
        .section-header h2 { font-size: clamp(1.4rem, 4vw, 1.8rem); font-weight: 800; display: flex; align-items: center; gap: 10px; text-transform: uppercase; }
        .section-header h2::before { content: ''; width: 4px; height: 20px; background: var(--primary); border-radius: 2px; }

        /* ==========================================================================
           5. FRESHNESS FEED (SEO ENGINE)
           ========================================================================== */
        .freshness-feed { background: var(--bg-surface); border: 1px solid var(--border-color); border-left: 4px solid var(--primary); border-radius: var(--radius-md); padding: 20px; margin-bottom: 40px; }
        .fresh-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 10px; }
        .fresh-header h3 { font-size: 1.1rem; color: #fff; }
        .fresh-badge { background: rgba(0, 230, 118, 0.1); color: var(--primary); padding: 4px 10px; border-radius: 6px; font-size: 0.75rem; font-weight: 800; text-transform: uppercase; }
        .fresh-content p { font-size: 0.9rem; margin-bottom: 6px; color: var(--text-300); }
        .fresh-content strong { color: var(--text-100); }

        /* ==========================================================================
           6. ELITE RANKING CARDS (MICRODATA INTEGRATED & ANTI-OVERFLOW)
           ========================================================================== */
        .rank-card { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: var(--radius-xl); margin-bottom: 24px; transition: var(--transition); display: flex; flex-direction: column; position: relative; width: 100%; }
        .rank-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-float); transform: translateY(-2px); }
        .rank-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--primary); opacity: 0; transition: var(--transition); }
        .rank-card:hover::before { opacity: 1; }

        .rc-main { display: flex; padding: 24px; gap: 20px; align-items: center; flex-wrap: wrap; width: 100%; }
        .rc-badge { width: 36px; height: 36px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 900; font-size: 1.1rem; color: var(--text-100); flex-shrink: 0; }
        
        .rc-brand { flex: 1; min-width: 140px; display: flex; flex-direction: column; gap: 8px; }
        .rc-logo-box { width: 120px; height: 50px; background: #fff; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; padding: 6px; }
        .rc-logo-box img { max-height: 100%; max-width: 100%; object-fit: contain; }
        .rc-stars { color: var(--accent); font-size: 0.85rem; font-weight: 700; display: flex; align-items: center; gap: 6px; }

        .rc-features { flex: 1.5; min-width: 180px; border-left: 1px solid var(--border-color); padding-left: 20px; display: flex; flex-direction: column; justify-content: center; }
        .rc-features li { font-size: 0.9rem; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; color: var(--text-200); }
        .rc-features li::before { content: '✓'; color: var(--primary); font-weight: 900; }

        .rc-action { flex: 1.2; min-width: 180px; border-left: 1px solid var(--border-color); padding-left: 20px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
        .bonus-lbl { font-size: 0.75rem; text-transform: uppercase; font-weight: 700; color: var(--text-300); }
        .bonus-val { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 900; color: var(--primary); line-height: 1.1; margin-bottom: 6px; }
        .btn-claim { background: var(--primary); color: #000; padding: 12px 24px; border-radius: var(--radius-md); font-weight: 800; font-size: 0.95rem; text-transform: uppercase; width: 100%; transition: var(--transition); display: block; box-shadow: 0 4px 15px rgba(0, 230, 118, 0.2); }
        .btn-claim:active { transform: scale(0.98); }
        .btn-claim:hover { background: var(--primary-hover); transform: translateY(-1px); }

        .rc-footer { border-top: 1px solid var(--border-color); background: var(--bg-card); width: 100%; }
        .rc-toggle { width: 100%; padding: 14px; font-size: 0.85rem; font-weight: 600; color: var(--text-300); display: flex; justify-content: center; align-items: center; gap: 8px; cursor: pointer; transition: var(--transition); }
        .rc-toggle:hover { color: var(--text-100); background: rgba(255,255,255,0.02); }
        .rc-details { display: none; padding: 24px; border-top: 1px solid var(--border-color); width: 100%; }
        .pc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; width: 100%; }
        .pc-col h4 { font-size: 0.95rem; margin-bottom: 12px; color: #fff; }
        .pc-col li { font-size: 0.85rem; margin-bottom: 8px; display: flex; gap: 8px; color: var(--text-300); }
        .pros li::before { content: '+'; color: var(--primary); font-weight: 900; }
        .cons li::before { content: '-'; color: #ef4444; font-weight: 900; }

        /* ==========================================================================
           7. DATA-RICH COMPARISON TABLE (MOBILE SAFE)
           ========================================================================== */
        .table-wrap { width: 100%; overflow-x: auto; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: var(--radius-lg); margin-bottom: 50px; -webkit-overflow-scrolling: touch; }
        .data-table { width: 100%; border-collapse: collapse; min-width: 600px; text-align: left; }
        .data-table th { background: var(--bg-card); padding: 16px 20px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; color: var(--text-200); border-bottom: 1px solid var(--border-color); }
        .data-table td { padding: 16px 20px; border-bottom: 1px solid var(--border-color); font-size: 0.95rem; color: var(--text-300); vertical-align: middle; }
        .data-table tr:hover td { background: rgba(255,255,255,0.01); }
        .dt-brand { display: flex; align-items: center; gap: 12px; font-weight: 700; color: #fff; }
        .dt-logo { width: 70px; height: 35px; background: #fff; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; padding: 4px; }
        .dt-logo img { max-height: 100%; max-width: 100%; object-fit: contain; }

        /* ==========================================================================
           8. PAYMENT MATRIX
           ========================================================================== */
        .pay-matrix { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 16px; margin-bottom: 50px; width: 100%; }
        .pay-box { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 20px 10px; text-align: center; transition: var(--transition); }
        .pay-box:hover { border-color: var(--primary); transform: translateY(-3px); }
        .pay-img { height: 40px; background: #fff; border-radius: var(--radius-sm); margin-bottom: 12px; display: flex; align-items: center; justify-content: center; padding: 6px; }
        .pay-img img { max-height: 100%; max-width: 100%; object-fit: contain; }
        .pay-box h4 { font-size: 0.85rem; margin-bottom: 4px; color: var(--text-100); }
        .pay-box p { font-size: 0.75rem; font-weight: 700; color: var(--primary); }

        /* ==========================================================================
           9. APP SHOWCASE
           ========================================================================== */
        .app-showcase { display: flex; flex-wrap: wrap; background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 50px; width: 100%; }
        .app-info { padding: clamp(20px, 5vw, 40px); flex: 1 1 300px; display: flex; flex-direction: column; justify-content: center; }
        .app-info h3 { font-size: 1.6rem; margin-bottom: 12px; color: #fff; }
        .app-info p { font-size: 0.95rem; margin-bottom: 24px; color: var(--text-300); }
        .app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
        .app-grid span { font-size: 0.9rem; display: flex; align-items: center; gap: 8px; color: var(--text-200); }
        .app-grid span::before { content: '✓'; color: var(--primary); font-weight: 900; }
        .app-visual { flex: 1 1 300px; background: var(--bg-card); border-left: 1px solid var(--border-color); display: flex; align-items: center; justify-content: center; padding: 30px; position: relative; min-height: 250px; }
        .mockup { width: 140px; height: 280px; border: 6px solid #30363d; border-radius: 20px; background: var(--bg-body); box-shadow: -15px 15px 30px rgba(0,0,0,0.6); transform: rotate(8deg); display: flex; align-items: center; justify-content: center; color: var(--text-300); font-weight: 700; font-size: 0.8rem; text-align: center; padding: 10px; }

        /* ==========================================================================
           10. E-E-A-T AUTHOR & SEO CONTENT
           ========================================================================== */
        .author-card { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,0.02); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 24px; margin-bottom: 30px; width: 100%; flex-wrap: wrap; }
        .author-pic { width: 60px; height: 60px; background: var(--text-200); color: var(--bg-body); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 1.4rem; font-weight: 900; flex-shrink: 0; }
        .author-data h4 { font-size: 1.1rem; color: #fff; margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
        .verified { color: #3b82f6; font-size: 1rem; }
        .author-data p { font-size: 0.85rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

        .seo-article { margin-bottom: 50px; width: 100%; }
        .content-image { width: 100%; height: auto; aspect-ratio: 16/9; background: var(--bg-card); border: 1px dashed var(--border-color); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; color: var(--text-300); margin-bottom: 24px; font-weight: 600; text-align: center; padding: 20px; }
        .seo-article h2 { font-size: 1.8rem; margin-bottom: 16px; color: #fff; }
        .seo-article h3 { font-size: 1.3rem; margin: 30px 0 12px; border-bottom: 1px solid var(--border-color); padding-bottom: 8px; }
        .seo-article p { font-size: 1.05rem; margin-bottom: 16px; line-height: 1.8; color: var(--text-300); }
        .seo-article ul { margin-left: 20px; margin-bottom: 20px; }
        .seo-article li { margin-bottom: 8px; list-style-type: disc; color: var(--text-300); font-size: 1rem; }

        /* ==========================================================================
           11. STEP-BY-STEP UI
           ========================================================================== */
        .step-module { margin-bottom: 50px; width: 100%; }
        .step-item { display: flex; gap: 20px; margin-bottom: 16px; background: var(--bg-surface); padding: 20px; border-radius: var(--radius-md); border: 1px solid var(--border-color); align-items: flex-start; }
        .step-num { width: 44px; height: 44px; background: rgba(0, 230, 118, 0.1); border: 1px solid rgba(0, 230, 118, 0.3); color: var(--primary); font-family: var(--font-heading); font-weight: 900; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }
        .step-content { flex: 1; min-width: 0; }
        .step-content h4 { font-size: 1.1rem; margin-bottom: 6px; color: var(--text-100); }
        .step-content p { font-size: 0.95rem; margin: 0; color: var(--text-300); }

        /* ==========================================================================
           12. SCHEMA-CONNECTED FAQ
           ========================================================================== */
        .faq-module { margin-bottom: 50px; width: 100%; }
        .faq-item { border: 1px solid var(--border-color); border-radius: var(--radius-md); margin-bottom: 10px; background: var(--bg-surface); overflow: hidden; }
        .faq-btn { width: 100%; text-align: left; padding: 20px; font-size: 1.05rem; font-weight: 600; color: var(--text-100); display: flex; justify-content: space-between; align-items: center; transition: var(--transition); cursor: pointer; }
        .faq-btn:hover { background: rgba(255,255,255,0.02); }
        .faq-icon { font-size: 1.4rem; color: var(--primary); transition: var(--transition); line-height: 1; flex-shrink: 0; margin-left: 15px; }
        .faq-btn[aria-expanded="true"] .faq-icon { transform: rotate(45deg); color: var(--text-300); }
        .faq-content { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; padding: 0 20px; }
        .faq-inner { padding: 0 0 20px 0; color: var(--text-300); font-size: 0.95rem; border-top: 1px solid var(--border-color); margin-top: 5px; padding-top: 15px; }

        /* ==========================================================================
           13. REAL HTML COMMENT SYSTEM (NO AJAX)
           ========================================================================== */
        .comments-area { background: var(--bg-surface); padding: clamp(20px, 4vw, 32px); border-radius: var(--radius-xl); border: 1px solid var(--border-color); margin-bottom: 50px; width: 100%; }
        .comments-area h3 { font-size: 1.5rem; margin-bottom: 24px; color: #fff; border-bottom: 1px solid var(--border-color); padding-bottom: 12px; }
        
        .comment-form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
        .form-row { display: flex; gap: 16px; flex-wrap: wrap; width: 100%; }
        .form-group { flex: 1; min-width: 100%; /* Mobile first */ display: flex; flex-direction: column; gap: 8px; }
        .form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-200); }
        .form-input { background: var(--bg-body); border: 1px solid var(--border-color); padding: 12px 16px; border-radius: var(--radius-md); color: var(--text-100); font-family: var(--font-body); font-size: 0.95rem; width: 100%; transition: var(--transition); }
        .form-input:focus { border-color: var(--primary); }
        textarea.form-input { resize: vertical; min-height: 100px; }
        .btn-submit { background: var(--primary); color: #000; padding: 12px 24px; border-radius: var(--radius-md); font-weight: 800; font-size: 0.95rem; cursor: pointer; transition: var(--transition); align-self: flex-start; }
        .btn-submit:active { transform: scale(0.98); }
        .btn-submit:hover { background: var(--primary-hover); }

        .comment-list { display: flex; flex-direction: column; gap: 20px; }
        .comment-item { background: var(--bg-card); padding: 20px; border-radius: var(--radius-md); border: 1px solid var(--border-color); }
        .comment-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; flex-wrap: wrap; gap: 8px;}
        .comment-author { font-weight: 700; color: var(--text-100); font-size: 1rem; }
        .comment-date { font-size: 0.75rem; color: var(--text-300); }
        .comment-text { font-size: 0.95rem; color: var(--text-200); line-height: 1.5; }

        @media (min-width: 600px) {
            .form-group { min-width: 200px; } /* Reset for larger screens */
        }

        /* ==========================================================================
           14. SIDEBAR (TOC & WIDGETS)
           ========================================================================== */
        .sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 24px; align-self: start; width: 100%; }
        .widget { background: var(--bg-surface); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 24px; width: 100%; }
        .widget-title { font-size: 1.05rem; font-weight: 800; text-transform: uppercase; color: #fff; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-color); }
        
        .odds-list { display: flex; flex-direction: column; gap: 12px; }
        .odd-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; border-bottom: 1px dashed rgba(255,255,255,0.05); padding-bottom: 8px; }
        .odd-row:last-child { border: none; padding-bottom: 0; }
        .odd-teams { color: var(--text-200); font-weight: 500; }
        .odd-val { background: rgba(0, 230, 118, 0.1); color: var(--primary); border: 1px solid rgba(0, 230, 118, 0.3); padding: 2px 6px; border-radius: 4px; font-weight: 800; animation: pulseOdd 2s infinite; }
        @keyframes pulseOdd { 0%, 100% { background: rgba(0, 230, 118, 0.1); color: var(--primary); } 50% { background: var(--primary); color: #fff; } }

        .toc-list { display: flex; flex-direction: column; gap: 10px; }
        .toc-list a { font-size: 0.9rem; font-weight: 500; color: var(--text-300); display: block; border-left: 2px solid transparent; padding-left: 12px; transition: var(--transition); }
        .toc-list a:hover, .toc-list a.active { color: var(--primary); border-left-color: var(--primary); }

        /* ==========================================================================
           15. NATIVE MOBILE BOTTOM APP BAR
           ========================================================================== */
        .bottom-nav { display: none; position: fixed; bottom: 0; left: 0; width: 100%; background: rgba(13, 17, 23, 0.98); backdrop-filter: blur(20px); border-top: 1px solid var(--border-color); z-index: 9999; padding-bottom: var(--safe-area); box-shadow: 0 -4px 20px rgba(0,0,0,0.5); }
        .bn-inner { display: flex; justify-content: space-around; height: 60px; align-items: center; }
        .bn-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--text-300); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; width: 25%; }
        .bn-item.active { color: var(--primary); }
        .bn-icon { font-size: 1.2rem; line-height: 1; }

        /* ==========================================================================
           16. FOOTER
           ========================================================================== */
        footer { background: var(--bg-surface); border-top: 1px solid var(--border-color); padding: 60px 0 30px; margin-top: 40px; width: 100%; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
        .footer-col h4 { font-size: 1rem; margin-bottom: 20px; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; }
        .footer-col ul { display: flex; flex-direction: column; gap: 10px; }
        .footer-col li { font-size: 0.9rem; color: var(--text-300); }
        .footer-col li a:hover { color: var(--primary); }
        .footer-bottom { border-top: 1px solid var(--border-color); padding-top: 24px; text-align: center; font-size: 0.85rem; color: var(--text-300); }

        /* ==========================================================================
           17. 100% NATIVE APP MOBILE RESPONSIVENESS (NO OVERFLOW)
           ========================================================================== */
        @media (max-width: 1024px) {
            .layout-grid { grid-template-columns: 1fr; gap: 32px; }
            .sidebar { display: none; }
            .app-visual { border-left: none; border-top: 1px solid var(--border-color); padding: 40px 0; }
        }

        @media (max-width: 768px) {
            /* Enable Bottom Bar & Safe Padding */
            .nav-links { display: none; }
            .hamburger { display: block; }
            body { padding-bottom: 85px; } 
            .bottom-nav { display: block; }
            
            .hero { padding: 40px 0; }
            .hero h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
            
            /* Geo Matrix Full Bleed Scroll */
            .geo-matrix { padding-left: 16px; padding-right: 16px; margin-left: -16px; margin-right: -16px; justify-content: flex-start; }
            .geo-link { font-size: 0.9rem; padding: 10px 16px; }

            /* Card Stacking Perfected - Absolute Zero Overflow */
            .rc-main { flex-direction: column; align-items: stretch; padding: 16px; gap: 16px; }
            .rc-badge { position: absolute; top: 16px; right: 16px; width: 32px; height: 32px; font-size: 1rem; }
            .rc-brand { width: 100%; padding-right: 40px; align-items: flex-start; } 
            .rc-logo-box { width: 110px; height: 45px; }
            .rc-features { border-left: none; padding-left: 0; border-top: 1px solid var(--border-color); padding-top: 16px; width: 100%; }
            .rc-action { border-left: none; padding-left: 0; border-top: 1px solid var(--border-color); padding-top: 16px; text-align: left; align-items: stretch; width: 100%; }
            .rc-action > div { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
            .bonus-val { font-size: 1.2rem; margin: 0; }
            .btn-claim { text-align: center; }

            .pc-grid { grid-template-columns: 1fr; gap: 20px; }
            .step-item { flex-direction: column; align-items: flex-start; gap: 12px; }
            
            .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; }
        }
        
        @media (max-width: 380px) {
            .pay-matrix { grid-template-columns: 1fr 1fr; } /* Fits tightly on small screens */
            .rc-action > div { flex-direction: column; gap: 4px; }
        }
        /* africabettinghub.com H2 Visual Wrapper */
.h2-visual-wrapper {
    margin: 2.5rem 0 1.5rem 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.h2-seo-image {
    width: 100%;
    max-width: 850px; /* Okunabilirlik ve tasarım dengesi */
    height: auto;
    aspect-ratio: 16 / 9; /* Tarayıcıya alanı rezerve ettirir, CLS'yi önler */
    border-radius: 12px; /* Modern ve premium hissiyat */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Dark mode derinliği */
    object-fit: cover;
    background-color: #121418; /* Görsel yüklenene kadar sırıtmayan arkaplan */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.h2-image-caption {
    font-size: 0.85rem;
    color: #8fa0b3;
    margin-top: 1rem;
    font-style: italic;
    text-align: center;
    max-width: 80%;
}
    /* ZAR PAYMENT GATEWAYS ELITE CSS */
    .zar-payment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 40px; }
    .zar-payment-card { background: var(--bg-surface); border: 1px solid rgba(255,255,255,0.05); padding: 25px 20px; border-radius: var(--radius-lg); text-align: left; transition: all 0.3s ease; position: relative; overflow: hidden; display: flex; flex-direction: column; }
    .zar-payment-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; opacity: 0.8; transition: opacity 0.3s ease; }
    
    /* Brand Colors for Top Borders */
    .card-ozow::before { background: #ff3366; }
    .card-ott::before { background: #00cccc; }
    .card-1voucher::before { background: #ff9900; }
    .card-blu::before { background: #0066cc; }

    .zar-payment-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.2); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
    
    .zar-icon-wrap { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
    .zar-icon-wrap svg { width: 40px; height: 40px; flex-shrink: 0; }
    
    .zar-brand-name { font-size: 1.3rem; font-weight: 800; margin: 0; color: #fff; }
    .zar-brand-desc { font-size: 0.9rem; color: var(--text-300); line-height: 1.6; margin: 0; }
    .zar-tag { display: inline-block; margin-top: auto; padding-top: 15px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
    .elite-author-box { display: flex; gap: 24px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 171, 0, 0.2); padding: 30px; border-radius: var(--radius-lg); margin-top: 60px; position: relative; overflow: hidden; }
    .elite-author-box::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: #ffab00; } 
    .elite-author-avatar { flex-shrink: 0; }
    .elite-author-avatar img { width: 90px; height: 90px; border-radius: 50%; border: 2px solid #ffab00; object-fit: cover; }
    .elite-author-info { flex: 1; }
    .elite-author-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; flex-wrap: wrap; gap: 10px; }
    .elite-author-name { font-size: 1.4rem; font-weight: 800; color: #fff; margin: 0; display: flex; align-items: center; gap: 8px; }
    .elite-verified { color: #00c853; font-size: 1rem; }
    .elite-author-title { font-size: 0.9rem; color: #ffab00; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
    .elite-author-bio { font-size: 0.95rem; color: var(--text-200); line-height: 1.6; margin-bottom: 15px; }
    .elite-trust-bar { display: flex; align-items: center; gap: 15px; font-size: 0.85rem; color: var(--text-300); border-top: 1px solid rgba(255,255,255,0.05); padding-top: 15px; flex-wrap: wrap; }
    .elite-trust-badge { display: flex; align-items: center; gap: 6px; background: rgba(0, 200, 83, 0.1); color: #00c853; padding: 4px 10px; border-radius: 4px; font-weight: 700; }
    .elite-socials a { color: var(--text-300); transition: color 0.3s; margin-left: 15px; font-size: 1.2rem; text-decoration: none; font-weight: bold; }
    .elite-socials a:hover { color: #ffab00; }
    
    @media (max-width: 600px) { 
        .elite-author-box { flex-direction: column; text-align: center; } 
        .elite-author-header { justify-content: center; flex-direction: column; } 
        .elite-trust-bar { justify-content: center; } 
        .elite-socials a { margin: 0 10px; }
    }
        /* ELITE SPINA ZONKE & SLOTS DIRECTORY CSS */
    .sz-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 30px; }
    
    .sz-card { background: var(--bg-surface); border: 1px solid rgba(255,255,255,0.05); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s ease; display: flex; flex-direction: column; position: relative; }
    .sz-card:hover { transform: translateY(-5px); box-shadow: 0 12px 30px rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.15); }
    
    /* Dinamik Sağ Üst Provider Etiketi */
    .sz-provider-badge { position: absolute; top: 15px; right: 15px; font-size: 0.7rem; font-weight: 900; text-transform: uppercase; padding: 5px 10px; border-radius: 4px; z-index: 2; box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
    .badge-habanero { background: #ff9900; color: #000; }
    .badge-pragmatic { background: #cc33ff; color: #fff; }
    .badge-spribe { background: #ff0000; color: #fff; }

    /* Görsel Alanı (Resimler buraya gelecek) */
    .sz-img-wrap { width: 100%; height: 160px; background: #111; position: relative; overflow: hidden; border-bottom: 2px solid rgba(255,255,255,0.05); }
    .sz-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; opacity: 0.9; }
    .sz-card:hover .sz-img-wrap img { transform: scale(1.08); opacity: 1; }
    
    .sz-content { padding: 25px 20px; display: flex; flex-direction: column; flex-grow: 1; }
    .sz-title { color: #fff; font-size: 1.4rem; font-weight: 800; margin: 0 0 10px 0; letter-spacing: 0.5px; }
    .sz-desc { color: var(--text-300); font-size: 0.9rem; line-height: 1.6; margin: 0 0 20px 0; flex-grow: 1; }
    
    /* İstatistikler ve Oynanacak Site */
    .sz-stats-box { background: rgba(0, 0, 0, 0.3); border-radius: 8px; padding: 15px; margin-bottom: 15px; border: 1px dashed rgba(255,255,255,0.1); }
    .sz-stat-row { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 6px; }
    .sz-stat-row:last-child { margin-bottom: 0; }
    .sz-stat-label { color: var(--text-300); font-weight: 600; }
    .sz-stat-value { color: #fff; font-weight: 800; }
    .sz-stat-value.highlight { color: #00e676; }

    /* CTA (Aksiyon) Metni */
    .sz-cta-text { font-size: 0.85rem; color: #0096ff; font-weight: 700; text-align: center; background: rgba(0, 150, 255, 0.1); padding: 10px; border-radius: 6px; border: 1px solid rgba(0, 150, 255, 0.2); }
    /* BULLETPROOF FICA FLEX BLOCK CSS */
    .fica-flex-rewards {
        display: flex !important;
        flex-direction: row !important; /* Ne olursa olsun yan yana kalmaya zorlar */
        align-items: flex-start; /* Resmi ve metni üstten hizalar, daha estetik durur */
        gap: 40px; 
        margin-top: 50px;
        margin-bottom: 50px;
        background: rgba(255, 171, 0, 0.02); 
        border: 1px solid rgba(255, 171, 0, 0.1);
        padding: 30px;
        border-radius: var(--radius-lg);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    /* Görsel Taraf (Sol) - Beton Gibi Sabit */
    .fica-visual-side {
        flex: 0 0 250px !important; /* Asla büyüme, asla küçülme, tam 250px kal */
        max-width: 250px;
        text-align: center;
        margin: 0 !important; 
        padding: 0 !important;
    }

    .fica-image-container {
        background: rgba(0, 0, 0, 0.2);
        border: 2px solid rgba(255, 171, 0, 0.2); 
        border-radius: var(--radius-md);
        padding: 10px;
        margin-bottom: 12px;
        display: block; /* Inline-block'tan block'a çevrildi, taşmaları önler */
    }

    .fica-visual-side img {
        display: block;
        width: 100%; /* Kapsayıcısına tam oturur */
        height: auto;
    }

    .fica-rewards-caption {
        font-size: 0.8rem;
        color: var(--text-300);
        font-style: italic;
        margin: 0;
        line-height: 1.4;
    }

    /* Metin Tarafı (Sağ) - Esnek Alan */
    .fica-text-side {
        flex: 1 1 auto !important; /* Kalan tüm boşluğu doldur */
        display: flex;
        flex-direction: column;
        justify-content: center; /* Metni kendi içinde dikey ortalar */
    }

    .fica-text-side p {
        margin: 0;
        font-size: 1.05rem;
        color: var(--text-200);
        line-height: 1.7;
    }

    /* Entity (Varlık) Vurguları */
    .fica-highlight { color: #ffab00; font-weight: 700; }
    .fica-green-id { color: #00e676; font-weight: 700; }

    /* MOBİL UYUMLULUK (RESPONSIVE) */
    @media (max-width: 768px) {
        .fica-flex-rewards {
            flex-direction: column !important; /* Mobilde alt alta iner */
            align-items: center;
            gap: 20px;
            padding: 20px;
        }
        .fica-visual-side {
            flex: 0 0 auto !important;
            width: 100%; 
            max-width: 300px; /* Mobilde çok devasa olmasını engeller */
        }
        .fica-text-side {
            text-align: center;
        }
    }
        /* MINIMAL & HIGH-CONVERSION DATA-FREE APPS CSS */
    .df-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 25px; }
    
    /* Mobilde ve Tablette alt alta/ikili inmesi için Responsive Ayarlar */
    @media (max-width: 992px) { .df-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 600px) { .df-grid { grid-template-columns: 1fr; } }
    
    .df-card { background: var(--bg-surface); border: 1px solid rgba(255,255,255,0.05); padding: 20px 15px; border-radius: var(--radius-md); transition: all 0.3s ease; position: relative; overflow: hidden; display: flex; flex-direction: column; }
    .df-card:hover { transform: translateY(-3px); border-color: rgba(255,255,255,0.15); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }
    
    .df-header-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; padding-right: 60px; }
    
    .df-icon-wrap { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0; transition: transform 0.3s ease; }
    .df-card:hover .df-icon-wrap { transform: scale(1.05); }
    .df-icon-wrap svg { width: 20px; height: 20px; }

    .df-brand-title { color: #fff; font-size: 1.05rem; font-weight: 800; margin: 0; line-height: 1.2; }
    .df-desc { color: var(--text-300); font-size: 0.85rem; line-height: 1.5; margin: 0 0 20px 0; flex-grow: 1; } /* Butonu aşağı itmek için flex-grow */
    
    .df-badge { position: absolute; top: 15px; right: 15px; font-size: 0.65rem; font-weight: 800; text-transform: uppercase; padding: 4px 8px; border-radius: 4px; letter-spacing: 0.5px; }

    /* Affiliate / Download Button */
    .df-btn { display: block; text-align: center; width: 100%; padding: 10px 0; border-radius: 6px; font-size: 0.85rem; font-weight: 800; text-transform: uppercase; text-decoration: none; transition: all 0.3s ease; margin-top: auto; }
    .df-btn:hover { filter: brightness(1.1); }

    /* Brand Specific Colors */
    .df-betway .df-icon-wrap { background: rgba(255, 255, 255, 0.1); }
    .df-betway .df-badge { background: rgba(255,255,255,0.05); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
    .df-betway .df-btn { background: #111; color: #fff; border: 1px solid #333; }
    
    .df-hollywood .df-icon-wrap { background: rgba(102, 0, 153, 0.15); }
    .df-hollywood .df-badge { background: rgba(102, 0, 153, 0.1); color: #b366ff; border: 1px solid rgba(102, 0, 153, 0.3); }
    .df-hollywood .df-btn { background: rgba(102, 0, 153, 0.1); color: #b366ff; border: 1px solid rgba(102, 0, 153, 0.4); }
    
    .df-supabets .df-icon-wrap { background: rgba(204, 0, 0, 0.15); }
    .df-supabets .df-badge { background: rgba(204, 0, 0, 0.1); color: #ff4d4d; border: 1px solid rgba(204, 0, 0, 0.3); }
    .df-supabets .df-btn { background: rgba(204, 0, 0, 0.1); color: #ff4d4d; border: 1px solid rgba(204, 0, 0, 0.4); }

    .df-wsb .df-icon-wrap { background: rgba(255, 102, 0, 0.15); }
    .df-wsb .df-badge { background: rgba(255, 102, 0, 0.1); color: #ff9933; border: 1px solid rgba(255, 102, 0, 0.3); }
    .df-wsb .df-btn { background: rgba(255, 102, 0, 0.1); color: #ff9933; border: 1px solid rgba(255, 102, 0, 0.4); }

    .df-gbets .df-icon-wrap { background: rgba(0, 204, 102, 0.15); }
    .df-gbets .df-badge { background: rgba(0, 204, 102, 0.1); color: #00e676; border: 1px solid rgba(0, 204, 102, 0.3); }
    .df-gbets .df-btn { background: rgba(0, 204, 102, 0.1); color: #00e676; border: 1px solid rgba(0, 204, 102, 0.4); }

    .df-betcoza .df-icon-wrap { background: rgba(0, 102, 255, 0.15); }
    .df-betcoza .df-badge { background: rgba(0, 102, 255, 0.1); color: #3399ff; border: 1px solid rgba(0, 102, 255, 0.3); }
    .df-betcoza .df-btn { background: rgba(0, 102, 255, 0.1); color: #3399ff; border: 1px solid rgba(0, 102, 255, 0.4); }
            .fica-alert-box { background: rgba(0, 150, 255, 0.1); border-left: 4px solid #0096ff; padding: 20px; border-radius: var(--radius-md); margin-bottom: 40px; }
        .ngb-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(0,150,255,0.4); padding: 6px 16px; border-radius: 30px; font-size: 0.85rem; font-weight: 700; color: #0096ff; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
        
        .voucher-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 40px; }
        .voucher-card { background: var(--bg-surface); border: 1px solid var(--border-color); padding: 25px 20px; border-radius: var(--radius-md); text-align: center; transition: var(--transition); display: flex; flex-direction: column; align-items: center; }
        .voucher-card:hover { border-color: #0096ff; transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0,150,255,0.1); }
        .voucher-logo { height: 40px; margin-bottom: 15px; }

        .fica-steps { display: flex; flex-direction: column; gap: 15px; background: #0d1117; padding: 25px; border-radius: 8px; border: 1px solid var(--border-color); }
        .fica-step { display: flex; gap: 15px; align-items: flex-start; }
        .fica-num { background: #0096ff; color: #fff; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-weight: 900; flex-shrink: 0; }

    /* ELITE SEO TABLE & SNIPPET CSS */
    .table-wrapper {
        margin-top: 50px;
        margin-bottom: 50px;
        width: 100%;
        overflow-x: auto; /* Mobilde yatay kaydırma sağlar, tasarım bozulmaz */
        background: var(--bg-surface);
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: var(--radius-lg);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .seo-data-table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
        min-width: 800px; /* Tablonun çok ezilmesini engeller */
    }

    .seo-data-table thead {
        background: rgba(0, 0, 0, 0.4);
        border-bottom: 2px solid rgba(255, 171, 0, 0.3); /* Altın Sarısı Çizgi */
    }

    .seo-data-table th {
        color: #fff;
        font-size: 0.95rem;
        font-weight: 800;
        padding: 20px 15px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    .seo-data-table tbody tr {
        border-bottom: 1px solid rgba(255,255,255,0.03);
        transition: background 0.2s ease;
    }

    .seo-data-table tbody tr:hover {
        background: rgba(255, 171, 0, 0.03); /* Hover durumunda hafif altın parlaması */
    }

    .seo-data-table td {
        padding: 18px 15px;
        color: var(--text-300);
        font-size: 0.95rem;
        vertical-align: middle;
    }

    /* Spesifik Sütun Vurguları */
    .dt-brand {
        color: #fff !important;
        font-weight: 800;
        font-size: 1.1rem !important;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .dt-brand-icon {
        width: 24px;
        height: 24px;
        border-radius: 4px;
    }

    .dt-region {
        font-size: 0.85rem;
        color: #00e676; /* Onay Yeşili */
        font-weight: 600;
        background: rgba(0, 230, 118, 0.1);
        padding: 4px 8px;
        border-radius: 4px;
        display: inline-block;
        border: 1px solid rgba(0, 230, 118, 0.2);
    }

    .dt-highlight {
        color: #3399ff;
        font-weight: 700;
    }

    /* Affiliate CTA Butonu */
    .dt-btn {
        display: inline-block;
        background: rgba(255, 171, 0, 0.1);
        color: #ffab00;
        border: 1px solid rgba(255, 171, 0, 0.4);
        padding: 8px 16px;
        border-radius: 6px;
        font-size: 0.85rem;
        font-weight: 800;
        text-transform: uppercase;
        text-decoration: none;
        transition: all 0.3s ease;
        text-align: center;
        white-space: nowrap;
    }

    .dt-btn:hover {
        background: #ffab00;
        color: #000;
        box-shadow: 0 4px 15px rgba(255, 171, 0, 0.3);
    }
        /* ELITE MINIMALIST HOW-TO GRID CSS */
    .howto-wrapper { margin-top: 60px; margin-bottom: 60px; }
    
    .howto-grid-minimal { 
        display: grid; 
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
        gap: 20px; 
        margin-top: 30px; 
    }
    
    .howto-card-minimal { 
        background: var(--bg-surface); 
        border: 1px solid rgba(255,255,255,0.05); 
        padding: 25px; 
        border-radius: var(--radius-md); 
        position: relative; 
        transition: all 0.3s ease; 
        display: flex; 
        flex-direction: column; 
    }
    
    .howto-card-minimal:hover { 
        border-color: rgba(255, 171, 0, 0.3); /* Premium Altın Vurgu */
        transform: translateY(-3px); 
        box-shadow: 0 8px 25px rgba(0,0,0,0.2); 
    }

    /* Üst Başlık ve İkon/Sayı Alanı */
    .howto-header-minimal { 
        display: flex; 
        align-items: flex-start; 
        justify-content: space-between; 
        margin-bottom: 15px; 
        border-bottom: 1px solid rgba(255,255,255,0.05); 
        padding-bottom: 15px; 
    }

    .howto-title-wrap { 
        display: flex; 
        align-items: center; 
        gap: 12px; 
    }

    .howto-icon { 
        width: 20px; 
        height: 20px; 
        stroke: #ffab00; /* Minimal Altın İkon */
        opacity: 0.8; 
    }

    .howto-title { 
        color: #fff; 
        font-size: 1.05rem; 
        font-weight: 700; 
        margin: 0; 
        line-height: 1.4; 
    }

    /* Minimalist Dev Sayı (Watermark Etkisi) */
    .howto-step-num { 
        font-size: 1.8rem; 
        font-weight: 900; 
        color: rgba(255, 171, 0, 0.15); 
        line-height: 1; 
        transition: color 0.3s ease;
    }
    
    .howto-card-minimal:hover .howto-step-num { 
        color: #ffab00; 
    }

    .howto-desc { 
        color: var(--text-300); 
        font-size: 0.9rem; 
        line-height: 1.6; 
        margin: 0; 
    }
    
    /* Vurgulu Kelimeler İçin Minimal Renk */
    .howto-hl { color: #fff; font-weight: 600; }
    /* --- HERO SECTION --- */
.hero-section {
    background: linear-gradient(135deg, #0b2218 0%, #113826 100%);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-bottom: 4px solid #f3c300; /* Afrika ruhunu yansıtan altın sarısı vurgu */
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* E-E-A-T Badge */
.eeat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243, 195, 0, 0.15);
    color: #f3c300;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(243, 195, 0, 0.3);
}

.shield-icon {
    width: 16px;
    height: 16px;
}

/* Typography */
.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Tüm ekranlarda dinamik boyutlanma */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: #f3c300;
}

.hero-title .year-tag {
    opacity: 0.8;
    font-weight: 500;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 35px;
    max-width: 800px;
}

.hero-description p {
    margin-bottom: 12px;
}

/* --- GEO MATRIX (Özel Ülke Navigasyonu) --- */
.geo-matrix {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.geo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    /* Core Web Vitals: Minimum tap target size */
    min-height: 48px; 
}

.geo-link:hover, .geo-link:focus {
    background: #f3c300;
    color: #0b2218;
    border-color: #f3c300;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(243, 195, 0, 0.3);
}

.custom-flag {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.geo-text small {
    opacity: 0.7;
    font-weight: 400;
    margin-left: 4px;
}

.geo-link:hover .geo-text small {
    opacity: 0.9;
    color: #0b2218;
}

/* --- MOBİL OPTİMİZASYONU --- */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 15px;
    }
    
    /* Mobilde çok uzun metinleri gizleyerek UX'i artırır, kullanıcıyı hemen aksiyona yönlendirir */
    .desktop-only {
        display: none;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    /* Mobilde yatay kaydırılabilir (Swipeable) Matrix */
    .geo-matrix {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 15px;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        /* Scrollbar gizleme */
        scrollbar-width: none; 
    }
    
    .geo-matrix::-webkit-scrollbar {
        display: none;
    }

    .geo-link {
        flex: 0 0 auto; /* Elementlerin daralmasını engeller */
        scroll-snap-align: start;
    }
}
    /* ELITE APP SHOWCASE CSS */
    .app-showcase-elite {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 50px;
        margin-top: 70px;
        margin-bottom: 70px;
        background: radial-gradient(circle at right, rgba(51, 153, 255, 0.05) 0%, transparent 60%), var(--bg-surface);
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: var(--radius-lg);
        padding: 40px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        overflow: hidden;
    }

    /* Sol İçerik Tarafı */
    .app-content-side {
        flex: 1 1 auto;
    }

    .app-content-side h2 {
        font-size: 2rem;
        color: #fff;
        margin-top: 0;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .app-content-side p {
        font-size: 1.05rem;
        color: var(--text-200);
        line-height: 1.7;
        margin-bottom: 30px;
    }

    /* Teknik Özellikler Grid Sistemi */
    .app-features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-bottom: 30px;
    }

    .app-feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(0,0,0,0.2);
        padding: 12px 15px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255,255,255,0.03);
        transition: all 0.3s ease;
    }

    .app-feature-item:hover {
        background: rgba(51, 153, 255, 0.05);
        border-color: rgba(51, 153, 255, 0.3);
        transform: translateY(-2px);
    }

    .app-feature-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: rgba(51, 153, 255, 0.1);
        border-radius: 8px;
        flex-shrink: 0;
    }

    .app-feature-icon svg {
        width: 18px;
        height: 18px;
        stroke: #3399ff;
    }

    .app-feature-text {
        color: #fff;
        font-size: 0.9rem;
        font-weight: 700;
        margin: 0;
    }

    /* Sağ Telefon/Görsel Tarafı */
    .app-visual-side {
        flex: 0 0 320px;
        position: relative;
        text-align: center;
    }

    /* Sahte Telefon Çerçevesi (Eğer resim yoksa bile harika durur) */
    .phone-mockup-frame {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        background: #000;
        border: 8px solid #222;
        border-radius: 35px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 20px rgba(255,255,255,0.05);
        position: relative;
        overflow: hidden;
        aspect-ratio: 9/19; /* Modern telefon oranı */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .phone-mockup-frame::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40%;
        height: 25px;
        background: #222;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
        z-index: 10;
    }

    .phone-mockup-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.9;
        transition: opacity 0.3s ease;
    }

    .phone-mockup-frame:hover img {
        opacity: 1;
    }

    /* Mobilde Kusursuz Kırılma */
    @media (max-width: 992px) {
        .app-showcase-elite {
            flex-direction: column;
            text-align: center;
            padding: 30px;
        }
        .app-features-grid {
            grid-template-columns: 1fr; /* Mobilde özellikler alt alta iner */
            text-align: left;
        }
        .app-visual-side {
            flex: 0 0 auto;
            width: 100%;
            margin-top: 20px;
        }
    }
        /* ELITE COMMUNITY REVIEWS CSS */
    .reviews-wrapper {
        margin-top: 60px;
        margin-bottom: 60px;
        background: var(--bg-surface);
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: var(--radius-lg);
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .reviews-header {
        margin-bottom: 30px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 15px;
    }

    .reviews-header h3 {
        font-size: 1.6rem;
        color: #fff;
        margin: 0;
    }

    /* Yorum Ekleme Formu */
    .review-form-box {
        background: rgba(0,0,0,0.2);
        border: 1px solid rgba(255,255,255,0.03);
        border-radius: var(--radius-md);
        padding: 25px;
        margin-bottom: 40px;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .form-label {
        font-size: 0.85rem;
        color: var(--text-300);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .form-input {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.1);
        color: #fff;
        padding: 12px 15px;
        border-radius: 6px;
        font-size: 0.95rem;
        transition: border-color 0.3s ease;
        font-family: inherit;
    }

    .form-input:focus {
        outline: none;
        border-color: #ffab00; /* Altın Vurgu */
        background: rgba(255, 171, 0, 0.02);
    }

    textarea.form-input {
        resize: vertical;
        min-height: 100px;
        margin-bottom: 20px;
    }

    .btn-submit {
        background: #ffab00;
        color: #000;
        border: none;
        padding: 12px 25px;
        border-radius: 6px;
        font-size: 0.95rem;
        font-weight: 800;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-submit:hover {
        background: #e69a00;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 171, 0, 0.3);
    }

    /* Listelenen Yorumlar */
    .review-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .review-item {
        background: rgba(255,255,255,0.01);
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: var(--radius-md);
        padding: 20px 25px;
        display: flex;
        gap: 20px;
        transition: transform 0.2s ease;
    }

    .review-item:hover {
        transform: translateX(5px);
        border-color: rgba(255,255,255,0.1);
    }

    /* Dinamik Avatar (Sıfır Resim / 0 HTTP Request) */
    .review-avatar {
        width: 45px;
        height: 45px;
        background: rgba(51, 153, 255, 0.1);
        border: 1px solid rgba(51, 153, 255, 0.3);
        color: #3399ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 1.1rem;
        flex-shrink: 0;
    }

    .review-content {
        flex: 1;
    }

    .review-meta {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 8px;
        flex-wrap: wrap;
    }

    .review-author {
        color: #fff;
        font-weight: 700;
        font-size: 1.05rem;
    }

    .review-location {
        color: var(--text-300);
        font-size: 0.85rem;
    }

    .review-date {
        color: var(--text-300);
        font-size: 0.8rem;
        margin-left: auto; /* Sağa yaslar */
    }

    .verified-badge {
        display: flex;
        align-items: center;
        gap: 4px;
        color: #00e676;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: uppercase;
        background: rgba(0, 230, 118, 0.1);
        padding: 3px 6px;
        border-radius: 3px;
    }

    .verified-badge svg { width: 12px; height: 12px; stroke: #00e676; }

    .review-text {
        color: var(--text-200);
        font-size: 0.95rem;
        line-height: 1.6;
        margin: 0;
    }

    /* Mobil Uyumluluk */
    @media (max-width: 768px) {
        .form-grid { grid-template-columns: 1fr; }
        .review-meta { flex-direction: column; align-items: flex-start; gap: 5px; }
        .review-date { margin-left: 0; }
    }
/* ELITE MARKET INTELLIGENCE CSS */
    .intel-wrapper {
        margin-top: 50px;
        background: var(--bg-surface);
        border: 1px solid rgba(255,255,255,0.05);
        border-radius: var(--radius-lg);
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .intel-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 15px;
    }

    .intel-header h2 {
        font-size: 1.5rem;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .live-pulse {
        width: 10px;
        height: 10px;
        background: #00e676; /* Canlı yeşil */
        border-radius: 50%;
        box-shadow: 0 0 10px #00e676;
        animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
        0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
        70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 230, 118, 0); }
        100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
    }

    .intel-feed {
        display: flex;
        flex-direction: column;
        gap: 15px;
        min-height: 220px; /* Sayfa değişirken zıplamayı önler */
    }

    .intel-card {
        background: rgba(0,0,0,0.2);
        border-left: 3px solid #3399ff;
        padding: 15px 20px;
        border-radius: 0 var(--radius-md) var(--radius-md) 0;
        transition: transform 0.2s ease;
        animation: fadeIn 0.4s ease-in-out;
    }

    .intel-card:hover { transform: translateX(5px); }
    
    @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

    /* Dinamik Kategori Renkleri */
    .type-bullish { border-left-color: #00e676; }
    .type-tech { border-left-color: #3399ff; }
    .type-alert { border-left-color: #ffab00; }

    .intel-meta {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 8px;
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .intel-cat { color: #fff; background: rgba(255,255,255,0.1); padding: 3px 8px; border-radius: 4px; }
    .intel-date { color: var(--text-300); }

    .intel-title { color: #fff; font-size: 1.1rem; font-weight: 700; margin: 0 0 8px 0; }
    .intel-content { color: var(--text-200); font-size: 0.9rem; line-height: 1.6; margin: 0; }

    /* Sayfalama Kontrolleri */
    .intel-pagination {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 25px;
        padding-top: 15px;
        border-top: 1px dashed rgba(255,255,255,0.1);
    }

    .intel-page-info { font-size: 0.85rem; color: var(--text-300); font-weight: 600; }
    
    .intel-btn-group { display: flex; gap: 10px; }
    
    .intel-btn {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        color: #fff;
        padding: 6px 15px;
        border-radius: 4px;
        font-size: 0.85rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .intel-btn:hover:not(:disabled) { background: #3399ff; border-color: #3399ff; }
    .intel-btn:disabled { opacity: 0.3; cursor: not-allowed; }
    
        .bvn-alert-box { background: rgba(0, 200, 83, 0.1); border-left: 4px solid #00c853; padding: 20px; border-radius: var(--radius-md); margin-bottom: 40px; }
        .nlrc-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(0,200,83,0.3); padding: 6px 16px; border-radius: 30px; font-size: 0.85rem; font-weight: 700; color: #00c853; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
        
        .fintech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 40px; }
        .fintech-card { background: var(--bg-surface); border: 1px solid var(--border-color); padding: 25px 20px; border-radius: var(--radius-md); text-align: center; transition: var(--transition); display: flex; flex-direction: column; align-items: center; }
        .fintech-card:hover { border-color: #00c853; transform: translateY(-3px); box-shadow: 0 4px 15px rgba(0,200,83,0.1); }
        .fintech-logo { height: 45px; margin-bottom: 15px; }

        .booking-code-box { display: flex; gap: 20px; background: #0d1117; border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 30px; margin-top: 40px; align-items: center; }
        .booking-icon { font-size: 3rem; }
        .booking-text { flex: 1; }
                .tax-alert-box { background: rgba(255, 68, 68, 0.1); border-left: 4px solid #ff4444; padding: 20px; border-radius: var(--radius-md); margin-bottom: 40px; }
        .paybill-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 50px; }
        .paybill-card { background: var(--bg-surface); border: 1px dashed var(--primary); padding: 24px 16px; border-radius: var(--radius-md); text-align: center; transition: var(--transition); }
        .paybill-card:hover { border-color: #fff; transform: translateY(-3px); }
        .paybill-num { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 900; color: #fff; letter-spacing: 2px; margin: 12px 0; }
        .copy-btn { background: rgba(0, 230, 118, 0.15); color: var(--primary); padding: 8px 16px; border-radius: 4px; font-size: 0.8rem; font-weight: 700; cursor: pointer; text-transform: uppercase; border: 1px solid rgba(0, 230, 118, 0.3); }
        .bclb-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); border: 1px solid var(--border-color); padding: 6px 16px; border-radius: 30px; font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 24px; text-transform: uppercase; letter-spacing: 1px; }
