/* ===== DARK ELITE HEADER (iGaming Style) ===== */
:root {
    --header-dark: #0d0d0d;
    --header-dark-hover: #1a1a1a;
    --header-border: #222222;
    --header-text: #ffffff;
    --header-text-muted: #a0a0a0;
    --header-accent: #dc2626;
    --header-height: 64px;
}

/* Dark Header Container */
.site-header-elite {
    background: var(--header-dark);
    border-bottom: 1px solid var(--header-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    width: 100%;
}

.header-inner-elite {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 32px;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-chip-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    display: block;
    animation: spin3D 4s linear infinite;
}

@keyframes spin3D {
    from {
        transform: perspective(1000px) rotateY(0deg);
    }
    to {
        transform: perspective(1000px) rotateY(360deg);
    }
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--header-text);
    letter-spacing: -0.5px;
}

.brand-accent {
    color: var(--header-accent);
}

/* Primary Navigation */
.nav-primary {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    display: block;
    color: var(--header-text-muted);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-menu li a:hover {
    color: var(--header-text);
    background: var(--header-dark-hover);
}

.nav-menu li a.active {
    color: var(--header-text);
    background: rgba(255,255,255,0.08);
    font-weight: 600;
}

/* Right Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Profile Button */
.nav-profile {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--header-dark-hover);
    border: 1px solid var(--header-border);
    color: var(--header-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
    padding: 0;
}

.nav-profile:hover {
    background: var(--header-border);
    border-color: #333;
}

/* Sign Up Link */
.nav-signup {
    color: var(--header-text);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.2s;
}

.nav-signup:hover {
    background: var(--header-dark-hover);
}

/* Country Selector */
.nav-country {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 6px;
    background: var(--header-dark-hover);
    border: 1px solid var(--header-border);
    cursor: pointer;
    transition: background 0.2s;
}

.nav-country:hover {
    background: var(--header-border);
}

.country-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.country-code {
    color: var(--header-text);
    font-size: 0.82rem;
    font-weight: 600;
}

.country-arrow {
    color: var(--header-text-muted);
}

/* Mobile Toggle */
.nav-toggle-elite {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
}

.nav-toggle-elite span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--header-text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle-elite.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle-elite.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle-elite.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.nav-mobile-menu {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--header-dark);
    border-top: 1px solid var(--header-border);
    padding: 16px;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
}

.nav-mobile-menu.open {
    display: block;
}

.nav-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-mobile-menu li a {
    display: block;
    color: var(--header-text-muted);
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
}

.nav-mobile-menu li a:hover,
.nav-mobile-menu li a.active {
    color: var(--header-text);
    background: var(--header-dark-hover);
}

.nav-mobile-menu .mobile-actions {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--header-border);
}

/* Responsive */
@media (max-width: 1100px) {
    .nav-menu li a {
        padding: 8px 12px;
        font-size: 0.82rem;
    }
}

@media (max-width: 992px) {
    .nav-primary,
    .nav-signup,
    .nav-country,
    .nav-profile {
        display: none;
    }

    .nav-toggle-elite {
        display: flex;
    }

    .header-inner-elite {
        gap: 16px;
    }
}

/* ===== END DARK ELITE HEADER ===== */

/**
 * Go Review — Main Stylesheet
 * LIGHT THEME: Red & White
 * Mobile-first, CLS-optimized, Core Web Vitals ready
 */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --white: #ffffff;
    --bg: #fafbfc;
    --surface: #ffffff;
    --surface-alt: #f5f7fa;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --text: #1a202c;
    --text-secondary: #4a5568;
    --muted: #718096;
    --red: #dc2626;
    --red-dark: #b91c1c;
    --red-light: #fef2f2;
    --red-glow: rgba(220,38,38,0.15);
    --orange: #f97316;
    --green: #16a34a;
    --radius: 12px;
    --radius-sm: 8px;
    --max-width: 1280px;
    --header-height: 70px;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.1);
    --transition: 0.2s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; height: auto; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-heading); line-height: 1.2; color: var(--text); }

