/* ========================================
   RoboCat Casino - Design System
   HSL Colors | Dark Theme | Casino Aesthetic
   ======================================== */

/* CSS Variables (HSL Format) */
:root {
    /* Primary Background Colors */
    --bg-primary: hsl(240, 20%, 4%);
    --bg-secondary: hsl(240, 18%, 7%);
    --bg-card: hsl(240, 15%, 10%);
    --bg-card-hover: hsl(240, 15%, 14%);
    --bg-muted: hsl(240, 15%, 12%);
    
    /* Accent Colors */
    --accent-primary: hsl(18, 100%, 57%);
    --accent-primary-hover: hsl(18, 100%, 65%);
    --accent-secondary: hsl(45, 100%, 50%);
    --accent-gold: hsl(45, 100%, 50%);
    --accent-gold-light: hsl(45, 100%, 65%);
    --accent-green: hsl(165, 100%, 42%);
    --accent-red: hsl(0, 85%, 55%);
    --accent-neon: hsl(280, 100%, 65%);
    
    /* Text Colors */
    --text-primary: hsl(0, 0%, 100%);
    --text-secondary: hsl(240, 10%, 75%);
    --text-muted: hsl(240, 10%, 45%);
    
    /* Border & Effects */
    --border-color: hsl(240, 15%, 18%);
    --border-glow: hsl(18, 100%, 57%);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(18, 100%, 57%) 0%, hsl(25, 100%, 60%) 100%);
    --gradient-gold: linear-gradient(135deg, hsl(45, 100%, 50%) 0%, hsl(50, 100%, 65%) 100%);
    --gradient-dark: linear-gradient(180deg, hsl(240, 20%, 4%) 0%, hsl(240, 18%, 7%) 100%);
    --gradient-card: linear-gradient(145deg, hsl(240, 15%, 12%) 0%, hsl(240, 15%, 8%) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px hsla(0, 0%, 0%, 0.3);
    --shadow-md: 0 4px 16px hsla(0, 0%, 0%, 0.4);
    --shadow-lg: 0 8px 32px hsla(0, 0%, 0%, 0.5);
    --shadow-card: 0 8px 32px hsla(0, 0%, 0%, 0.4);
    --shadow-glow: 0 0 20px hsla(18, 100%, 57%, 0.4);
    --shadow-gold: 0 0 30px hsla(45, 100%, 50%, 0.3);
    --shadow-button: 0 4px 15px hsla(18, 100%, 57%, 0.4);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Typography */
    --font-family: 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Scroll margin for TOC anchors */
[id] {
    scroll-margin-top: 100px;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px hsla(18, 100%, 57%, 0.5); }
    50% { box-shadow: 0 0 20px hsla(18, 100%, 57%, 0.8), 0 0 30px hsla(18, 100%, 57%, 0.4); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.animate-fade-in { animation: fadeIn 0.5s ease forwards; }
.animate-fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.animate-scale-in { animation: scaleIn 0.4s ease forwards; }
.animate-pulse { animation: pulse 2s infinite; }
.animate-glow { animation: glow 2s infinite; }

/* ========================================
   Reset & Base
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul, ol {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Header (Sticky with Backdrop Blur)
   ======================================== */
.header {
    background: hsla(240, 18%, 7%, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-list {
    display: flex;
    gap: 5px;
}

.nav-link {
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: var(--bg-card);
    color: var(--accent-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--accent-primary);
    border-radius: var(--radius-full);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 8px;
    margin-left: 15px;
    padding-left: 15px;
    border-left: 1px solid var(--border-color);
}

.lang-btn {
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
}

.lang-btn:hover {
    border-color: var(--accent-primary);
    color: var(--text-primary);
}

.lang-btn.active {
    background: var(--accent-primary);
    color: var(--text-primary);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    border-color: var(--accent-primary);
}

/* ========================================
   Hero Section (Compact: 280-320px)
   ======================================== */
.hero {
    background: var(--gradient-dark);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, hsla(18, 100%, 57%, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Hero Badges */
.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.hero-badge.updated {
    background: hsla(165, 100%, 42%, 0.1);
    border-color: var(--accent-green);
    color: var(--accent-green);
}

/* Bonus Box */
.bonus-box {
    background: var(--gradient-card);
    border: 2px solid var(--accent-secondary);
    border-radius: var(--radius-lg);
    padding: 25px 35px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: var(--shadow-gold);
    animation: scaleIn 0.6s ease 0.3s backwards;
}

.bonus-label {
    font-size: 0.9rem;
    color: var(--accent-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.bonus-value {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* CTA Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gradient-primary);
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: var(--radius-xl);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-button);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px hsla(18, 100%, 57%, 0.5);
}

.cta-btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-primary);
    box-shadow: none;
}

.cta-btn-secondary:hover {
    background: var(--accent-primary);
    box-shadow: var(--shadow-button);
}


/* ========================================
   Table of Contents (TOC)
   ======================================== */
.toc {
    background: var(--bg-muted);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px 30px;
    margin: 30px 0 50px;
    max-width: 600px;
}

.toc-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.toc-list {
    counter-reset: toc-counter;
}

.toc-list li {
    counter-increment: toc-counter;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.toc-list li:last-child {
    border-bottom: none;
}

.toc-list a {
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.toc-list a::before {
    content: counter(toc-counter) ".";
    color: var(--accent-primary);
    font-weight: 600;
    min-width: 20px;
}

.toc-list a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

/* ========================================
   Hero Image Section
   ======================================== */
.hero-image-section {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.hero-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
}

.section-title span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 800px;
    margin: -30px auto 50px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--gradient-card);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    box-shadow: var(--shadow-glow);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.about-text h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.02rem;
}

.about-text strong {
    color: var(--accent-primary);
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ========================================
   Games Section
   ======================================== */
.games {
    padding: 80px 0;
    background: var(--bg-primary);
}

.games-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.game-large {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
}

.game-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: var(--transition-slow);
}

.game-large:hover img {
    transform: scale(1.05);
}

.game-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, hsla(0, 0%, 0%, 0.95));
    text-align: center;
}

.game-overlay h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.game-overlay p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.games-grid, .games-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.games-grid-small {
    grid-template-columns: 1fr 1fr;
}

.game-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.game-card:hover {
    transform: scale(1.05);
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.game-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.game-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(transparent, hsla(0, 0%, 0%, 0.9));
}

.game-card-title {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ========================================
   Bonus Section
   ======================================== */
.bonus-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.bonus-image-banner {
    margin-bottom: 50px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.bonus-image-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 35px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.bonus-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.bonus-card-badge {
    display: inline-block;
    padding: 5px 15px;
    background: var(--accent-primary);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.bonus-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.bonus-card-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-secondary);
    margin-bottom: 15px;
}

.bonus-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.bonus-card ul {
    margin-bottom: 25px;
}

.bonus-card li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.bonus-card li:last-child {
    border-bottom: none;
}

.bonus-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}


/* ========================================
   App Section
   ======================================== */
.app-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.app-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.app-text h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-text p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.app-features {
    margin-bottom: 30px;
}

.app-features li {
    padding: 12px 0;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.app-features li:last-child {
    border-bottom: none;
}

.app-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.app-btn:hover {
    border-color: var(--accent-primary);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.app-btn-icon {
    font-size: 1.8rem;
}

.app-btn-text {
    text-align: left;
}

.app-btn-text small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.app-btn-text strong {
    font-size: 1rem;
}

.app-image {
    text-align: center;
}

.app-image img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 20px 40px hsla(18, 100%, 57%, 0.2));
}

/* ========================================
   Rating & Reviews Section
   ======================================== */
.rating-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.rating-header {
    text-align: center;
    margin-bottom: 50px;
}

.rating-score {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--gradient-card);
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    padding: 25px 40px;
    box-shadow: var(--shadow-gold);
}

.rating-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-stars {
    display: flex;
    gap: 5px;
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.rating-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rating-quote {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 25px auto 0;
    padding: 20px;
    border-left: 3px solid var(--accent-primary);
    background: var(--bg-card);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.pros-card, .cons-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border-color);
}

.pros-card {
    border-top: 4px solid var(--accent-green);
}

.cons-card {
    border-top: 4px solid var(--accent-red);
}

.pros-card h3, .cons-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.pros-card h3 { color: var(--accent-green); }
.cons-card h3 { color: var(--accent-red); }

.pros-card li, .cons-card li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.pros-card li:last-child, .cons-card li:last-child {
    border-bottom: none;
}

.pros-card li::before {
    content: '✅';
    position: absolute;
    left: 0;
}

.cons-card li::before {
    content: '❌';
    position: absolute;
    left: 0;
}

/* Mini Reviews */
.mini-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.review-card {
    background: var(--gradient-card);
    border-radius: var(--radius-md);
    padding: 25px;
    border: 1px solid var(--border-color);
}

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

.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.review-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.review-stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.review-date {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ========================================
   Changelog Section
   ======================================== */
.changelog-section {
    padding: 60px 0;
    background: var(--bg-primary);
}

.changelog-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.changelog-list {
    max-width: 800px;
}

.changelog-item {
    display: grid;
    grid-template-columns: 100px 100px 1fr;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.changelog-item:last-child {
    border-bottom: none;
}

.changelog-date {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.changelog-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.changelog-badge.bonus { background: hsla(45, 100%, 50%, 0.2); color: var(--accent-gold); }
.changelog-badge.payout { background: hsla(165, 100%, 42%, 0.2); color: var(--accent-green); }
.changelog-badge.games { background: hsla(280, 100%, 65%, 0.2); color: var(--accent-neon); }
.changelog-badge.withdraw { background: hsla(18, 100%, 57%, 0.2); color: var(--accent-primary); }

.changelog-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ========================================
   Payment Section
   ======================================== */
.payment-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.payment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.payment-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.payment-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.payment-text p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.payment-text h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.payment-methods-list {
    margin-bottom: 25px;
}

.payment-methods-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.payment-methods-list li:last-child {
    border-bottom: none;
}

.payment-methods-list strong {
    color: var(--text-primary);
}

/* ========================================
   Gallery Grid
   ======================================== */
.gallery-section {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}


/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--gradient-card);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: hsla(18, 100%, 57%, 0.3);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.02rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent-primary);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.85rem;
    border: 1px solid var(--border-color);
}

.age-badge span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: var(--accent-red);
    border-radius: 50%;
    color: white;
    font-weight: 700;
}

/* ========================================
   Login Page
   ======================================== */
.login-section {
    padding: 100px 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.login-page-section {
    padding: 60px 0;
    background: var(--bg-secondary);
}

.login-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.login-container {
    max-width: 450px;
    margin: 0 auto;
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1, .login-header h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.login-header p {
    color: var(--text-secondary);
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.login-form input {
    width: 100%;
    padding: 15px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.login-form input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px hsla(18, 100%, 57%, 0.1);
}

.login-form .form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 10px;
}

.login-form .remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    cursor: pointer;
}

.login-form .forgot-password {
    color: var(--accent-primary);
}

.login-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.login-footer a {
    color: var(--accent-primary);
    font-weight: 600;
}

.login-side-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 500px;
}

.login-side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.login-side-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, hsla(0, 0%, 0%, 0.95));
}

.login-side-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.login-side-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.login-side-content li {
    padding: 8px 0;
    color: var(--text-secondary);
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-button);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* ========================================
   Experience Section
   ======================================== */
.experience-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
}

.experience-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.experience-content h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    margin: 35px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-primary);
    display: inline-block;
}

.experience-content ul {
    margin: 15px 0 25px;
}

.experience-content li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.experience-content li:last-child {
    border-bottom: none;
}

.experience-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.experience-content li strong {
    color: var(--text-primary);
}

