/* ===== BANZAI CASINO — MAIN STYLESHEET ===== */

:root {
    --red: #e60012;
    --red-dark: #b8000e;
    --red-light: #ff2d3b;
    --dark: #1a1a2e;
    --dark-2: #16213e;
    --dark-3: #0f3460;
    --gold: #f5c518;
    --gold-light: #ffd700;
    --cream: #fdf6ec;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #adb5bd;
    --gray-700: #495057;
    --gray-900: #212529;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Montserrat', 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.12);
    --shadow-md: 0 4px 16px rgba(0,0,0,.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,.2);
    --shadow-xl: 0 16px 48px rgba(0,0,0,.25);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: .3s ease;
}

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

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

body {
    font-family: var(--font-main);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }

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

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, .97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.logo-bolt {
    color: var(--gold);
    font-size: .85rem;
}
.logo span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--white);
    letter-spacing: -0.5px;
}

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
    color: rgba(255,255,255,.8);
    font-size: .88rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all var(--transition);
    white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
    color: var(--white);
    background: rgba(255,255,255,.1);
}

.header-actions { display: flex; gap: 10px; align-items: center; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: .9rem;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 0, 18, .35);
}
.btn-primary:hover {
    background: var(--red-light);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 0, 18, .5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,.3);
}
.btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255,255,255,.1);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #f0a500);
    color: var(--dark);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(245, 197, 24, .35);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 197, 24, .5);
    color: var(--dark);
}

.btn-lg {
    padding: 14px 36px;
    font-size: 1.05rem;
    border-radius: 10px;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.burger span {
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: url('../images/hero-bg.jpg') center center / cover no-repeat;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,.85) 0%, rgba(22,33,62,.75) 50%, rgba(15,52,96,.7) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(230, 0, 18, .15), transparent 70%);
    border-radius: 50%;
    z-index: 2;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content h1 .highlight {
    color: var(--red);
    display: inline;
}

.hero-content .subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--white);
    font-size: .85rem;
    font-weight: 500;
}

.hero-badge i { color: var(--gold); }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

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

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 70px 0;
}

.section-alt {
    background: var(--gray-100);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.78); }

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 14px;
    line-height: 1.25;
}

.section-dark .section-header h2 { color: var(--white); }

.section-header p {
    font-size: 1.05rem;
    color: var(--gray-700);
    max-width: 680px;
    margin: 0 auto;
}

.section-header .red-line {
    width: 50px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

/* ===== CARDS ===== */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition);
}

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

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.card p {
    font-size: .93rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* dark cards */
.section-dark .card {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.1);
}
.section-dark .card h3 { color: var(--white); }
.section-dark .card p { color: rgba(255,255,255,.7); }

/* ===== TABLES ===== */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: .93rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.info-table thead th {
    background: var(--dark);
    color: var(--white);
    padding: 14px 18px;
    text-align: left;
    font-weight: 600;
    font-size: .88rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.info-table tbody td {
    padding: 13px 18px;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: top;
}

.info-table tbody tr:nth-child(even) {
    background: var(--gray-100);
}

.info-table tbody tr:hover {
    background: rgba(230, 0, 18, .04);
}

.info-table tbody tr:last-child td {
    border-bottom: none;
}

.section-dark .info-table {
    box-shadow: none;
}
.section-dark .info-table thead th {
    background: rgba(255,255,255,.1);
}
.section-dark .info-table tbody td {
    border-color: rgba(255,255,255,.08);
    color: rgba(255,255,255,.85);
}
.section-dark .info-table tbody tr:nth-child(even) {
    background: rgba(255,255,255,.04);
}
.section-dark .info-table tbody tr:hover {
    background: rgba(255,255,255,.08);
}

/* ===== LISTS ===== */
.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding: 8px 0 8px 32px;
    font-size: .95rem;
}

.check-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 9px;
    color: var(--red);
    font-size: 1rem;
}

.section-dark .check-list li::before {
    color: var(--gold);
}

.num-list {
    list-style: none;
    padding: 0;
    counter-reset: numlist;
}

.num-list li {
    position: relative;
    padding: 10px 0 10px 44px;
    font-size: .95rem;
    counter-increment: numlist;
}

.num-list li::before {
    content: counter(numlist);
    position: absolute;
    left: 0;
    top: 8px;
    width: 30px;
    height: 30px;
    background: var(--red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .82rem;
}

/* ===== BANNER IMAGE ===== */
.banner-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin: 30px 0;
}

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

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    transition: all var(--transition);
}

.section-dark .faq-item {
    border-color: rgba(255,255,255,.12);
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    text-align: left;
    padding: 18px 52px 18px 22px;
    font-family: var(--font-main);
    font-size: .98rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    position: relative;
    transition: all var(--transition);
}