/* ===== HEADER ===== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    line-height: 1;
}
.logo-go {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red);
    letter-spacing: -0.5px;
}
.logo-review {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.5px;
}
.logo-badge {
    background: var(--red);
    color: #fff;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    align-self: flex-start;
    margin-top: 2px;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 200;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
}
.main-nav a {
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}
.main-nav a:hover, .main-nav a.active {
    color: var(--red);
    border-bottom-color: var(--red);
}
.trust-badge {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 500;
}

/* ===== HERO MAIN (Gambling.com Style) ===== */
.hero-main {
    background: linear-gradient(135deg, #1a0a0a 0%, #2d0f0f 50%, #1a0a0a 100%);
    padding: 0;
    overflow: hidden;
}

.hero-main-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px 0;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: flex-end;
    min-height: 420px;
    position: relative;
}

.hero-main-content {
    padding-bottom: 40px;
}

.hero-main-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.hero-main-content h1 .text-red {
    color: #dc2626;
}

.hero-main-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #dc2626;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-main-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 28px;
}

/* Search Bar */
.hero-search {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    max-width: 480px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-search .search-icon {
    color: #718096;
    flex-shrink: 0;
}

.hero-search input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    padding: 12px 16px;
    color: #1a202c;
    background: transparent;
}

.hero-search input::placeholder {
    color: #a0a0a0;
}

.hero-search .search-btn {
    background: #dc2626;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}

.hero-search .search-btn:hover {
    background: #b91c1c;
}

/* Person Section - Centered Middle */
.hero-main-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    min-height: 380px;
}

.hero-brand-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-logo-big {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(220,38,38,0.3));
}

.brand-text-lg {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.brand-text-lg .text-red {
    color: #dc2626;
}

.hero-tagline {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
}

/* Category Navigation - Gambling.com Style */
.hero-categories-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 30px;
}

.hero-categories {
    background: #fff;
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.hero-cat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    flex: 1;
    justify-content: center;
}

.hero-cat-item:hover {
    background: #f5f5f5;
}

.hero-cat-icon-svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.hero-cat-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a202c;
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-categories-wrapper {
        padding: 0 20px 20px;
    }
    .hero-categories {
        border-radius: 40px;
        padding: 10px 16px;
    }
    .hero-cat-item {
        padding: 6px 10px;
    }
    .hero-cat-icon-svg {
        width: 28px;
        height: 28px;
    }
    .hero-cat-item span {
        font-size: 0.78rem;
    }
}

@media (max-width: 768px) {
    .hero-categories-wrapper {
        padding: 0 10px 20px;
    }
    .hero-categories {
        border-radius: 20px;
        padding: 12px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .hero-cat-item {
        justify-content: flex-start;
        padding: 10px 12px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-main-inner {
        grid-template-columns: 1.2fr 1fr;
        padding: 40px 20px 0;
        min-height: 360px;
    }
    .hero-main-content h1 { font-size: 2.4rem; }
    .hero-main-content h2 { font-size: 2rem; }
    .person-img { max-height: 300px; }
    .hero-categories {
        grid-template-columns: repeat(3, 1fr);
        padding: 0 20px 20px;
    }
}

@media (max-width: 768px) {
    .hero-main-inner {
        grid-template-columns: 1fr;
        padding: 30px 20px 0;
        text-align: center;
        min-height: auto;
    }
    .hero-main-content { padding-bottom: 0; order: 1; }
    .hero-main-content h1 { font-size: 2rem; }
    .hero-main-content h2 { font-size: 1.6rem; }
    .hero-main-content p { margin: 0 auto 24px; }
    .hero-search { margin: 0 auto; }
    .hero-main-person { order: 2; }
    .person-img { max-height: 250px; }
    .hero-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .hero-cat-item { padding: 14px 10px; }
    .hero-cat-icon { font-size: 1.4rem; }
}

/* ===== END HERO MAIN ===== */

/* ===== HERO SLIDER ===== */
.hero-slider {
    position: relative;
    margin: 20px auto 0;
    max-width: var(--max-width);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-slides {
    position: relative;
    height: 480px;
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220,38,38,0.85) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}
.hero-slide-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 700px;
    color: #fff;
}
.hero-slide-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff;
}
.hero-slide-content h1 .text-red {
    color: #ffcccc;
}
.hero-slide-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
    line-height: 1.6;
}
.hero-slide .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(4px);
}
.hero-slide .hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.hero-slide .hero-trust {
    display: flex;
    gap: 20px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.85);
    flex-wrap: wrap;
}
.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}