/* ========================================
   Comparison Section
   ======================================== */
.comparison-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.comparison-content {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-content > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.02rem;
}

.comparison-content > p strong {
    color: var(--accent-primary);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.comparison-card {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.comparison-card:hover {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.comparison-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-primary);
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.comparison-card li:last-child {
    border-bottom: none;
}

.comparison-card li strong {
    color: var(--text-primary);
}

/* ========================================
   Responsible Gaming Section
   ======================================== */
.responsible-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 3px solid var(--accent-red);
}

.responsible-content {
    max-width: 800px;
    margin: 0 auto;
}

.responsible-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.responsible-content ul {
    margin: 20px 0;
}

.responsible-content li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.responsible-content li:last-child {
    border-bottom: none;
}

.responsible-content li::before {
    content: '⚠️';
    position: absolute;
    left: 0;
}

.responsible-content li strong {
    color: var(--accent-primary);
}

/* ========================================
   Strategy Section (Bonus page)
   ======================================== */
.strategy-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.strategy-content {
    max-width: 900px;
    margin: 0 auto;
}

.strategy-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.strategy-content h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin: 30px 0 15px;
}

.strategy-content ul {
    margin: 15px 0 25px;
}

.strategy-content li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.strategy-content li:last-child {
    border-bottom: none;
}