.section-dark .faq-question {
    background: rgba(255,255,255,.06);
    color: var(--white);
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: .8rem;
    color: var(--red);
    transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

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

.faq-answer-inner {
    padding: 0 22px 20px;
    font-size: .93rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.section-dark .faq-answer-inner {
    color: rgba(255,255,255,.7);
}

/* ===== PROMO BANNER ===== */
.promo-banner {
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,.15), transparent 70%);
    border-radius: 50%;
}

.promo-banner h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.promo-banner p {
    font-size: 1.1rem;
    margin-bottom: 28px;
    color: rgba(255,255,255,.9);
    position: relative;
    z-index: 2;
}

/* ===== STATS ROW ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.stat-box {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255,255,255,.06);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.1);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: .85rem;
    color: rgba(255,255,255,.7);
    margin-top: 4px;
}

/* white version */
.stats-row-light .stat-box {
    background: var(--white);
    border-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.stats-row-light .stat-num {
    color: var(--red);
}

.stats-row-light .stat-label {
    color: var(--gray-700);
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand p {
    font-size: .9rem;
    line-height: 1.7;
    margin-top: 14px;
}

.footer-col h4 {
    color: var(--white);
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
    color: rgba(255,255,255,.6);
    font-size: .88rem;
    transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom a {
    color: rgba(255,255,255,.55);
}
.footer-bottom a:hover { color: var(--white); }

.footer-badges {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 20px;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.08);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: .78rem;
    color: rgba(255,255,255,.6);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--red);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--red-light);
    transform: translateY(-3px);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: rgba(255,255,255,.85);
    padding: 18px 24px;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: .88rem;
    border-top: 1px solid rgba(255,255,255,.1);
}

.cookie-banner.show { display: flex; }

.cookie-banner p { flex: 1; }

.cookie-btn {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    font-size: .88rem;
    transition: background var(--transition);
}
.cookie-btn:hover { background: var(--red-light); }

/* ===== TOC / NAVIGATION LINKS ===== */
.toc {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: var(--shadow-sm);
}

.toc h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--dark);
}

.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 24px;
}

.toc-list li a {
    display: block;
    padding: 6px 0;
    font-size: .88rem;
    color: var(--gray-700);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.toc-list li a:hover {
    color: var(--red);
    border-bottom-color: var(--red);
}

/* ===== TWO-COL TEXT+IMAGE ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.two-col-reverse { direction: rtl; }
.two-col-reverse > * { direction: ltr; }

.text-content h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
    line-height: 1.25;
}

.text-content p {
    margin-bottom: 14px;
    font-size: .95rem;
    color: var(--gray-700);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    html { font-size: 15px; }

    .main-nav { 
        display: none;
        position: fixed;
        top: 62px;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 16px;
        gap: 2px;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 12px 16px; }

    .burger { display: flex; }

    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-inner { grid-template-columns: 1fr; gap: 30px; }
    .hero-content h1 { font-size: 2.1rem; }
    .hero-image { max-width: 500px; }

    .section { padding: 50px 0; }
    .section-header h2 { font-size: 1.7rem; }

    .grid-2, .grid-3, .two-col { grid-template-columns: 1fr; }
    .two-col-reverse { direction: ltr; }

    .toc-list { grid-template-columns: 1fr; }

    .promo-banner { padding: 36px 24px; }
    .promo-banner h2 { font-size: 1.5rem; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .btn-lg { padding: 12px 28px; font-size: .95rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }

    .info-table { font-size: .85rem; }
    .info-table thead th, .info-table tbody td { padding: 10px 12px; }

    .cookie-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
    .stat-num { font-size: 1.7rem; }
    .hero-content h1 { font-size: 1.8rem; }
    .hero-badges { gap: 8px; }
    .hero-badge { font-size: .78rem; padding: 6px 12px; }
    .grid-4 { grid-template-columns: 1fr; }
}

/* ===== RATING STARS ===== */
.stars { color: var(--gold); }

/* ===== SMOOTH SCROLL TARGET OFFSET ===== */
[id] { scroll-margin-top: 80px; }

/* ===== GAME PROVIDERS LIST ===== */
.providers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}

.provider-tag {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--gray-700);
    transition: all var(--transition);
}

.provider-tag:hover {
    border-color: var(--red);
    color: var(--red);
}

.section-dark .provider-tag {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.15);
    color: rgba(255,255,255,.7);
}

/* ===== PAYMENT METHODS ===== */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 16px 0;
}

.payment-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-size: .88rem;
    font-weight: 500;
}

.payment-item i { color: var(--red); font-size: 1.2rem; }

/* ===== 18+ BADGE ===== */
.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: .82rem;
}