/* Slider Arrows */
.hero-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    backdrop-filter: blur(4px);
}
.hero-slider-arrow:hover {
    background: var(--red);
    border-color: var(--red);
}
.hero-slider-arrow.prev { left: 20px; }
.hero-slider-arrow.next { right: 20px; }

/* Slider Dots */
.hero-slider-dots {
    position: absolute;
    bottom: 24px;
    right: 40px;
    z-index: 10;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.6);
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}
.hero-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Hero Stats Below Slider */
.hero-stats-section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 30px 20px;
}
.hero-stats-section .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.hero-stats-section .stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.hero-stats-section .stat-card:hover {
    border-color: var(--red);
    box-shadow: var(--shadow-md);
}

/* ===== HERO (Old - kept for reference) ===== */
.hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 60px 20px 40px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
}
.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text);
}
.hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 540px;
    margin-bottom: 24px;
}
.hero-badge {
    display: inline-block;
    background: var(--red-light);
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    border: 1px solid rgba(220,38,38,0.15);
}
.hero-cta {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.hero-trust {
    display: flex;
    gap: 20px;
    font-size: 0.78rem;
    color: var(--muted);
    flex-wrap: wrap;
}
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.stat-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); }
.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--red);
}
.stat-label { font-size: 0.78rem; color: var(--muted); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    cursor: pointer;
}
.btn-primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); box-shadow: 0 4px 16px var(--red-glow); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red-light); }
.btn-white { background: var(--white); color: var(--red); border-color: var(--white); }
.btn-white:hover { background: var(--red-light); box-shadow: var(--shadow-md); }
.btn-full { width: 100%; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 20px; font-size: 0.8rem; }

/* ===== SECTIONS ===== */
.section { max-width: var(--max-width); margin: 0 auto; padding: 50px 20px; }
.section-light { background: var(--surface-alt); max-width: 100%; padding: 60px 20px; }
.section-light .section { padding: 0; }
.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}
.section-header.center { flex-direction: column; align-items: center; text-align: center; gap: 8px; }
.section-title { font-size: 1.6rem; font-weight: 800; color: var(--text); }
.section-subtitle { color: var(--muted); font-size: 0.92rem; margin-top: 4px; }
.section-link { font-size: 0.82rem; color: var(--red); font-weight: 600; }
.section-link:hover { color: var(--red-dark); }

/* ===== REVIEW GRID (4 per row, 8 total) ===== */
.review-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.review-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.review-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}
.review-logo {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-logo span {
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}
.review-card-info { flex: 1; min-width: 0; }
.review-casino-name { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.review-highlight {
    display: inline-block;
    background: var(--red-light);
    color: var(--red);
    font-size: 0.62rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.review-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.review-rating .stars { font-size: 0.8rem; }
.rating-num { font-weight: 700; font-size: 0.82rem; color: var(--text); }
.rating-count { font-size: 0.68rem; color: var(--muted); }
.review-bonus {
    background: var(--red-light);
    border: 1px dashed rgba(220,38,38,0.2);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    text-align: center;
    margin-bottom: 10px;
}
.bonus-label { display: block; font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); margin-bottom: 2px; }
.bonus-value { display: block; font-weight: 700; font-size: 0.85rem; color: var(--red); }
.review-features { margin-bottom: 10px; flex: 1; }
.review-features li { font-size: 0.72rem; color: var(--text-secondary); padding: 1px 0; }
.review-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--muted);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}
.review-meta strong { color: var(--text); }
.review-link { display: block; text-align: center; font-size: 0.72rem; color: var(--red); font-weight: 600; margin-top: 8px; }
.review-link:hover { color: var(--red-dark); }

/* ===== TRUST GRID ===== */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.trust-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); }
.trust-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.trust-card h3 { font-size: 1rem; margin-bottom: 8px; font-weight: 700; }
.trust-card p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

/* ===== BONUS GRID ===== */
.bonus-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.bonus-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.bonus-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); }
.bonus-rank { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--red); min-width: 30px; }
.bonus-info { flex: 1; }
.bonus-info h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.bonus-amount { display: block; font-weight: 700; font-size: 0.85rem; color: var(--red); }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    padding: 60px 20px;
    text-align: center;
}
.cta-content { max-width: 600px; margin: 0 auto; }
.cta-content h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.cta-content p { color: rgba(255,255,255,0.85); margin-bottom: 24px; font-size: 1rem; }

/* ===== BREADCRUMB ===== */
.breadcrumb { max-width: var(--max-width); margin: 0 auto; padding: 16px 20px 0; }
.breadcrumb ol { display: flex; gap: 8px; font-size: 0.82rem; color: var(--muted); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb [aria-current] { color: var(--text); }

/* ===== REVIEW HERO (Individual Page) ===== */
.review-hero {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: center;
}
.review-hero-content { display: flex; align-items: center; gap: 24px; }
.review-hero-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-hero-logo span { color: #fff; font-weight: 800; font-size: 2rem; font-family: var(--font-heading); }
.review-hero-info h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 4px; }
.review-hero-tagline { color: var(--red); font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; }
.review-hero-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.review-hero-rating .stars { font-size: 1rem; }
.rating-big { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; color: var(--text); }
.rating-outof { font-size: 1rem; color: var(--muted); }
.rating-reviews { font-size: 0.78rem; color: var(--muted); }
.review-hero-bonus {
    background: var(--white);
    border: 2px solid var(--red);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
}
.review-hero-bonus .bonus-card-label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 6px; }
.review-hero-bonus .bonus-card-amount { display: block; font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--red); margin-bottom: 6px; }
.review-hero-bonus .bonus-card-detail { display: block; font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 16px; }

/* ===== META GRID ===== */
.review-meta-section { padding-top: 0; }
.meta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.meta-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px;
    text-align: center;
}
.meta-label { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); margin-bottom: 4px; }
.meta-value { display: block; font-weight: 700; font-size: 0.85rem; color: var(--text); }

/* ===== RATINGS BREAKDOWN ===== */
.ratings-breakdown { max-width: 700px; margin: 0 auto; }
.rating-row { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.rating-category { font-size: 0.85rem; font-weight: 600; min-width: 140px; }
.rating-bar-bg { flex: 1; height: 10px; background: var(--border); border-radius: 5px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: linear-gradient(90deg, var(--red), var(--orange)); border-radius: 5px; transition: width 0.5s ease; }
.rating-score { font-weight: 700; font-size: 0.85rem; min-width: 30px; text-align: right; }

/* ===== GAMES GRID ===== */
.games-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.game-category-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.game-category-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; color: var(--red); }
.game-category-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.game-category-card li { font-size: 0.82rem; color: var(--text-secondary); padding: 4px 0; }

/* ===== BONUS TABLE ===== */
.bonus-table { overflow-x: auto; }
.bonus-table table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.bonus-table th { background: var(--red); color: #fff; padding: 14px 16px; text-align: left; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.bonus-table td { padding: 12px 16px; border-bottom: 1px solid var(--border-light); font-size: 0.85rem; }
.bonus-table tr:last-child td { border-bottom: none; }
.bonus-table tr:hover { background: var(--red-light); }

/* ===== PAYMENT GRID ===== */
.payment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.payment-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: border-color var(--transition);
}
.payment-item:hover { border-color: var(--red); }
.payment-icon { font-size: 1.2rem; }
.payment-name { font-weight: 600; font-size: 0.85rem; }

/* ===== PROS & CONS ===== */
.proscons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros-card, .cons-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}
.pros-card h3 { font-size: 1.1rem; margin-bottom: 14px; color: var(--green); }
.cons-card h3 { font-size: 1.1rem; margin-bottom: 14px; color: var(--red); }
.pros-card li, .cons-card li { font-size: 0.85rem; color: var(--text-secondary); padding: 6px 0; border-bottom: 1px solid var(--border-light); }
.pros-card li:last-child, .cons-card li:last-child { border-bottom: none; }

/* ===== REVIEW CONTENT ===== */
.review-content { max-width: 800px; margin: 0 auto; }
.review-content h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 16px; }
.review-content h3 { font-size: 1.2rem; font-weight: 700; margin: 24px 0 12px; }
.review-content p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.features-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.features-list li { font-size: 0.88rem; color: var(--text-secondary); padding: 6px 0; }

/* ===== FOOTER ===== */
.site-footer { background: var(--white); border-top: 1px solid var(--border); padding: 48px 20px 0; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 32px; }
.footer-brand .logo { margin-bottom: 12px; }
.footer-tagline { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.footer-trust-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.mini-badge { font-size: 0.7rem; background: var(--surface-alt); padding: 4px 8px; border-radius: 4px; color: var(--text-secondary); border: 1px solid var(--border-light); }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; color: var(--text); font-weight: 700; }
.footer-col a { display: block; font-size: 0.82rem; color: var(--text-secondary); padding: 4px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--red); }
.footer-responsible { background: var(--red-light); border-top: 1px solid rgba(220,38,38,0.15); border-bottom: 1px solid rgba(220,38,38,0.15); padding: 20px; }
.footer-responsible-inner { max-width: var(--max-width); margin: 0 auto; display: flex; gap: 14px; align-items: flex-start; }
.rg-icon { font-size: 1.5rem; flex-shrink: 0; }
.footer-responsible p { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.6; }
.footer-responsible a { color: var(--red); text-decoration: underline; }
.footer-bottom { max-width: var(--max-width); margin: 0 auto; padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 12px; }
.copyright { font-size: 0.78rem; color: var(--muted); }
.legal-links { display: flex; gap: 16px; }
.legal-links a { font-size: 0.75rem; color: var(--muted); transition: color var(--transition); }
.legal-links a:hover { color: var(--red); }
.affiliate-disclosure { font-size: 0.72rem; color: var(--muted); line-height: 1.5; padding-top: 12px; border-top: 1px solid var(--border-light); }
.affiliate-disclosure a { color: var(--red); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; padding: 40px 20px; }
    .hero-stats { max-width: 500px; }
    .hero-slider { margin: 20px 20px 0; border-radius: 16px; }
    .hero-slides { height: 400px; }
    .hero-slide-content { padding: 40px; }
    .hero-slide-content h1 { font-size: 2rem; }
    .hero-stats-section .hero-stats { grid-template-columns: repeat(2, 1fr); }
    .review-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .bonus-grid { grid-template-columns: repeat(2, 1fr); }
    .review-hero { grid-template-columns: 1fr; }
    .meta-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .nav-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        z-index: 150;
        transition: right 0.3s ease;
        padding: 80px 24px 24px;
        border-left: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
    }
    .main-nav.open { right: 0; }
    .main-nav ul { flex-direction: column; align-items: flex-start; gap: 16px; }
    .main-nav a { font-size: 1rem; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-slider { margin: 10px 10px 0; border-radius: 12px; }
    .hero-slides { height: 350px; }
    .hero-slide-content { padding: 30px 20px; }
    .hero-slide-content h1 { font-size: 1.6rem; }
    .hero-slide-content p { font-size: 0.95rem; }
    .hero-slider-arrow { width: 36px; height: 36px; font-size: 1.2rem; }
    .hero-slider-arrow.prev { left: 10px; }
    .hero-slider-arrow.next { right: 10px; }
    .hero-slider-dots { bottom: 16px; right: 20px; }
    .hero-stats-section { padding: 20px 10px; }
    .hero-stats-section .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .review-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .bonus-grid { grid-template-columns: 1fr; }
    .games-grid { grid-template-columns: 1fr; }
    .proscons-grid { grid-template-columns: 1fr; }
    .meta-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
    .features-list { grid-template-columns: 1fr; }
    .review-hero-content { flex-direction: column; text-align: center; }
    .review-hero-rating { justify-content: center; }
    .rating-category { min-width: 100px; font-size: 0.78rem; }
}

@media (max-width: 480px) {
    .hero-cta { flex-direction: column; }
    .hero-trust { flex-direction: column; gap: 6px; }
}