.strategy-content li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

.strategy-content li strong {
    color: var(--text-primary);
}

/* ========================================
   Bonus Compare Section
   ======================================== */
.bonus-compare-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

/* ========================================
   Install Guide Section (App page)
   ======================================== */
.install-guide-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.guide-content {
    max-width: 900px;
    margin: 0 auto;
}

.guide-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.guide-content h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin: 30px 0 15px;
}

.guide-content ul {
    margin: 15px 0 25px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 20px 20px 20px 45px;
}

.guide-content li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.guide-content li:last-child {
    border-bottom: none;
}

.guide-content li strong {
    color: var(--accent-primary);
}

/* ========================================
   Benefits Section (Login page)
   ======================================== */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.benefits-content {
    max-width: 1000px;
    margin: 0 auto;
}

.benefits-content > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.benefit-item {
    background: var(--gradient-card);
    border-radius: var(--radius-md);
    padding: 25px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-3px);
}

.benefit-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.benefit-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   Guide Section (Login page)
   ======================================== */
.guide-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

/* ========================================
   Security Section (Login page)
   ======================================== */
.security-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.security-content {
    max-width: 800px;
    margin: 0 auto;
}

.security-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.security-content ul {
    margin: 20px 0;
}

.security-content li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.security-content li:last-child {
    border-bottom: none;
}

.security-content li::before {
    content: '🔒';
    position: absolute;
    left: 0;
}

.security-content li strong {
    color: var(--accent-primary);
}

/* ========================================
   Exhaustive FAQ
   ======================================== */
.faq-exhaustive {
    max-width: 800px;
    margin: 0 auto 40px;
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 35px;
    border: 2px solid var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.faq-main-question {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.4;
}

.faq-main-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 18px;
    font-size: 1rem;
}

.faq-checklist {
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-top: 25px;
    border: 1px solid var(--border-color);
}

.faq-checklist h4 {
    color: var(--accent-green);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-checklist ul {
    list-style: none;
}

.faq-checklist li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.faq-checklist li:last-child {
    border-bottom: none;
}

/* ========================================
   About Content (generic)
   ======================================== */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.about-content strong {
    color: var(--accent-primary);
}

/* ========================================
   Responsive Images (per TZ)
   ======================================== */
.img-responsive {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
}

.section-image {
    margin: 25px 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.hidden { display: none; }

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .about-grid,
    .payment-content,
    .games-showcase,
    .app-content {
        grid-template-columns: 1fr;
    }
    
    .app-content {
        text-align: center;
    }
    
    .app-text { order: 2; }
    .app-image { order: 1; }
    
    .app-buttons {
        justify-content: center;
    }
    
    .game-large {
        min-height: 300px;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .login-page-grid {
        grid-template-columns: 1fr;
    }
    
    .login-side-image {
        min-height: 350px;
        order: -1;
    }
    
    .changelog-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
    }
    
    .nav {
        order: 3;
        width: 100%;
        display: none;
        flex-direction: column;
        padding-top: 15px;
    }
    
    .nav.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-link {
        display: block;
        text-align: center;
        padding: 15px;
    }
    
    .lang-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        justify-content: center;
        padding-top: 15px;
        border-top: 1px solid var(--border-color);
        width: 100%;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 50px 0;
        min-height: 200px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .bonus-value {
        font-size: 1.6rem;
    }
    
    .bonus-box {
        padding: 20px 25px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .features-grid,
    .bonus-cards {
        grid-template-columns: 1fr;
    }
    
    .games-grid-small {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 20px;
    }
    
    .toc {
        padding: 20px;
    }
    
    .rating-score {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }
    
    .rating-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .cta-btn {
        padding: 14px 25px;
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .app-btn {
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .faq-exhaustive {
        padding: 25px 20px;
    }
    
    .faq-main-question {
        font-size: 1.15rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive for new sections */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-content h3,
    .strategy-content h3,
    .guide-content h3 {
        font-size: 1.1rem;
    }
    
    .faq-exhaustive {
        padding: 25px;
        margin: 0 auto 30px;
    }
    
    .faq-main-question {
        font-size: 1.2rem;
    }
    
    .faq-checklist {
        padding: 20px 15px;
    }
}
