/* Root Variables - Modern Dark Casino Theme */
:root {
    /* Backgrounds */
    --bg-body: #0a0e1a;
    --bg-dark-1: #141b2d;
    --bg-dark-2: #1f2940;
    --bg-glass: rgba(20, 27, 45, 0.75);
    --bg-glass-strong: rgba(10, 14, 26, 0.92);
    
    /* Text */
    --text-white: #f8fafc;
    --text-gray: #b8c5d6;
    --text-muted: #7d8ba1;
    
    /* Accents */
    --accent-primary: #f97316; /* Orange */
    --accent-secondary: #ec4899; /* Pink */
    --accent-gold: #eab308; /* Yellow Gold */
    --accent-purple: #a855f7; /* Violet */
    --accent-success: #22c55e; /* Emerald */
    
    /* Gradients */
    --grad-primary: linear-gradient(135deg, #f97316, #ec4899);
    --grad-gold: linear-gradient(135deg, #eab308, #f59e0b);
    --grad-dark: linear-gradient(to bottom, #0a0e1a, #030508);
    
    /* Spacing & Borders */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --border-color: rgba(255, 255, 255, 0.08);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--bg-body);
    background-image: var(--grad-dark);
    color: var(--text-gray);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    max-width: 100vw;
}

/* Links */
a {
    text-decoration: none;
    color: var(--text-white);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-primary);
}

/* ================= GLOBAL HEADINGS ================= */
h1, h2, h3, h4, h5, h6 {
    color: #ffffff !important;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 30px;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
    color: #ffffff !important;
}

h2 {
    font-size: 1.8rem;
    color: #ffffff !important;
    border-bottom: 3px solid #06b6d4;
    padding-bottom: 10px;
    display: inline-block;
}

h3 {
    font-size: 1.4rem;
    color: #06b6d4 !important;
}

h4 {
    font-size: 1.1rem;
    color: #f59e0b !important;
}

/* ================= HERO PAGE SECTION ================= */
.hero-page {
    margin-top: 80px;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(6, 182, 212, 0.1) 50%, rgba(16, 185, 129, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 40%),
                radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.hero-page-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-page h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.hero-page-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-page-subtitle strong {
    color: #06b6d4;
}

/* Hero Button - Yellow Color */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000 !important;
    background: linear-gradient(135deg, #fde047 0%, #facc15 100%);
    border: 2px solid #eab308;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(250, 204, 21, 0.4);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(250, 204, 21, 0.6);
    background: linear-gradient(135deg, #facc15 0%, #eab308 100%);
    color: #000000 !important;
}

/* Responsive Hero Page */
@media (max-width: 768px) {
    .hero-page {
        padding: 60px 0;
        margin-top: 80px;
    }
    
    .hero-page h1 {
        font-size: 2.2rem;
    }
    
    .hero-page-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .btn-hero {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-page h1 {
        font-size: 1.8rem;
    }
    
    .hero-page-subtitle {
        font-size: 0.95rem;
    }
    
    .btn-hero {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

/* ================= MAIN CONTENT OFFSET FOR FIXED HEADER ================= */
/* All sections need top margin to not be hidden under fixed header */
body > section:first-of-type,
main > section:first-of-type,
.hero,
.game-section,
.content:first-of-type {
    margin-top: 100px !important;
    padding-top: 20px;
}

/* For pages without hero - general section offset */
section {
    scroll-margin-top: 100px; /* For anchor links */
}

/* Specific page sections that come right after header */
.game-section {
    margin-top: 100px !important;
}

/* Game Wrapper and Demo Image */
.game-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.game-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 100%;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    width: 100%;
    max-width: 320px;
}

.overlay-buttons .btn {
    width: 100%;
    text-align: center;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* ================= HEADER ================= */
.header {
    background: var(--bg-glass-strong);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo img {
    height: 40px;
    width: auto;
}

/* Desktop Navigation */
.nav {
    display: flex;
    gap: 25px;
    margin: 0 20px;
}

.nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
    padding: 5px 0;
}

.nav a:hover {
    color: var(--text-white);
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav a:hover::after {
    width: 100%;
}

/* Header Action Button */
.header-btn {
    padding: 10px 24px !important;
    font-size: 14px !important;
    background: linear-gradient(135deg, #fde047 0%, #facc15 100%) !important;
    color: #000000 !important;
    border: 2px solid #eab308 !important;
    border-radius: 25px !important;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4) !important;
}

.header-btn:hover {
    background: linear-gradient(135deg, #facc15 0%, #eab308 100%) !important;
    box-shadow: 0 6px 20px rgba(250, 204, 21, 0.6) !important;
    color: #000000 !important;
}

/* Header Button Mobile - Hide on mobile */
@media (max-width: 900px) {
    .header-btn {
        display: none !important;
    }
}

/* Burger Menu */
.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-white);
    position: absolute;
    left: 0;
    transition: 0.3s;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }

/* Burger Active State - Transform to X */
.burger.active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

/* Breadcrumbs */
.breadcrumbs {
    background: var(--bg-dark-1);
    border-bottom: none;
    padding: 6px 0;
    margin-top: 80px;
    margin-bottom: -70px;
}

.breadcrumbs + .hero {
    margin-top: 0;
    padding-top: 10px;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

.breadcrumb-item a {
    color: var(--text-gray);
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: var(--accent-primary);
}

.breadcrumb-item:not(:last-child)::after {
    content: '›';
    margin-left: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.breadcrumb-item.active {
    color: var(--text-white);
    font-weight: 500;
}

@media (max-width: 768px) {
    .breadcrumbs {
        padding: 5px 0;
    }
    
    .breadcrumb-list {
        font-size: 12px;
        gap: 5px;
    }
    
    .breadcrumb-item:not(:last-child)::after {
        margin-left: 5px;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-dark-1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    border-bottom: 1px solid var(--border-color);
    visibility: hidden;
}

.mobile-menu.active {
    transform: translateY(0);
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-nav a {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    font-size: 16px;
}

/* ================= BUTTONS ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    background: linear-gradient(145deg, #f97316 0%, #ea580c 50%, #dc2626 100%);
    color: #ffffff !important;
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.5);
}

.btn-primary {
    background: linear-gradient(145deg, #f97316 0%, #ea580c 50%, #dc2626 100%);
    color: #ffffff !important;
}

.btn-large {
    font-size: 17px;
    padding: 18px 44px;
    width: 100%;
    max-width: 420px;
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.65);
    background: linear-gradient(145deg, #fb923c 0%, #f97316 50%, #ea580c 100%);
    color: #ffffff !important;
}

/* ================= HERO SECTION ================= */
.hero {
    padding: 0 0 35px;
    margin-top: -10px;
    background: radial-gradient(ellipse at 30% 10%, rgba(249, 115, 22, 0.15), transparent 45%),
                radial-gradient(ellipse at 90% 90%, rgba(168, 85, 247, 0.1), transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
}

.hero-image-wrapper {
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

/* Hero Text */
.hero-text h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #ffffff !important;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Game Stats Grid */
.game-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.info-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    padding: 15px;
    border-radius: var(--radius-sm);
    transition: 0.3s;
}

.info-card:hover {
    background: var(--bg-dark-2);
    border-color: var(--accent-primary);
}

.info-label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 5px;
}

.info-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
}

/* ================= TABLE OF CONTENTS ================= */
.toc-section {
    padding: 25px 0;
}

.toc-wrapper {
    background: var(--bg-dark-1);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.toc-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: var(--bg-dark-2);
    border: none;
    color: var(--text-white);
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.toc-toggle:hover {
    background: #3f5066;
}

.toc-toggle .toc-arrow {
    transition: transform 0.3s ease;
}

.toc-toggle.active .toc-arrow {
    transform: rotate(180deg);
}

.toc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: var(--bg-glass);
    padding: 0 25px;
}

.toc-content.active {
    max-height: 500px;
    padding: 25px;
}

.toc-content h3 {
    margin-bottom: 15px;
    color: var(--accent-primary);
    font-size: 18px;
}

.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.toc-list li a {
    display: block;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-sm);
    color: var(--text-gray);
    font-size: 14px;
    border-left: 3px solid transparent;
}

.toc-list li a:hover {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-primary);
    border-left-color: var(--accent-primary);
}

/* ================= CASINO CARDS ================= */
.casino-selection {
    padding: 35px 0;
}

.casino-selection h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff !important;
    font-size: 2rem;
}

.casino-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 880px;
    margin: 0 auto;
}

.casino-card {
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    align-items: center;
    background: linear-gradient(175deg, var(--bg-dark-2) 0%, var(--bg-dark-1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px 20px;
    gap: 20px;
    transition: 0.3s ease;
}

.casino-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(249, 115, 22, 0.2);
}

.casino-image img {
    width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

.casino-info p {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.bonus-title {
    font-size: 12px;
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
}

.bonus-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-white);
}

/* ================= CONTENT SECTIONS ================= */
.content {
    padding: 40px 0 35px;
}

.content .container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 18px;
    text-align: center;
}

/* Content Headings - Выделение заголовков */
.content h1, .content h2, .content h3, .content h4 {
    color: var(--text-white) !important;
    margin-top: 35px;
    margin-bottom: 18px;
    text-align: center;
}

.content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fb923c !important;
    padding-bottom: 12px;
    position: relative;
    display: block;
}

.content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-purple));
    border-radius: 2px;
}

.content h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--accent-primary) !important;
    margin-top: 30px;
    position: relative;
    padding-left: 0;
    text-align: center;
}

