/* ============================================
   Best Online Casino Games - Minimalist Light Theme
   Clean, Modern, Professional Design
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Fraunces:wght@400;500;600;700&display=swap');

/* CSS Variables - Light Minimalist Theme */
:root {
    --primary: #2563EB;
    --primary-light: #3B82F6;
    --primary-dark: #1D4ED8;
    --accent: #F59E0B;
    --accent-light: #FBBF24;
    
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --bg-card: #FFFFFF;
    
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    
    --border-light: #E2E8F0;
    --border-medium: #CBD5E1;
    
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.03);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.05), 0 10px 10px -5px rgba(0,0,0,0.02);
    
    --transition: 0.2s ease;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-secondary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }

p { 
    color: var(--text-secondary); 
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

p:last-child { margin-bottom: 0; }

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

a:hover { color: var(--primary-dark); }

ul, ol {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

li { margin-bottom: 0.35rem; }

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Header */
.header {
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
}

.logo i {
    color: var(--accent);
    font-size: 1.25rem;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #94A3B8;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.35rem 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-links a i {
    font-size: 0.8rem;
    opacity: 0.7;
    transition: var(--transition);
}

.nav-links a:hover i,
.nav-links a.active i {
    opacity: 1;
    color: var(--accent);
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
    border-bottom-color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: white;
    transition: var(--transition);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb i { font-size: 0.6rem; }

/* Hero Section */
.hero {
    background: var(--bg-primary);
    padding: 2.5rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-badge i { color: var(--accent); font-size: 0.7rem; }

.hero h1 {
    margin-bottom: 0.75rem;
}

.hero h1 .highlight {
    color: var(--primary);
}

.hero-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Game Hero (individual game pages) */
.game-hero {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: 3rem 1.25rem 2.5rem;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

/* Floating Game Symbols */
.game-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.18;
    animation: floatParticle 15s infinite ease-in-out;
    color: var(--primary);
}

/* Left side particles */
.particle:nth-of-type(1) { left: 3%; top: 15%; animation-delay: 0s; font-size: 1.4rem; color: #3B82F6; }
.particle:nth-of-type(2) { left: 8%; top: 50%; animation-delay: -2s; font-size: 1.6rem; color: #F59E0B; }
.particle:nth-of-type(3) { left: 15%; top: 75%; animation-delay: -4s; font-size: 1.3rem; color: #22C55E; }
.particle:nth-of-type(4) { left: 22%; top: 25%; animation-delay: -6s; font-size: 1.5rem; color: #8B5CF6; }

/* Right side particles */
.particle:nth-of-type(5) { left: 78%; top: 20%; animation-delay: -8s; font-size: 1.5rem; color: #EC4899; }
.particle:nth-of-type(6) { left: 85%; top: 55%; animation-delay: -10s; font-size: 1.4rem; color: #3B82F6; }
.particle:nth-of-type(7) { left: 92%; top: 30%; animation-delay: -12s; font-size: 1.6rem; color: #F59E0B; }
.particle:nth-of-type(8) { left: 88%; top: 75%; animation-delay: -14s; font-size: 1.3rem; color: #22C55E; }

@keyframes floatParticle {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
        opacity: 0.1;
    }
    25% { 
        transform: translateY(-20px) rotate(15deg) scale(1.1); 
        opacity: 0.2;
    }
    50% { 
        transform: translateY(-10px) rotate(-10deg) scale(1); 
        opacity: 0.15;
    }
    75% { 
        transform: translateY(-25px) rotate(5deg) scale(1.05); 
        opacity: 0.2;
    }
}

/* Glowing Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.25;
    animation: pulseGlow 4s infinite ease-in-out;
}

.glow-orb.orb-1 {
    width: 120px;
    height: 120px;
    background: var(--primary);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.glow-orb.orb-2 {
    width: 100px;
    height: 100px;
    background: var(--accent);
    bottom: 10%;
    left: 15%;
    animation-delay: -2s;
}

.glow-orb.orb-3 {
    width: 140px;
    height: 140px;
    background: #8B5CF6;
    top: 20%;
    right: 8%;
    animation-delay: -1s;
}

.glow-orb.orb-4 {
    width: 90px;
    height: 90px;
    background: #22C55E;
    bottom: 20%;
    right: 12%;
    animation-delay: -3s;
}

.glow-orb.orb-5 {
    width: 80px;
    height: 80px;
    background: #EC4899;
    top: 50%;
    left: 25%;
    animation-delay: -1.5s;
}

.glow-orb.orb-6 {
    width: 110px;
    height: 110px;
    background: #F59E0B;
    top: 40%;
    right: 20%;
    animation-delay: -2.5s;
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.2;
    }
    50% { 
        transform: scale(1.2); 
        opacity: 0.4;
    }
}

/* Crash Game Multiplier */
.crash-multiplier {
    position: absolute;
    left: 3%;
    top: 20%;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.12;
    text-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.crash-multiplier .multiplier-value {
    display: inline-block;
    animation: countUp 8s infinite ease-in-out;
}

.crash-multiplier::after {
    content: 'x';
    font-size: 1.5rem;
    margin-left: 2px;
}

@keyframes countUp {
    0%, 100% { opacity: 0.1; }
    10% { opacity: 0.15; }
    80% { opacity: 0.2; transform: scale(1.1); }
    85% { opacity: 0; transform: scale(0.9); }
}

/* Sparkle Stars */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    animation: sparkle 2s infinite ease-in-out;
}

.sparkle:nth-child(1) { left: 20%; top: 15%; animation-delay: 0s; }
.sparkle:nth-child(2) { left: 80%; top: 25%; animation-delay: -0.3s; }
.sparkle:nth-child(3) { left: 60%; top: 65%; animation-delay: -0.6s; }
.sparkle:nth-child(4) { left: 35%; top: 75%; animation-delay: -0.9s; }
.sparkle:nth-child(5) { left: 90%; top: 45%; animation-delay: -1.2s; }

@keyframes sparkle {
    0%, 100% { 
        transform: scale(0); 
        opacity: 0;
    }
    50% { 
        transform: scale(1); 
        opacity: 1;
        box-shadow: 0 0 10px var(--accent), 0 0 20px var(--accent);
    }
}

/* Hide decorations on mobile */
@media (max-width: 768px) {
    .crash-multiplier {
        display: none;
    }
    
    .glow-orb {
        opacity: 0.12;
        filter: blur(30px);
    }
    
    .glow-orb.orb-4,
    .glow-orb.orb-5,
    .glow-orb.orb-6 {
        display: none;
    }
    
    .particle {
        font-size: 1rem !important;
        opacity: 0.12;
    }
    
    .particle:nth-of-type(n+5) {
        display: none;
    }
}

.game-hero .container {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    max-width: 1100px;
}

.game-hero-logo {
    flex-shrink: 0;
    width: 100%;
    min-height: 120px;
    max-width: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 3px solid var(--bg-primary);
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-hero-logo img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    display: block;
    border-radius: var(--radius-sm);
}

.game-hero-content {
    flex: 1;
    text-align: left;
}

.game-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.game-hero .hero-badge {
    margin-bottom: 0.75rem;
}

.game-hero .hero-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    max-width: 600px;
}

.game-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.game-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: var(--bg-primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.game-meta-item i { 
    color: var(--primary);
    font-size: 0.75rem;
}

.game-meta-item span {
    display: none;
}

.game-meta-item strong { 
    color: var(--text-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .game-hero {
        padding: 2rem 1rem 1.5rem;
    }
    
    .game-hero .container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .game-hero-logo {
        width: 100%;
        height: auto;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .game-hero-content {
        text-align: center;
    }
    
    .game-hero h1 {
        font-size: 1.75rem;
    }
    
    .game-hero .hero-description {
        font-size: 0.9rem;
    }
    
    .game-meta {
        justify-content: center;
    }
    
    .game-meta-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
}

.btn-secondary:hover {
    background: var(--border-light);
    color: var(--text-primary);
}

.btn-small {
    padding: 0.4rem 0.85rem;
    font-size: 0.7rem;
}

.btn i { font-size: 0.8rem; }

/* Sections */
.section {
    padding: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-header h2 {
    margin-bottom: 0.35rem;
}

.section-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 550px;
    margin: 0 auto;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1rem;
    text-align: center;
}

.stat-card i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* Content Section */
.content-section {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.content-section h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.15rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.content-section h2 i {
    color: var(--primary);
    font-size: 1rem;
}

.content-section h3 {
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

/* About Guide Section */
.about-guide {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-intro {
    display: flex;
    gap: 1.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    align-items: flex-start;
}

.about-intro-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-intro-content h2 {
    font-size: 1.3rem;
    margin: 0 0 0.75rem 0;
}

.about-intro-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

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

.about-feature-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.about-feature-card:nth-child(1) .about-feature-icon {
    background: #DBEAFE;
    color: #2563EB;
}

.about-feature-card:nth-child(2) .about-feature-icon {
    background: #FEF3C7;
    color: #D97706;
}

.about-feature-card:nth-child(3) .about-feature-icon {
    background: #D1FAE5;
    color: #059669;
}

.about-feature-card h4 {
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
    font-family: var(--font-body);
}

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

.about-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.trust-badge i {
    color: var(--primary);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .about-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .about-intro-icon {
        margin: 0 auto;
    }
    
    .about-trust {
        gap: 0.75rem;
    }
    
    .trust-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Rating Table */
.rating-table {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.rating-table-header {
    display: grid;
    grid-template-columns: 50px 2fr 1fr 1fr 80px 100px;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.rating-row {
    display: grid;
    grid-template-columns: 50px 2fr 1fr 1fr 80px 100px;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.85rem;
}

.rating-row:last-child { border-bottom: none; }

.rating-row:hover { background: var(--bg-secondary); }

.rating-rank {
    width: 28px;
    height: 28px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.rating-row:nth-child(2) .rating-rank { background: #FEF3C7; color: #B45309; }
.rating-row:nth-child(3) .rating-rank { background: #E5E7EB; color: #374151; }
.rating-row:nth-child(4) .rating-rank { background: #FED7AA; color: #C2410C; }

.rating-game {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-game-icon {
    width: 36px;
    height: 36px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.9rem;
}

.rating-game-info h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.1rem;
}

.rating-game-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.text-gold { color: var(--accent); font-weight: 600; }

/* Rating Info Section */
.rating-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.rating-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.rating-info-card {
    display: flex;
    gap: 1rem;
    background: var(--bg-secondary);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.rating-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.rating-info-content h4 {
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
    font-family: var(--font-body);
}

.rating-info-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.rating-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: var(--radius-md);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.highlight-item i {
    color: #22C55E;
    font-size: 1rem;
}

.highlight-item strong {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .rating-info-card {
        flex-direction: column;
        text-align: center;
    }
    
    .rating-info-icon {
        margin: 0 auto;
    }
    
    .rating-highlights {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.45rem 0.9rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.filter-tab:hover { border-color: var(--primary); color: var(--primary); }

.filter-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Filter Dropdown */
.filter-dropdown {
    position: relative;
}

.filter-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-dropdown-btn i {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}

.filter-dropdown.open .filter-dropdown-btn i {
    transform: rotate(180deg);
}

.filter-dropdown-btn.has-selection {
    background: var(--primary-light);
    border-color: var(--primary-light);
    color: white;
}

.filter-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 180px;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 50;
    max-height: 300px;
    overflow-y: auto;
}

.filter-dropdown.open .filter-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.filter-dropdown-item {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    text-align: left;
    background: none;
    border: none;
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.filter-dropdown-item:hover {
    background: var(--bg-tertiary);
    color: var(--primary);
}

.filter-dropdown-item.active {
    background: var(--primary);
    color: white;
}

.filter-dropdown-item:first-child {
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 0.25rem;
    padding-bottom: 0.65rem;
}

@media (max-width: 480px) {
    .filter-dropdown-menu {
        min-width: 160px;
        right: 0;
        left: auto;
    }
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

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

.game-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.game-card-image {
    height: 150px;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.game-card-image i {
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
}

.game-rank {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--bg-primary);
    color: var(--text-secondary);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
}

.game-category {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--primary);
    color: white;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
}

.game-card-content {
    padding: 1rem;
}

.game-card-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.game-card-provider {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.game-card-provider i { margin-right: 0.25rem; }

.game-card-stats {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.game-stat {
    flex: 1;
    text-align: center;
}

.game-stat-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.game-stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.game-card-actions {
    display: flex;
    gap: 0.5rem;
}

.game-card-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 0.4rem;
    font-size: 0.75rem;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.feature-item {
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    padding: 1rem;
    text-align: center;
}

.feature-item i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-item img.provider-logo {
    height: 32px;
    width: auto;
    max-width: 100%;
    margin-bottom: 0.5rem;
    object-fit: contain;
}

.feature-item h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.feature-item p {
    font-size: 0.8rem;
    margin: 0;
}

/* Game Types Cards */
.game-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.game-type-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-type-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.game-type-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.game-type-header.slots { background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%); }
.game-type-header.megaways { background: linear-gradient(135deg, #EC4899 0%, #BE185D 100%); }
.game-type-header.crash { background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%); }
.game-type-header.table { background: linear-gradient(135deg, #10B981 0%, #059669 100%); }
.game-type-header.classic { background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%); }

.game-type-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.game-type-title h3 {
    font-size: 1.1rem;
    margin: 0 0 0.25rem 0;
    color: white;
}

.game-type-title span {
    font-size: 0.8rem;
    opacity: 0.9;
}

.game-type-body {
    padding: 1.25rem;
}

.game-type-body p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.game-type-body p:last-of-type {
    margin-bottom: 0;
}

.game-type-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-light);
}

.type-stat {
    text-align: center;
}

.type-stat-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.type-stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.game-type-examples {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.example-game {
    background: var(--bg-secondary);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.example-game i {
    font-size: 0.65rem;
    color: var(--primary);
}

/* How to Choose Section */
.choose-guide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.choose-intro {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0efff 100%);
    border: 1px solid rgba(37, 99, 235, 0.15);
    padding: 2rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.choose-intro-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.choose-intro-text h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.choose-intro-text p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.choose-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.choose-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.choose-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.choose-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.choose-card-icon.rtp { background: #DBEAFE; color: #2563EB; }
.choose-card-icon.volatility { background: #FEF3C7; color: #D97706; }
.choose-card-icon.theme { background: #D1FAE5; color: #059669; }
.choose-card-icon.budget { background: #FCE7F3; color: #DB2777; }

.choose-card-header h4 {
    font-size: 1rem;
    margin: 0;
}

.choose-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
    color: var(--text-secondary);
}

.choose-card p:last-child {
    margin-bottom: 0;
}

.choose-tip {
    background: var(--bg-secondary);
    border-left: 3px solid var(--primary);
    padding: 0.75rem 1rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-top: 1rem;
}

.choose-tip strong {
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.25rem;
}

.choose-tip span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .choose-guide {
        grid-template-columns: 1fr;
    }
    
    .choose-intro {
        flex-direction: column;
        text-align: center;
    }
    
    .choose-intro-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .game-types-grid {
        grid-template-columns: 1fr;
    }
    
    .game-type-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Demo Section */
.demo-section {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
}

.demo-section h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.demo-section h2 i { color: var(--primary); }

.demo-placeholder {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border: 2px dashed var(--border-medium);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.demo-placeholder .demo-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.demo-placeholder .demo-icon i {
    font-size: 2.5rem;
    color: white;
    opacity: 1;
    margin: 0;
}

.demo-placeholder h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.demo-placeholder p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 400px;
    font-size: 0.9rem;
}

.demo-placeholder .btn {
    padding: 0.85rem 2rem;
    font-size: 1rem;
}

.demo-placeholder .demo-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: left;
}

.demo-placeholder .demo-overlay .demo-icon {
    margin-bottom: 1rem;
}

/* Info Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.info-table tr { border-bottom: 1px solid var(--border-light); }
.info-table tr:last-child { border-bottom: none; }

.info-table th,
.info-table td {
    padding: 0.6rem 0;
    text-align: left;
}

.info-table th {
    color: var(--text-muted);
    font-weight: 500;
    width: 40%;
}

.info-table td {
    color: var(--text-primary);
    font-weight: 500;
}

/* Responsible Gaming */
.responsible-gaming {
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    border-left: 3px solid var(--warning);
}

.responsible-gaming h4 {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
}

.responsible-gaming h4 i { color: var(--warning); }

.responsible-gaming p {
    font-size: 0.8rem;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.faq-section h2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.faq-section h2 i { color: var(--primary); }

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    transition: var(--transition);
}

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

.faq-question i {
    font-size: 0.75rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 0 0.85rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    color: #E2E8F0;
    padding: 0;
    margin-top: 3rem;
}

.footer-top {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 2rem 1.25rem;
    text-align: center;
}

.footer-top h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-top p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-top .btn {
    background: white;
    color: var(--primary);
    font-weight: 600;
}

.footer-top .btn:hover {
    background: #F1F5F9;
    color: var(--primary-dark);
}

.footer-main {
    padding: 3rem 1.25rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
    color: white;
}

.footer-brand .logo i {
    color: var(--accent);
}

.footer-brand > p {
    font-size: 0.85rem;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: #94A3B8;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-links a i {
    font-size: 0.7rem;
    opacity: 0;
    transition: var(--transition);
}

.footer-links a:hover i {
    opacity: 1;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #94A3B8;
}

.footer-badge i {
    color: var(--success);
    font-size: 0.7rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.25rem 1.25rem;
}

.footer-bottom-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #64748B;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    color: #64748B;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: white;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #EF4444;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    margin-right: 0.5rem;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        order: -1;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 99;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top i { font-size: 0.9rem; }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.4s ease;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .rating-table-header,
    .rating-row {
        grid-template-columns: 40px 1.5fr 1fr 80px;
    }
    
    .rating-table-header span:nth-child(3),
    .rating-table-header span:nth-child(4),
    .rating-row > div:nth-child(3),
    .rating-row > div:nth-child(4) {
        display: none;
    }
}

@media (max-width: 768px) {
    html { font-size: 14px; }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active { display: flex; }
    
    .menu-toggle { display: flex; }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero { padding: 2rem 1rem; }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    /* Game Hero Mobile */
    .game-hero .container {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .game-hero-logo img {
        max-height: 280px;
    }
    
    .game-hero h1 {
        font-size: 1.75rem;
    }
    
    .game-meta {
        justify-content: center;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-card-image {
        height: 250px;
    }
    
    .game-card-image img {
        height: 250px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        order: -1;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .rating-table-header,
    .rating-row {
        grid-template-columns: 35px 1fr 70px;
    }
    
    .rating-table-header span:nth-child(5),
    .rating-row > div:nth-child(5) {
        display: none;
    }
    
    .filter-tabs {
        justify-content: center;
    }
}

/* Game Page SEO Content Styles */
.game-intro-banner {
    display: flex;
    gap: 1.25rem;
    background: linear-gradient(135deg, #FEF3C7 0%, #FFFBEB 100%);
    border: 1px solid #F59E0B;
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.game-intro-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.game-intro-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.game-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.game-feature-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.game-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.game-feature-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 0.75rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: #DBEAFE;
    color: #2563EB;
}

.game-feature-card:nth-child(2) .game-feature-icon {
    background: #FCE7F3;
    color: #DB2777;
}

.game-feature-card:nth-child(3) .game-feature-icon {
    background: #D1FAE5;
    color: #059669;
}

.game-feature-card:nth-child(4) .game-feature-icon {
    background: #FEF3C7;
    color: #D97706;
}

.game-feature-card h4 {
    font-size: 0.9rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.game-feature-card p {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

.legitimacy-box {
    background: #ECFDF5;
    border: 1px solid #10B981;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 1.5rem;
}

.legitimacy-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #D1FAE5;
    border-bottom: 1px solid #10B981;
}

.legitimacy-header i {
    font-size: 1.3rem;
    color: #059669;
}

.legitimacy-header h3 {
    font-size: 1rem;
    margin: 0;
    color: #065F46;
}

.legitimacy-content {
    padding: 1.25rem;
}

.legitimacy-content p {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #065F46;
    font-weight: 500;
}

.trust-indicators i {
    color: #10B981;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 1.25rem 0;
}

.download-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: border-color 0.2s ease;
}

.download-option:hover {
    border-color: var(--primary);
}

.download-option > i {
    font-size: 1.5rem;
    color: var(--primary);
}

.download-option-text {
    display: flex;
    flex-direction: column;
}

.download-option-text strong {
    font-size: 0.85rem;
    color: var(--text-primary);
}

.download-option-text span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.login-steps-box {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-top: 1.5rem;
}

.login-steps-box h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    margin: 0 0 0.75rem 0;
    color: var(--text-primary);
}

.login-steps-box h3 i {
    color: var(--primary);
}

.login-steps-box > p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
}

.steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-primary);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

.step-number {
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-text {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .game-intro-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .game-intro-icon {
        margin: 0 auto;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .download-options {
        grid-template-columns: 1fr;
    }
    
    .steps-list {
        grid-template-columns: 1fr;
    }
}

/* Warning Box */
.warning-box {
    display: flex;
    gap: 1rem;
    background: #FEF2F2;
    border: 1px solid #EF4444;
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin: 1rem 0;
    align-items: flex-start;
}

.warning-box > i {
    color: #EF4444;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.warning-box p {
    margin: 0;
    font-size: 0.85rem;
    color: #991B1B;
    line-height: 1.5;
}

/* Feature Highlight Box */
.feature-highlight-box {
    display: flex;
    gap: 1.25rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin: 1.5rem 0;
    align-items: flex-start;
}

.feature-highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-highlight-content h4 {
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.feature-highlight-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Info Box */
.info-box {
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin: 1.5rem 0;
}

.info-box-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
}

.info-box-header i {
    color: var(--primary);
    font-size: 1.1rem;
}

.info-box-header h4 {
    font-size: 0.95rem;
    margin: 0;
    color: var(--text-primary);
}

.info-box-content {
    padding: 1.25rem;
}

.info-box-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 0.75rem 0;
}

.info-box-content p:last-child {
    margin-bottom: 0;
}

/* Payment Methods Box */
.payment-methods-box {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.payment-methods-box > h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.payment-methods-box > h4 i {
    color: var(--primary);
}

.payment-methods-box > p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.payment-method i {
    font-size: 1.1rem;
    color: var(--primary);
}

/* Info Highlight */
.info-highlight {
    display: flex;
    gap: 1rem;
    background: #EFF6FF;
    border: 1px solid #3B82F6;
    border-left-width: 4px;
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin: 1.5rem 0;
    align-items: flex-start;
}

.info-highlight > i {
    color: #3B82F6;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.info-highlight p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .feature-highlight-box {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-highlight-icon {
        margin: 0 auto;
    }
    
    .warning-box,
    .info-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .warning-box > i,
    .info-highlight > i {
        margin: 0 auto;
    }
}

/* Browser Preview Section */
.browser-preview-section {
    margin-bottom: 2rem;
}

.browser-preview-section .section-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.browser-frame {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25), 0 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin: 0 auto;
}

.browser-header {
    background: linear-gradient(180deg, #3d3d3d 0%, #2d2d2d 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #1a1a1a;
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #ff5f57;
    box-shadow: 0 0 8px rgba(255, 95, 87, 0.4);
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
    box-shadow: 0 0 8px rgba(255, 189, 46, 0.4);
}

.browser-dots span:nth-child(3) {
    background: #28c840;
    box-shadow: 0 0 8px rgba(40, 200, 64, 0.4);
}

.browser-url {
    flex: 1;
    background: #1a1a1a;
    border-radius: 6px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.browser-url i {
    color: #28c840;
    font-size: 0.75rem;
}

.browser-url span {
    color: #888;
    font-size: 0.85rem;
    font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
}

.browser-url .url-domain {
    color: #e0e0e0;
}

.browser-content {
    position: relative;
    background: #000;
}

.browser-content img {
    width: 100%;
    height: auto;
    display: block;
}

.browser-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 2rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.browser-overlay .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .browser-frame {
        border-radius: 8px;
        margin: 0 -1rem;
    }
    
    .browser-header {
        padding: 10px 12px;
    }
    
    .browser-dots span {
        width: 10px;
        height: 10px;
    }
    
    .browser-url {
        padding: 6px 10px;
    }
    
    .browser-url span {
        font-size: 0.75rem;
    }
    
    .browser-overlay {
        padding: 1.5rem;
    }
    
    .browser-overlay .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Games Search and Sort Controls */
.games-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    max-width: 400px;
    min-width: 250px;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.search-box input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 2.75rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: var(--transition);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-clear {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    display: none;
    transition: var(--transition);
}

.search-clear:hover {
    color: var(--text-primary);
}

.search-clear.visible {
    display: block;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.sort-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.85rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.sort-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.sort-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.sort-btn i {
    font-size: 0.85rem;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

.no-results i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.no-results p {
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .games-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .sort-controls {
        justify-content: center;
    }
}

/* Table of Contents */
.toc-section {
    padding: 2rem 0;
}

.toc-wrapper {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.toc-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--border-light);
}

.toc-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.toc-title h2 {
    margin: 0 0 0.25rem 0;
    font-size: 1.25rem;
}

.toc-title p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.toc-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.toc-item:hover {
    border-color: var(--primary);
    background: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.toc-item:hover::before {
    transform: scaleY(1);
}

.toc-item-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--border-medium);
    line-height: 1;
    transition: var(--transition);
}

.toc-item:hover .toc-item-number {
    color: var(--primary);
}

.toc-item-content {
    flex: 1;
    min-width: 0;
}

.toc-item-content h4 {
    margin: 0 0 0.2rem 0;
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toc-item-content p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.toc-item > i {
    color: var(--text-muted);
    font-size: 0.8rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.toc-item:hover > i {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary);
}

@media (max-width: 1100px) {
    .toc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .toc-wrapper {
        padding: 1.25rem;
    }
    
    .toc-header {
        flex-direction: column;
        text-align: center;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .toc-item {
        padding: 0.85rem 1rem;
    }
    
    .toc-item-number {
        font-size: 1.25rem;
    }
}

/* SEO Guide Section */
.seo-guide-section {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border-light);
}

.seo-guide-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-light);
}

.seo-guide-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.seo-guide-header h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
}

.seo-guide-subtitle {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.seo-guide-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.seo-text-block h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.seo-text-block h3 i {
    color: var(--primary);
    font-size: 1rem;
}

.seo-text-block p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.seo-text-block p:last-child {
    margin-bottom: 0;
}

.seo-highlight-box {
    display: flex;
    gap: 1.25rem;
    background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
    border: 1px solid #3B82F6;
    border-left-width: 4px;
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.seo-highlight-icon {
    width: 45px;
    height: 45px;
    background: #3B82F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.seo-highlight-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    color: #1E40AF;
}

.seo-highlight-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #1E3A8A;
    line-height: 1.6;
}

.seo-stats-row {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    justify-content: center;
    flex-wrap: wrap;
}

.seo-stat-item {
    text-align: center;
    min-width: 100px;
}

.seo-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.seo-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.seo-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.seo-column h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.seo-column h4 i {
    color: var(--success);
}

.seo-column h4 i.fa-exclamation-triangle {
    color: #EF4444;
}

.seo-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 1rem;
}

.seo-checklist li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.seo-checklist li:last-child {
    margin-bottom: 0;
}

.seo-checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--success);
    font-size: 0.8rem;
}

.seo-checklist.warning li::before {
    content: '\f071';
    color: #EF4444;
}

.seo-quote-box {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    position: relative;
    border-left: 4px solid var(--primary);
}

.seo-quote-box i {
    color: var(--primary);
    font-size: 1.5rem;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.seo-quote-box blockquote {
    margin: 0;
    padding-left: 2rem;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
}

.seo-quote-box cite {
    display: block;
    margin-top: 0.75rem;
    padding-left: 2rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: normal;
}

.seo-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.seo-info-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.seo-info-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.seo-info-card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    margin: 0 auto 0.75rem;
}

.seo-info-card h5 {
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
}

.seo-info-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.seo-cta-box {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    color: white;
}

.seo-cta-box h4 {
    color: white;
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
}

.seo-cta-box p {
    color: #94A3B8;
    margin: 0 0 1.25rem 0;
    font-size: 0.9rem;
}

.seo-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .seo-two-column {
        grid-template-columns: 1fr;
    }
    
    .seo-info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .seo-guide-section {
        padding: 1.5rem;
    }
    
    .seo-guide-header {
        flex-direction: column;
        text-align: center;
    }
    
    .seo-guide-icon {
        margin: 0 auto;
    }
    
    .seo-highlight-box {
        flex-direction: column;
        text-align: center;
    }
    
    .seo-highlight-icon {
        margin: 0 auto;
    }
    
    .seo-stats-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .seo-quote-box {
        padding: 1.25rem;
    }
    
    .seo-quote-box blockquote {
        padding-left: 0;
        padding-top: 1.5rem;
    }
    
    .seo-quote-box i {
        position: static;
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .seo-cta-buttons {
        flex-direction: column;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }