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

        :root {
            --bg-dark: #f0f2f5;
            --bg-darker: #ffffff;
            --bg-darkest: #f8f9fa;
            --bg-card: #ffffff;
            --bg-card-hover: #f8f9fa;
            --bg-input: #f0f2f5;
            --text-primary: #1a1a2e;
            --text-secondary: #555555;
            --text-muted: #888888;
            --gold: #e09015;
            --gold-dim: #c07d10;
            --orange: #e09015;
            --red: #d63031;
            --green: #1e8449;
            --blue: #2980b9;
            --purple: #9b59b6;
            --border: #e0e0e0;
            --border-light: #d0d0d0;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: var(--bg-darker);
            color: var(--text-primary);
            line-height: 1.5;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

        /* ===== TOP BAR ===== */
        .topbar {
            background: var(--blue);
            border-bottom: 1px solid rgba(255,255,255,0.15);
            font-size: 13px;
            padding: 6px 0;
        }
        .topbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .topbar-left {
            display: flex;
            align-items: center;
            gap: 16px;
            color: rgba(255,255,255,0.85);
        }
        .topbar-left .clock { font-family: 'JetBrains Mono', monospace; color: #ffffff; font-weight: 600; }
        .topbar-marquee {
            flex: 1;
            margin: 0 20px;
            overflow: hidden;
            white-space: nowrap;
        }
        .topbar-marquee span {
            display: inline-block;
            animation: marquee 30s linear infinite;
            color: rgba(255,255,255,0.9);
        }
        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        .topbar-right { display: flex; align-items: center; gap: 8px; }
        .btn-register {
            background: #ffffff;
            color: var(--blue);
            padding: 6px 20px;
            border-radius: 4px;
            font-weight: 700;
            font-size: 13px;
            border: none;
            cursor: pointer;
            transition: background 0.2s;
        }
        .btn-register:hover { background: #f0f0f0; }
        .btn-login {
            background: transparent;
            color: #ffffff;
            padding: 6px 20px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 13px;
            border: 1px solid rgba(255,255,255,0.6);
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-login:hover { background: #ffffff; color: var(--blue); }

        /* ===== MAIN NAV ===== */
        .main-nav {
            background: #ffffff;
            border-bottom: 3px solid var(--blue);
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        }
        .main-nav .container {
            display: flex;
            align-items: center;
            gap: 0;
        }
        .logo {
            display: flex;
            align-items: center;
            padding: 12px 24px 12px 0;
            flex-shrink: 0;
        }
        .logo img {
            height: 36px;
            width: auto;
        }
        .logo-text {
            font-size: 28px;
            font-weight: 800;
            letter-spacing: -1px;
            display: none;
        }
        .logo-text .ku { color: var(--blue); }
        .logo-text .bet { color: var(--orange); }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0;
            flex: 1;
        }
        .nav-item {
            position: relative;
        }
        .nav-item > a {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 16px 16px;
            font-size: 14px;
            font-weight: 600;
            color: #333;
            transition: all 0.2s;
            white-space: nowrap;
        }
        .nav-item > a:hover,
        .nav-item.active > a {
            color: var(--blue);
            background: rgba(57, 159, 216, 0.06);
        }
        .nav-item > a .fire { color: var(--orange); font-size: 16px; }
        .nav-item > a .material-symbols-outlined { font-size: 18px; }
        .nav-item .promo-link { color: var(--orange); font-weight: 700; }

        /* Mega Dropdown */
        .mega-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 0 0 8px 8px;
            padding: 20px;
            min-width: 500px;
            z-index: 200;
            box-shadow: 0 12px 40px rgba(0,0,0,0.12);
        }
        .nav-item:hover .mega-dropdown { display: block; }
        .mega-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }
        .mega-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
        .mega-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
        .mega-provider {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            padding: 12px 8px;
            border-radius: 6px;
            background: #f5f7fa;
            cursor: pointer;
            transition: all 0.2s;
            text-align: center;
            border: 1px solid transparent;
        }
        .mega-provider:hover {
            background: #eef2f7;
            border-color: var(--blue);
        }
        .mega-provider .provider-logo {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            background: #ffffff;
            border: 1px solid #e0e0e0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 700;
            color: var(--blue);
            overflow: hidden;
        }
        .mega-provider .provider-name {
            font-size: 11px;
            color: #555;
            font-weight: 500;
        }
        .mega-provider .badge {
            font-size: 9px;
            padding: 1px 6px;
            border-radius: 3px;
            font-weight: 700;
        }
        .badge-hot { background: var(--red); color: #fff; }
        .badge-new { background: var(--green); color: #fff; }

        /* ===== HERO CAROUSEL ===== */
        .hero-carousel {
            position: relative;
            background: var(--bg-darkest);
        }
        .swiper-hero { width: 100%; }
        .swiper-slide {
            position: relative;
            overflow: hidden;
        }
        .hero-slide {
            width: 100%;
            height: 420px;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }
        .hero-slide::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 40px 60px;
            max-width: 600px;
            color: #ffffff;
        }
        .hero-badge {
            display: inline-block;
            background: var(--blue);
            color: #ffffff;
            padding: 4px 14px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 700;
            margin-bottom: 16px;
            text-transform: uppercase;
        }
        .hero-title {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 12px;
            color: #ffffff;
        }
        .hero-desc {
            font-size: 15px;
            color: rgba(255,255,255,0.85);
            margin-bottom: 24px;
            line-height: 1.6;
        }
        .hero-btn {
            display: inline-block;
            background: var(--blue);
            color: #ffffff;
            padding: 12px 32px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.2s;
        }
        .hero-btn:hover { background: #4ab0e8; transform: translateY(-1px); }

        .swiper-pagination-hero { position: relative; padding: 16px 0; background: var(--bg-darkest); }
        .swiper-pagination-hero .swiper-pagination-bullet {
            width: 40px;
            height: 4px;
            border-radius: 2px;
            background: var(--border);
            opacity: 1;
            margin: 0 4px;
            transition: all 0.3s;
        }
        .swiper-pagination-hero .swiper-pagination-bullet-active {
            background: var(--blue);
            width: 60px;
        }

        /* ===== INFO BAR / JACKPOT ===== */
        .info-bar {
            background: var(--bg-dark);
            border-bottom: 1px solid var(--border);
            padding: 12px 0;
        }
        .info-bar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }
        .info-ticker {
            display: flex;
            align-items: center;
            gap: 8px;
            flex: 1;
            overflow: hidden;
            min-width: 0;
        }
        .info-ticker .label {
            background: var(--orange);
            color: #fff;
            padding: 3px 10px;
            border-radius: 3px;
            font-size: 11px;
            font-weight: 700;
            white-space: nowrap;
            flex-shrink: 0;
        }
        .info-ticker .ticker-wrap {
            flex: 1;
            overflow: hidden;
            min-width: 0;
        }
        .info-ticker .ticker-text {
            font-size: 13px;
            color: var(--text-secondary);
            white-space: nowrap;
            display: inline-block;
            animation: marquee 25s linear infinite;
        }

        .jackpot-bar {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        .jackpot-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .jackpot-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }
        .jackpot-icon.baccarat { background: linear-gradient(135deg, #ffd200, #ff8c00); }
        .jackpot-icon.colorplate { background: linear-gradient(135deg, #ff3b30, #ff6b6b); }
        .jackpot-label { font-size: 11px; color: var(--text-muted); }
        .jackpot-amount {
            font-family: 'JetBrains Mono', monospace;
            font-size: 18px;
            font-weight: 700;
            color: var(--orange);
            letter-spacing: -0.5px;
        }
        .jackpot-digits { display: flex; gap: 1px; }
        .jackpot-digit {
            display: inline-block;
            width: 16px;
            height: 22px;
            background: var(--bg-darkest);
            border: 1px solid var(--border);
            border-radius: 3px;
            text-align: center;
            line-height: 22px;
            font-family: 'JetBrains Mono', monospace;
            font-size: 14px;
            font-weight: 700;
            color: var(--orange);
        }
        .jackpot-btn {
            font-size: 11px;
            color: var(--orange);
            border: 1px solid var(--orange);
            padding: 4px 12px;
            border-radius: 4px;
            cursor: pointer;
            background: transparent;
            font-weight: 600;
            transition: all 0.2s;
        }
        .jackpot-btn:hover { background: var(--orange); color: var(--bg-darkest); }

        /* ===== FEATURE CARDS ===== */
        .features {
            padding: 32px 0;
            background: var(--bg-darker);
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 16px;
        }
        .feature-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
            border: 1px solid var(--border);
            background: var(--bg-card);
        }
        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.4);
            border-color: var(--blue);
        }
        .feature-card .card-bg {
            height: 160px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .feature-card .card-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, var(--bg-card) 0%, transparent 100%);
        }
        .feature-card .card-content {
            padding: 16px;
            position: relative;
        }
        .feature-card .card-icon {
            font-size: 32px;
            margin-bottom: 8px;
        }
        .feature-card .card-title {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text-primary);
        }
        .feature-card .card-desc {
            font-size: 12px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            line-height: 1.5;
        }
        .feature-card .card-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 11px;
            color: var(--orange);
            font-weight: 600;
        }
        .feature-card .card-badge .material-symbols-outlined { font-size: 14px; }
        .btn-enter {
            display: block;
            width: 100%;
            text-align: center;
            padding: 8px;
            background: var(--blue);
            color: var(--text-primary);
            border-radius: 5px;
            font-weight: 700;
            font-size: 13px;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-enter:hover { background: #4ab0e8; }

        /* ===== FOOTER LINKS ===== */
        .footer-links {
            background: #ffffff;
            border-top: 1px solid #e0e0e0;
            padding: 16px 0;
        }
        .footer-links .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .footer-nav a {
            font-size: 13px;
            color: #555;
            padding: 4px 8px;
            transition: color 0.2s;
        }
        .footer-nav a:hover { color: var(--blue); }
        .footer-nav .sep { color: #ccc; }
        .footer-nav .highlight { color: var(--blue); font-weight: 600; }
        .footer-phone { font-size: 13px; color: #555; }

        /* ===== FOOTER DIRECTORY ===== */
        .footer-directory {
            background: var(--bg-darkest);
            padding: 32px 0;
            border-top: 1px solid var(--border);
        }
        .directory-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .directory-col h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--blue);
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--border);
        }
        .directory-col ul { display: flex; flex-direction: column; gap: 6px; }
        .directory-col ul li a {
            font-size: 12px;
            color: var(--text-muted);
            transition: color 0.2s;
        }
        .directory-col ul li a:hover { color: var(--text-primary); }

        /* ===== FOOTER BOTTOM ===== */
        .footer-bottom {
            background: var(--bg-darkest);
            border-top: 1px solid var(--border);
            padding: 20px 0;
        }
        .footer-bottom .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .footer-brand {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .footer-brand img { height: 32px; width: auto; }
        .footer-brand .logo-text { font-size: 22px; display: none; }
        .footer-brand p {
            font-size: 12px;
            color: var(--text-muted);
            max-width: 400px;
            line-height: 1.5;
        }
        .footer-social {
            display: flex;
            gap: 10px;
        }
        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--bg-card);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all 0.2s;
        }
        .footer-social a:hover { background: var(--blue); color: var(--text-primary); }
        .footer-social .material-symbols-outlined { font-size: 18px; }
        .footer-copyright {
            font-size: 11px;
            color: var(--text-muted);
            text-align: center;
            padding: 16px 0;
            border-top: 1px solid var(--border);
        }
        .footer-licenses {
            display: flex;
            gap: 12px;
            margin-top: 12px;
        }
        .license-badge {
            padding: 4px 12px;
            border: 1px solid var(--border);
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
            color: var(--text-secondary);
        }
        .footer-warning {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 12px;
            line-height: 1.5;
        }

        /* ===== RESPONSIBLE GAMBLING ===== */
        .responsible-gambling {
            background: var(--bg-darkest);
            border-top: 1px solid var(--border);
            padding: 24px 0 32px;
            text-align: center;
        }
        .responsible-gambling .rg-text {
            font-size: 12px;
            font-weight: 700;
            color: var(--text-secondary);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        .rg-logos {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 28px;
            flex-wrap: wrap;
        }
        .rg-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.7;
            transition: opacity 0.2s;
            filter: grayscale(30%);
        }
        .rg-logo:hover { opacity: 1; filter: grayscale(0%); }
        .rg-logo img { height: 28px; width: auto; }
        .rg-logo.text-logo {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-secondary);
            white-space: nowrap;
        }
        .rg-logo.text-logo.gambleaware { font-family: Georgia, serif; font-size: 15px; }
        .rg-logo.text-logo.gamcare { font-size: 14px; }
        .rg-logo.text-logo.gordon-moody { font-size: 11px; line-height: 1.3; text-align: center; }
        .rg-logo.text-logo.betblocker { font-size: 14px; font-weight: 800; }
        .rg-logo.text-logo.gamecheck { font-size: 12px; letter-spacing: 0.5px; }

        .rg-badge-18 {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 2px solid var(--text-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 800;
            color: var(--text-secondary);
        }
        .rg-badge-cpwa {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1px;
            border: 2px solid var(--text-secondary);
            border-radius: 4px;
            padding: 4px 8px;
        }
        .rg-badge-cpwa .cpwa-main {
            font-size: 14px;
            font-weight: 900;
            color: var(--text-secondary);
            letter-spacing: 1px;
            line-height: 1;
        }
        .rg-badge-cpwa .cpwa-sub {
            font-size: 7px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .rg-badge-cpwa .cpwa-sub2 {
            font-size: 6px;
            color: var(--text-muted);
            text-transform: uppercase;
        }
        .rg-icon-g {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: 2px solid var(--text-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 900;
            color: var(--text-secondary);
        }
        .rg-icon-gamban {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--text-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .rg-icon-gamban svg { width: 16px; height: 16px; fill: var(--bg-darkest); }
        .rg-icon-gamecheck {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 2px solid var(--text-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .rg-icon-gamecheck svg { width: 14px; height: 14px; stroke: var(--text-secondary); fill: none; }

        @media (max-width: 768px) {
            .rg-logos { gap: 16px; }
            .rg-logo.text-logo { font-size: 11px; }
        }

        /* ===== RIGHT SIDEBAR ===== */
        .sidebar-right {
            position: fixed;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            z-index: 90;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .sidebar-btn {
            width: 48px;
            height: 48px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.2s;
            color: var(--text-secondary);
        }
        .sidebar-btn:first-child { border-radius: 8px 0 0 0; }
        .sidebar-btn:last-child { border-radius: 0 0 0 8px; }
        .sidebar-btn:hover { background: var(--blue); color: var(--text-primary); }
        .sidebar-btn .material-symbols-outlined { font-size: 20px; }

        /* ===== BOTTOM NAV (MOBILE) ===== */
        .bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--bg-dark);
            border-top: 1px solid var(--border);
            z-index: 100;
            padding: 6px 0;
            padding-bottom: env(safe-area-inset-bottom, 6px);
        }
        .bottom-nav .container {
            display: flex;
            justify-content: space-around;
        }
        .bottom-nav a {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
            font-size: 10px;
            color: var(--text-muted);
            padding: 4px 8px;
            transition: color 0.2s;
        }
        .bottom-nav a.active { color: var(--blue); }
        .bottom-nav a .material-symbols-outlined { font-size: 22px; }

        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar { width: 6px; height: 6px; }
        ::-webkit-scrollbar-track { background: var(--bg-darkest); }
        ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--border-light); }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .features-grid { grid-template-columns: repeat(3, 1fr); }
            .directory-grid { grid-template-columns: repeat(2, 1fr); }
            .jackpot-bar { display: none; }
            .topbar-marquee { display: none; }
            .about-stats { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 768px) {
            .nav-menu { display: none; }
            .bottom-nav { display: block; }
            .hero-slide { height: 260px; }
            .hero-content { padding: 20px 24px; }
            .hero-title { font-size: 22px; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .directory-grid { grid-template-columns: 1fr; }
            .sidebar-right { display: none; }
            .footer-bottom .container { flex-direction: column; gap: 16px; text-align: center; }
            body { padding-bottom: 60px; }
            .about-grid { grid-template-columns: 1fr; }
            .about-content h2 { font-size: 22px; }
            .section-header h2 { font-size: 22px; }
        }
        @media (max-width: 480px) {
            .features-grid { grid-template-columns: 1fr; }
            .feature-card .card-bg { height: 120px; }
        }

        /* ===== FAQ SECTION ===== */
        .faq-section {
            padding: 48px 0;
            background: var(--bg-darker);
        }
        .faq-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .faq-header h2 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
        }
        .faq-header h2 .blue { color: var(--blue); }
        .faq-header p {
            font-size: 14px;
            color: var(--text-secondary);
        }
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 8px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: border-color 0.3s;
        }
        .faq-item:hover {
            border-color: var(--blue);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            cursor: pointer;
            user-select: none;
            transition: background 0.2s;
        }
        .faq-question:hover {
            background: var(--bg-card-hover);
        }
        .faq-question span {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }
        .faq-arrow {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
            color: var(--text-muted);
            transition: transform 0.3s, color 0.3s;
        }
        .faq-item.open .faq-arrow {
            transform: rotate(180deg);
            color: var(--blue);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 20px;
            font-size: 13px;
            line-height: 1.7;
            color: var(--text-secondary);
        }
        .faq-item.open .faq-answer {
            max-height: 300px;
            padding: 0 20px 16px;
        }
        .faq-cta {
            text-align: center;
            margin-top: 32px;
        }
        .faq-cta a {
            display: inline-block;
            background: var(--blue);
            color: var(--text-primary);
            padding: 10px 28px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 14px;
            transition: all 0.2s;
        }
        .faq-cta a:hover { background: #4ab0e8; transform: translateY(-1px); }

        @media (max-width: 768px) {
            .faq-header h2 { font-size: 22px; }
            .faq-question { padding: 14px 16px; }
            .faq-question span { font-size: 13px; }
        }

        /* ===== PROMO SECTION ===== */
        .promo-section {
            padding: 48px 0;
            background: var(--bg-darker);
        }
        .promo-section .container { max-width: 1200px; }
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        .section-header h2 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
        }
        .section-header h2 .blue { color: var(--blue); }
        .section-header h2 .orange { color: var(--orange); }
        .section-header p {
            font-size: 14px;
            color: var(--text-secondary);
        }
        .promo-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .promo-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
        }
        .promo-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.1);
            border-color: var(--blue);
        }
        .promo-card-img {
            height: 180px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .promo-card-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
        }
        .promo-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--red);
            color: #fff;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
            z-index: 1;
        }
        .promo-card-body {
            padding: 20px;
        }
        .promo-card-body h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
        }
        .promo-card-body p {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 16px;
            line-height: 1.6;
        }
        .promo-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .promo-card-footer .date {
            font-size: 11px;
            color: var(--text-muted);
        }
        .btn-cta {
            display: inline-block;
            background: var(--blue);
            color: var(--text-primary);
            padding: 8px 20px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 13px;
            border: none;
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-cta:hover { background: #4ab0e8; transform: translateY(-1px); }
        .btn-cta-orange { background: var(--orange); color: #fff; }
        .btn-cta-orange:hover { background: #f0a030; }
        .btn-cta-green { background: var(--green); color: #fff; }
        .btn-cta-green:hover { background: #27ae60; }
        .promo-cta {
            text-align: center;
            margin-top: 32px;
        }

        @media (max-width: 768px) {
            .promo-grid { grid-template-columns: 1fr; }
        }

        /* ===== ABOUT SECTION ===== */
        .about-section {
            padding: 48px 0;
            background: var(--bg-dark);
        }
        .about-section .container { max-width: 1200px; }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .about-content h3 {
            font-size: 14px;
            color: var(--blue);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }
        .about-content h2 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .about-content h2 .blue { color: var(--blue); }
        .about-content p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 24px;
            margin-bottom: 24px;
        }
        .stat-item {
            text-align: center;
            padding: 16px 8px;
            background: var(--bg-card);
            border-radius: 8px;
            border: 1px solid var(--border);
        }
        .stat-item .stat-number {
            font-family: 'JetBrains Mono', monospace;
            font-size: 24px;
            font-weight: 700;
            color: var(--blue);
        }
        .stat-item .stat-label {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 4px;
        }
        .about-image {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }
        .about-image img {
            width: 100%;
            height: 360px;
            object-fit: cover;
            border-radius: 12px;
        }
        .about-image .about-badge {
            position: absolute;
            bottom: 16px;
            left: 16px;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(8px);
            padding: 10px 16px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .about-badge .material-symbols-outlined {
            font-size: 20px;
            color: var(--blue);
        }
        .about-badge span {
            font-size: 12px;
            font-weight: 700;
            color: var(--text-primary);
        }

        @media (max-width: 768px) {
            .about-grid { grid-template-columns: 1fr; }
            .about-content h2 { font-size: 22px; }
            .about-stats { grid-template-columns: repeat(3, 1fr); }
        }

        /* ===== REVIEW SECTION ===== */
        .review-section {
            padding: 48px 0;
            background: var(--bg-darker);
        }
        .review-section .container { max-width: 1200px; }
        .review-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            transition: all 0.3s;
            position: relative;
        }
        .review-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.1);
            border-color: var(--blue);
        }
        .review-stars {
            display: flex;
            gap: 2px;
            margin-bottom: 12px;
        }
        .review-stars .star {
            color: var(--orange);
            font-size: 16px;
        }
        .review-card p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
            font-style: italic;
        }
        .review-card p::before {
            content: '"';
            color: var(--blue);
            font-size: 20px;
            font-weight: 700;
            line-height: 0;
            vertical-align: -4px;
            margin-right: 2px;
        }
        .review-card p::after {
            content: '"';
            color: var(--blue);
            font-size: 20px;
            font-weight: 700;
            line-height: 0;
            vertical-align: -4px;
            margin-left: 2px;
        }
        .review-author {
            display: flex;
            align-items: center;
            gap: 12px;
            border-top: 1px solid var(--border);
            padding-top: 16px;
        }
        .review-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--blue), var(--purple));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            font-weight: 700;
        }
        .review-author-info .name {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-primary);
        }
        .review-author-info .detail {
            font-size: 11px;
            color: var(--text-muted);
        }
        .review-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(30,132,73,0.1);
            color: var(--green);
            padding: 3px 8px;
            border-radius: 4px;
            font-size: 10px;
            font-weight: 700;
        }
        .review-cta {
            text-align: center;
            margin-top: 32px;
        }

        @media (max-width: 768px) {
            .review-grid { grid-template-columns: 1fr; }
        }

        /* ===== ARTICLE SECTION ===== */
        .article-section {
            padding: 48px 0;
            background: var(--bg-dark);
        }
        .article-section .container { max-width: 1200px; }
        .article-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .article-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
        }
        .article-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.1);
            border-color: var(--blue);
        }
        .article-card-img {
            height: 180px;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .article-card-img::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 100%);
        }
        .article-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--blue);
            color: #fff;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 700;
            z-index: 1;
        }
        .article-card-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .article-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 10px;
            font-size: 11px;
            color: var(--text-muted);
        }
        .article-meta span {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .article-meta .material-symbols-outlined { font-size: 14px; }
        .article-card-body h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-primary);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .article-card-body h4 a {
            color: inherit;
            transition: color 0.2s;
        }
        .article-card-body h4 a:hover { color: var(--blue); }
        .article-card-body p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 16px;
            flex: 1;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .article-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .article-read-time {
            font-size: 11px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .article-read-time .material-symbols-outlined { font-size: 14px; }
        .btn-article {
            display: inline-block;
            background: transparent;
            color: var(--blue);
            padding: 6px 14px;
            border-radius: 5px;
            font-weight: 700;
            font-size: 12px;
            border: 1px solid var(--blue);
            cursor: pointer;
            transition: all 0.2s;
        }
        .btn-article:hover {
            background: var(--blue);
            color: #fff;
        }
        .article-cta {
            text-align: center;
            margin-top: 32px;
        }

        @media (max-width: 1024px) {
            .article-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .article-grid { grid-template-columns: 1fr; }
            .article-card-body h4 { font-size: 14px; }
        }