.content h3::before {
    display: none;
}

.content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #e2e8f0 !important;
    text-align: center;
    margin-top: 24px;
}

/* Content Text - Центрирование текста */
.content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray) !important;
    margin-bottom: 20px;
    text-align: center;
}

.content > .container > p:first-of-type {
    font-size: 19px;
    color: #cbd5e1 !important;
    text-align: center;
    margin-bottom: 30px;
}

/* Content Lists */
.content ul, .content ol {
    padding-left: 30px;
    margin: 25px auto;
    max-width: 700px;
    text-align: left;
    display: inline-block;
}

.content li {
    font-size: 17px;
    color: var(--text-gray) !important;
    margin-bottom: 12px;
    line-height: 1.7;
}

.content ul li {
    list-style: none;
    position: relative;
    padding-left: 25px;
}

.content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

.content ol {
    counter-reset: item;
    list-style: none;
}

.content ol li {
    counter-increment: item;
    position: relative;
    padding-left: 40px;
}

.content ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--accent-primary), #d97706);
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content strong { color: var(--text-white) !important; }

/* Content Images - Центрирование изображений */
.content-image {
    text-align: center;
    margin: 40px auto;
}

.content-image img {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: var(--radius-lg);
    margin: 0 auto;
    display: block;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}

.content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: var(--radius-md);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Content CTA Button - Центрирование кнопок */
.content-cta {
    text-align: center;
    margin: 40px 0;
}

.content-cta .btn {
    display: inline-block;
    margin: 0 auto;
}

/* Content Tables - Центрирование таблиц */
.content table {
    width: 100%;
    max-width: 100%;
    margin: 30px auto;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 0.9));
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
}

.content table th {
    background: linear-gradient(135deg, var(--accent-primary), #d97706);
    color: white;
    font-weight: 700;
    padding: 15px 20px;
    text-align: center;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content table td {
    padding: 15px 20px;
    color: #e2e8f0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.content table tr:last-child td {
    border-bottom: none;
}

.content table tr:hover td {
    background: rgba(245, 158, 11, 0.1);
}

/* Review Cards - Центрирование карточек отзывов */
.review-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95)) !important;
    padding: 25px !important;
    margin: 25px auto !important;
    max-width: 700px;
    border-radius: var(--radius-md) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.review-card .review-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center;
    margin-bottom: 15px !important;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.review-card .reviewer-name {
    color: var(--text-white) !important;
    font-weight: 600;
}

.review-card .review-rating {
    color: #fbbf24 !important;
    font-size: 18px;
}

.review-card .review-text {
    color: #cbd5e1 !important;
    font-style: italic;
    line-height: 1.7;
    text-align: left !important;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

/* Pros/Cons Grid */
.pros-cons-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 25px !important;
    margin: 40px 0;
}

.pros-col, .cons-col {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95)) !important;
    padding: 25px !important;
    border-radius: var(--radius-md) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

.pros-col {
    border-left: 4px solid #10b981 !important;
}

.cons-col {
    border-left: 4px solid #ef4444 !important;
}

.pros-col h3, .cons-col h3 {
    margin-top: 0 !important;
    padding-left: 0 !important;
    text-align: left !important;
}

.pros-col h3::before, .cons-col h3::before {
    display: none;
}

.pros-col ul, .cons-col ul {
    margin: 15px 0 0 0;
    padding-left: 20px;
}

.pros-col li, .cons-col li {
    color: #e2e8f0 !important;
}

/* Content Responsive */
@media (max-width: 768px) {
    .content {
        padding: 40px 0;
    }
    
    .content h2 {
        font-size: 26px;
    }
    
    .content h3 {
        font-size: 20px;
    }
    
    .content p {
        text-align: left;
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr !important;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= FOOTER ================= */
footer.footer {
    background: linear-gradient(135deg, #0c1222 0%, #1a0a2e 50%, #0f172a 100%);
    border-top: none;
    padding: 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #ec4899, #8b5cf6, #06b6d4);
    background-size: 300% 100%;
    animation: gradientMove 4s ease infinite;
}

@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

footer.footer::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Footer Main Content */
.footer-main {
    padding: 70px 0 50px;
    position: relative;
    z-index: 1;
}

/* Footer Content Grid */
footer .footer-content {
    display: grid !important;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Footer Columns */
footer .footer-col {
    display: flex;
    flex-direction: column;
}

/* Footer Logo & Brand */
footer .footer-logo {
    max-width: 160px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 20px rgba(249, 115, 22, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

footer .footer-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 30px rgba(249, 115, 22, 0.5));
}

footer .footer-col:first-child {
    padding-right: 40px;
}

.footer-description {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #94a3b8;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #f97316, #ec4899);
    border-color: transparent;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

/* Footer Headings */
footer .footer-col h4 {
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 0;
}

footer .footer-col h4::before {
    content: '';
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #f97316, #ec4899);
    border-radius: 2px;
    transform: rotate(45deg);
}

footer .footer-col h4::after {
    display: none;
}

/* Footer Links */
footer .footer-col ul {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

footer .footer-col ul li {
    list-style: none !important;
    margin-bottom: 14px;
    padding-left: 0;
}

footer .footer-col ul li::before {
    display: none !important;
}

footer .footer-col ul li::marker {
    display: none !important;
    content: none !important;
}

footer .footer-col ul li a {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 6px 0;
}

footer .footer-col ul li a::before {
    content: '';
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f97316, #ec4899);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
    border-radius: 1px;
}

footer .footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 0;
}

footer .footer-col ul li a:hover::before {
    width: 100%;
}

/* Footer Bottom */
footer .footer-bottom {
    padding: 28px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    margin-top: 0;
    position: relative;
    z-index: 1;
}

footer .footer-bottom p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

footer .footer-bottom a {
    color: #f97316;
    transition: color 0.3s ease;
}

footer .footer-bottom a:hover {
    color: #ec4899;
}

/* Age Badge */
.footer-age-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #f87171;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin-top: 12px;
}

/* Footer Responsive */
@media (max-width: 900px) {
    footer .footer-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px;
    }
    
    footer .footer-col:first-child {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
        align-items: center;
    }
    
    footer .footer-logo {
        margin: 0 auto 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    footer .footer-col h4 {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    footer.footer {
        margin-top: 40px;
    }
    
    .footer-main {
        padding: 50px 0 40px;
    }
    
    footer .footer-content {
        grid-template-columns: 1fr !important;
        gap: 35px;
        text-align: center;
    }
    
    footer .footer-col {
        align-items: center;
    }
    
    footer .footer-col:first-child {
        padding-right: 0;
    }
    
    footer .footer-col h4 {
        justify-content: center;
    }
    
    footer .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    footer .footer-col ul li a::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    footer .footer-bottom {
        padding: 20px 15px;
    }
    
    footer .footer-bottom p {
        font-size: 12px;
    }
}

/* ================= REVIEWS SECTION ================= */
.reviews-section {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.03) 50%, transparent 100%);
    position: relative;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-header h2 {
    font-size: 2.2rem;
    color: #ffffff !important;
    margin-bottom: 12px;
}

.reviews-subtitle {
    color: #94a3b8;
    font-size: 1.1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 80px;
    color: rgba(249, 115, 22, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(249, 115, 22, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f97316, #ec4899);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.review-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-name {
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
}

.review-location {
    color: #64748b;
    font-size: 13px;
}

.review-rating {
    font-size: 14px;
    letter-spacing: 2px;
}

.review-text {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.review-date {
    color: #64748b;
    font-size: 12px;
}

.review-verified {
    color: #22c55e;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Reviews Responsive */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 680px) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .reviews-header h2 {
        font-size: 1.6rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .review-card {
        padding: 20px;
    }
    
    .review-avatar {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
}

/* ================= AUTHOR BLOCK ================= */
.author-block {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    margin: 60px auto;
    max-width: 800px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.author-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-primary, #f59e0b);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.author-avatar img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.author-info {
    flex: 1;
    text-align: center;
}

.author-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-primary, #f59e0b) !important;
    margin: 0 0 15px 0;
    position: relative;
    display: inline-block;
}

.author-name::after {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    font-size: 12px;
    color: white;
    margin-left: 10px;
    vertical-align: middle;
}

.author-bio {
    font-size: 16px;
    line-height: 1.7;
    color: #cbd5e1 !important;
    margin: 0 0 15px 0;
    text-align: center;
}

.author-updated {
    font-size: 14px;
    color: #64748b !important;
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.author-updated::before {
    content: '🕒';
    font-size: 14px;
}

/* Author Block Responsive */
@media (max-width: 768px) {
    .author-block {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .author-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-avatar img {
        width: 100px;
        height: 100px;
    }
    
    .author-name {
        font-size: 20px;
    }
    
    .author-bio {
        font-size: 15px;
    }
    
    .author-updated {
        justify-content: center;
        width: 100%;
    }
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 900px) {
    .nav { display: none; } /* Hide desktop nav */
    .burger { display: block; } /* Show burger */
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        display: flex;
        flex-direction: column;
    }
    
    /* Mobile order: 1. Image, 2. Button (inside wrapper), 3. Text */
    .hero-image-wrapper { 
        order: 1; 
        text-align: center;
    }
    
    .hero-text { 
        order: 2; 
        text-align: center; 
    }
    
    .game-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .casino-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .btn-wrapper {
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    /* Hero Image Mobile */
    .hero-image {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-image img {
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .hero-image-wrapper {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    /* Header Mobile */
    .header {
        padding: 10px 15px;
    }
    
    .logo img {
        height: 35px;
    }
    
    /* Game Wrapper Mobile */
    .game-wrapper {
        border-radius: 12px;
        margin: 0 -15px;
        width: calc(100% + 30px);
        max-width: none;
    }
    
    .game-image {
        width: 100%;
        height: auto;
    }
    
    .overlay-buttons {
        padding: 15px;
        max-width: 280px;
        gap: 12px;
    }
    
    .overlay-buttons .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .game-iframe {
        height: 400px;
    }
    
    /* All Images Mobile - Ensure they fit */
    img {
        max-width: 100%;
        height: auto;
    }
    
    .content-image {
        margin: 25px -15px;
        width: calc(100% + 30px);
    }
    
    .content-image img {
        border-radius: 0;
        width: 100%;
    }
    
    /* Hero Page Mobile */
    .hero-page {
        padding: 50px 0;
        margin-top: 70px;
    }
    
    .hero-page h1 {
        font-size: 1.8rem !important;
        padding: 0 10px;
    }
    
    .hero-page-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .btn-hero {
        padding: 14px 30px;
        font-size: 0.9rem;
    }
    
    /* Hero Main Mobile */
    .hero {
        padding: 40px 0;
        margin-top: 70px;
    }
    
    .hero-text h1 {
        font-size: 1.7rem !important;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .game-info-grid {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }
    
    .info-card {
        padding: 15px;
    }
    
    /* Content Mobile */
    .content {
        padding: 30px 0;
        overflow-x: hidden;
    }
    
    .content .container {
        padding: 0 15px;
        overflow-x: hidden;
    }
    
    /* Prevent horizontal overflow on all sections */
    section {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .content h2 {
        font-size: 1.5rem !important;
    }
    
    .content h3 {
        font-size: 1.2rem !important;
    }
    
    .content p {
        font-size: 15px;
    }
    
    .content-image {
        margin: 25px 0;
    }
    
    .content-image img {
        border-radius: 10px;
        max-width: 100%;
        width: 100%;
        height: auto;
    }
    
    .content img {
        max-width: 100%;
        height: auto;
    }
    
    /* TOC Mobile */
    .toc-wrapper {
        margin: 0 10px;
    }
    
    .toc-toggle {
        padding: 15px;
        font-size: 14px;
    }
    
    .toc-content {
        padding: 15px;
    }
    
    .toc-list li a {
        font-size: 14px;
        padding: 8px 0;
    }
    
    /* Casino Cards Mobile */
    .casino-card {
        padding: 20px 15px;
    }
    
    .casino-logo {
        max-width: 120px;
    }
    
    .bonus-amount {
        font-size: 1.1rem;
    }
    
    /* FAQ Mobile */
    .faq {
        padding: 40px 0;
    }
    
    .faq h2 {
        font-size: 1.5rem !important;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 14px;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    /* Author Block Mobile */
    .author-block {
        padding: 20px 15px;
        margin: 30px 0;
    }
    
    .author-avatar img {
        width: 80px;
        height: 80px;
    }
    
    .author-name {
        font-size: 18px;
    }
    
    .author-bio {
        font-size: 14px;
    }
    
    /* Buttons Mobile */
    .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 25px;
        font-size: 15px;
        max-width: 100%;
    }
    
    /* Tables Mobile - Horizontal scroll wrapper */
    .content table {
        font-size: 12px;
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }
    
    .content table thead,
    .content table tbody,
    .content table tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }
    
    .content table th,
    .content table td {
        padding: 10px 8px;
        white-space: normal;
        word-wrap: break-word;
    }
    
    /* Reviews Mobile */
    .review-card {
        padding: 15px !important;
    }
    
    .reviews-grid {
        gap: 15px;
    }
    
    /* Pros Cons Mobile */
    .pros-cons-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    
    .pros-col, .cons-col {
        padding: 15px !important;
    }
}

@media (max-width: 400px) {
    .hero-page h1 {
        font-size: 1.5rem !important;
    }
    
    .hero-text h1 {
        font-size: 1.4rem !important;
    }
    
    .content h2 {
        font-size: 1.3rem !important;
    }
    
    .btn-hero {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
    
    .game-info-grid {
        gap: 8px;
    }
    
    .info-card {
        padding: 12px 10px;
    }
    
    .info-label {
        font-size: 11px;
    }
    
    .info-value {
        font-size: 14px;
    }
}

/* ================= FAQ SECTION ================= */
.faq {
    padding: 60px 0;
    background: rgba(15, 23, 42, 0.5);
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff !important;
    font-size: 2rem;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.faq-item.active {
    border-color: #06b6d4;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(6, 182, 212, 0.1);
}

.faq-question span:first-child {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    padding-right: 20px;
}

.faq-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    border-radius: 50%;
    color: #ffffff !important;
    font-size: 20px;
    font-weight: 300;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.faq-answer strong {
    color: #06b6d4;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq {
        padding: 40px 0;
    }
    
    .faq h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question span:first-child {
        font-size: 14px;
    }
    
    .faq-icon {
        width: 26px;
        height: 26px;
        min-width: 26px;
        font-size: 18px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }
}
/* ============================================
   FOOTER OVERRIDE - MAXIMUM SPECIFICITY
   ============================================ */
.footer.footer.footer {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%) !important;
    border-top: 2px solid #06b6d4 !important;
    padding: 50px 0 0 !important;
    margin-top: 60px !important;
}

.footer .footer-content {
    display: grid !important;
    grid-template-columns: 1.5fr 1fr 1fr !important;
    gap: 40px !important;
    padding-bottom: 40px !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

.footer .footer-col {
    display: flex !important;
    flex-direction: column !important;
}

.footer .footer-logo {
    max-width: 160px !important;
    height: auto !important;
}

.footer .footer-col h4 {
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 20px !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid #06b6d4 !important;
    display: inline-block !important;
}

.footer .footer-col ul,
.footer .footer-col ul li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer .footer-col ul li {
    margin-bottom: 10px !important;
}

.footer .footer-col ul li a {
    color: #94a3b8 !important;
    font-size: 14px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.footer .footer-col ul li a:hover {
    color: #06b6d4 !important;
    padding-left: 5px !important;
}

.footer .footer-bottom {
    padding: 20px 0 !important;
    text-align: center !important;
    background: rgba(0,0,0,0.3) !important;
}

.footer .footer-bottom p {
    color: #64748b !important;
    font-size: 12px !important;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .footer .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    
    .footer .footer-col {
        align-items: center !important;
    }
    
    .footer .footer-col h4 {
        text-align: center !important;
    }
}

/* ================= STICKY BONUS BAR ================= */
.sticky-bonus {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    border: 2px solid transparent;
    border-radius: 60px;
    padding: 8px 12px 8px 8px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(249, 115, 22, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: bonusSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), bonusPulse 3s ease-in-out infinite;
}

.sticky-bonus::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 60px;
    background: linear-gradient(90deg, #f97316, #ec4899, #a855f7, #f97316);
    background-size: 300% 100%;
    z-index: -1;
    animation: borderGlow 4s linear infinite;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

@keyframes bonusSlideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(80px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes bonusPulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.02); }
}

.sticky-bonus-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.sticky-bonus-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.sticky-bonus-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.sticky-bonus-label {
    font-size: 10px;
    color: #f97316;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.sticky-bonus-amount {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sticky-bonus-plus {
    color: #22c55e;
    font-weight: 700;
}

.sticky-bonus-btn {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.sticky-bonus-link:hover .sticky-bonus-btn {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

.sticky-bonus-link:hover .btn-arrow {
    transform: translateX(3px);
}

.sticky-bonus-close {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 4px;
}

.sticky-bonus-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.sticky-bonus.hidden {
    display: none;
}

/* Sticky Bonus Mobile */
@media (max-width: 600px) {
    .sticky-bonus {
        bottom: 12px;
        left: 12px;
        right: 12px;
        transform: none;
        border-radius: 20px;
        padding: 10px;
        gap: 10px;
    }
    
    .sticky-bonus::before {
        border-radius: 22px;
    }
    
    @keyframes bonusSlideUp {
        from {
            opacity: 0;
            transform: translateY(80px) scale(0.8);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
    
    @keyframes bonusPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.01); }
    }
    
    .sticky-bonus-link {
        flex: 1;
        gap: 10px;
    }
    
    .sticky-bonus-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
    
    .sticky-bonus-label {
        font-size: 9px;
    }
    
    .sticky-bonus-amount {
        font-size: 16px;
    }
    
    .sticky-bonus-btn {
        padding: 10px 16px;
        font-size: 11px;
    }
    
    .sticky-bonus-close {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
}

/* ================= GLOBAL CENTERING ENHANCEMENTS ================= */
/* Center all main sections content */
section {
    text-align: center;
}

section .container {
    text-align: center;
}

/* But keep lists and specific elements left-aligned */
section ul, section ol {
    text-align: left;
    display: inline-block;
}

section table {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

section table td,
section table th {
    text-align: center;
}

/* Keep review cards text left */
.review-card,
.review-text {
    text-align: left !important;
}

/* Keep pros/cons left aligned */
.pros-col, .cons-col {
    text-align: left !important;
}

/* Footer stays left aligned */
.footer, footer {
    text-align: left;
}

.footer .footer-col {
    text-align: left;
}

/* Casino cards stay centered */
.casino-card {
    text-align: center;
}

/* Author block centered */
.author-block .container {
    text-align: center;
}