:root {
    --bg-main: #0a0a12;
    --bg-secondary: #161625;
    --bg-card: #202030;
    --accent: #e94560;
    --accent-hover: #ff5270;
    --text-main: #e0e0e0;
    --text-muted: #a0a0b0;
    --white: #ffffff;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--text-main);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent);
}

.auth-buttons a {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

/* Header */
.main-header {
    background-color: #212125;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    display: block;
    height: 50px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

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

.auth-buttons button {
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-login:hover {
    background: rgba(233, 69, 96, 0.1);
}

.btn-register {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: var(--white);
}

.btn-register:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

/* Slider */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    border-radius: 12px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 400px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active, .dot:hover {
    background: var(--accent);
}

/* Games Grid */
.games-section {
    margin: 40px auto;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent);
    padding-left: 10px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
}

.slot-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--bg-card);
    aspect-ratio: 3/2;
}

.slot-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.slot-card:hover img {
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 10, 18, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slot-card:hover .play-overlay {
    opacity: 1;
}

.play-overlay button {
    background: var(--accent);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.slot-card:hover .play-overlay button {
    transform: translateY(0);
}

/* SEO Content & TOC */
.seo-section {
    margin: 50px auto;
    padding: 40px;
    background-color: var(--bg-secondary);
    border-radius: 12px;
}

.seo-section h1 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--white);
}

.toc-container {
    background-color: var(--bg-main);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
    display: inline-block;
    min-width: 300px;
}

.toc-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--accent);
    text-transform: uppercase;
}

.toc-list {
    list-style: none;
}

.toc-list li {
    margin-bottom: 12px;
}

.toc-list a {
    color: var(--text-main);
    display: flex;
    align-items: center;
}

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

.seo-text h2 {
    font-size: 1.6rem;
    margin: 30px 0 15px;
    color: var(--white);
}

.seo-text p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ── STYLED LIST ── */
.seo-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.seo-text ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-main);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-left: 3px solid var(--accent);
    border-radius: 6px;
    padding: 13px 18px;
    color: var(--text-main);
    font-size: 0.95rem;
    line-height: 1.5;
    transition: background 0.2s, border-color 0.2s;
}

.seo-text ul li:hover {
    background: rgba(233, 69, 96, 0.05);
    border-left-color: var(--accent-hover);
}

.seo-text ul li::before {
    content: '✦';
    color: var(--accent);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 3px;
}

/* FAQ Accordion */
.faq-section {
    margin-top: 50px;
}

.faq-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.accordion-item {
    background-color: var(--bg-main);
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.05);
}

.accordion-header {
    background-color: transparent;
    color: var(--white);
    cursor: pointer;
    padding: 20px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: background 0.3s;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background-color: rgba(255,255,255,0.02);
}

.accordion-header::after {
    content: '\002B';
    color: var(--accent);
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.accordion-header.active::after {
    content: '\2212';
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.accordion-content p {
    padding: 15px 0 20px;
    color: var(--text-muted);
    margin: 0;
}

/* ── BONUS TABLE SECTION ── */
.bonus-table-section {
  margin: 40px 0;
}

.bonus-table-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  margin-top: -10px;
}

.bonus-table-wrap {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

/* Head */
.bonus-table thead tr {
  background: rgba(233, 69, 96, 0.15);
  border-bottom: 1px solid rgba(233, 69, 96, 0.3);
}

.bonus-table thead th {
  padding: 14px 20px;
  text-align: left;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Rows */
.bonus-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}

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

.bonus-table tbody tr:hover {
  background: rgba(233, 69, 96, 0.05);
}

.bonus-table tbody td {
  padding: 16px 20px;
  color: var(--text-muted);
  vertical-align: middle;
}

/* First column — bonus name */
.bonus-type {
  color: var(--white) !important;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bonus-icon {
  font-size: 1.2rem;
  line-height: 1;
}

/* Tag — audience badge */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  background: rgba(233, 69, 96, 0.12);
  color: var(--accent);
  border: 1px solid rgba(233, 69, 96, 0.25);
  white-space: nowrap;
}

.tag--wide {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Responsive */
@media (max-width: 768px) {
  .bonus-table thead th,
  .bonus-table tbody td {
    padding: 12px 14px;
    font-size: 0.85rem;
  }

  .bonus-type {
    white-space: normal;
  }
}

/* ── INFO TABLE ── */
        .info-table-wrap {
            border:1px solid rgba(255,255,255,0.08); border-radius:8px;
            overflow:hidden; margin:25px 0;
        }
        .info-table { width:100%; border-collapse:collapse; font-size:0.95rem; }
        .info-table tr { border-bottom:1px solid rgba(255,255,255,0.06); transition:background 0.2s; }
        .info-table tr:last-child { border-bottom:none; }
        .info-table tr:hover { background:rgba(255,255,255,0.03); }
        .info-table td { padding:13px 18px; vertical-align:top; }
        .info-table td:first-child { color:var(--accent); font-weight:600; width:220px; white-space:nowrap; background:rgba(233,69,96,0.05); }
        .info-table td:last-child { color:var(--text-main); }

        /* ── SLOTS TABLE ── */
        .slots-table-wrap { border:1px solid rgba(255,255,255,0.08); border-radius:8px; overflow:auto; margin:25px 0; }
        .slots-table { width:100%; border-collapse:collapse; font-size:0.88rem; min-width:500px; }
        .slots-table thead tr { background:rgba(233,69,96,0.12); }
        .slots-table thead th {
            padding:12px 16px; text-align:left; color:var(--accent);
            font-weight:600; font-size:0.78rem; letter-spacing:0.07em; text-transform:uppercase; white-space:nowrap;
        }
        .slots-table tbody tr { border-bottom:1px solid rgba(255,255,255,0.05); transition:background 0.18s; }
        .slots-table tbody tr:last-child { border-bottom:none; }
        .slots-table tbody tr:hover { background:rgba(255,255,255,0.03); }
        .slots-table tbody td { padding:10px 16px; color:var(--text-muted); }
        .slots-table tbody td:first-child { color:var(--text-main); }

        .badge-vol {
            display:inline-block; padding:2px 10px; border-radius:100px;
            font-size:0.75rem; font-weight:600;
        }
        .vol-alta    { background:rgba(255,74,74,0.12);  color:#ff7a7a; border:1px solid rgba(255,74,74,0.25); }
        .vol-media   { background:rgba(255,154,32,0.12); color:#ffb854; border:1px solid rgba(255,154,32,0.25); }
        .vol-baixa   { background:rgba(42,255,136,0.10); color:#5fffa8; border:1px solid rgba(42,255,136,0.2); }
        .vol-media-alta  { background:rgba(200,74,255,0.10); color:#d87aff; border:1px solid rgba(200,74,255,0.2); }
        .vol-baixa-media { background:rgba(74,140,255,0.10); color:#7ab0ff; border:1px solid rgba(74,140,255,0.2); }

        /* ── BONUS CARDS ── */
        .bonus-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(210px,1fr)); gap:16px; margin:25px 0; }
        .bonus-card {
            background:var(--bg-main); border:1px solid rgba(255,255,255,0.07);
            border-radius:8px; padding:22px 18px; transition:border-color 0.2s, transform 0.2s;
            position:relative; overflow:hidden;
        }
        .bonus-card::after {
            content:''; position:absolute; top:0; left:0; right:0; height:2px;
            background:linear-gradient(90deg, transparent, var(--accent), transparent);
            opacity:0; transition:opacity 0.2s;
        }
        .bonus-card:hover { border-color:rgba(233,69,96,0.4); transform:translateY(-3px); }
        .bonus-card:hover::after { opacity:1; }
        .bonus-card h3 { color:var(--accent); font-size:1rem; margin-bottom:10px; }
        .bonus-card p { color:var(--text-muted); font-size:0.88rem; margin-bottom:8px; }
        .bonus-card .note { font-size:0.78rem; color:#555; font-style:italic; }

        /* ── PAYMENTS GRID ── */
        .pay-grid { display:grid; grid-template-columns:repeat(auto-fill, minmax(180px,1fr)); gap:12px; margin:25px 0; }
        .pay-item {
            background:var(--bg-main); border:1px solid rgba(255,255,255,0.07);
            border-radius:8px; padding:18px 16px; text-align:center; transition:border-color 0.2s;
        }
        .pay-item:hover { border-color:rgba(233,69,96,0.3); }
        .pay-item .label { font-size:0.75rem; text-transform:uppercase; letter-spacing:0.1em; color:var(--text-muted); margin-bottom:6px; }
        .pay-item .value { font-size:0.92rem; color:var(--text-main); }

        /* ── STEPS ── */
        .steps { counter-reset:step; display:flex; flex-direction:column; gap:10px; margin:20px 0; }
        .step {
            counter-increment:step; display:flex; align-items:flex-start; gap:16px;
            background:var(--bg-main); border:1px solid rgba(255,255,255,0.07);
            border-radius:8px; padding:14px 18px; transition:border-color 0.2s;
        }
        .step:hover { border-color:rgba(233,69,96,0.3); }
        .step::before {
            content:counter(step); flex-shrink:0; width:30px; height:30px;
            background:rgba(233,69,96,0.12); border:1px solid var(--accent);
            border-radius:50%; display:flex; align-items:center; justify-content:center;
            color:var(--accent); font-size:0.85rem; font-weight:700;
        }
        .step p { margin:0; color:var(--text-muted); font-size:0.95rem; padding-top:4px; }

        /* ── HIGHLIGHT ── */
        .highlight {
            background:rgba(233,69,96,0.07); border:1px solid rgba(233,69,96,0.2);
            border-radius:8px; padding:20px 24px; margin:20px 0; color:#c8b8b8;
        }
        .highlight strong { color:var(--accent); }

        /* ── FAQ ACCORDION ── */
        .faq-section { margin-top:50px; }
        .faq-section h2 { font-size:1.8rem; margin-bottom:25px; }
        .accordion-item {
            background-color:var(--bg-main); margin-bottom:15px;
            border-radius:6px; border:1px solid rgba(255,255,255,0.05);
        }
        .accordion-header {
            background:transparent; color:var(--white); cursor:pointer; padding:20px;
            width:100%; text-align:left; border:none; outline:none;
            transition:background 0.3s; font-size:1.1rem; font-weight:bold;
            display:flex; justify-content:space-between; align-items:center;
        }
        .accordion-header:hover { background:rgba(255,255,255,0.02); }
        .accordion-header::after { content:'\002B'; color:var(--accent); font-size:1.5rem; font-weight:bold; transition:transform 0.3s; }
        .accordion-header.active::after { content:'\2212'; }
        .accordion-content { padding:0 20px; max-height:0; overflow:hidden; transition:max-height 0.4s ease-in-out, padding 0.4s ease-in-out; }
        .accordion-content p { padding:15px 0 20px; color:var(--text-muted); margin:0; }

/* Footer */
.main-footer {
    background-color: #212125;
    padding: 50px 0 20px;
    border-top: 2px solid var(--accent);
    margin-top: 50px;
}

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

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-about p {
    color: var(--text-muted);
    margin: 15px 0;
    font-size: 0.9rem;
}

.age-restriction {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.age-restriction span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

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

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.payment-icons img {
    width: 100%;
    border-radius: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Responsive Design */

 @media (max-width:992px) { .footer-grid { grid-template-columns:1fr 1fr; } }
        @media (max-width:768px) {
            .header-container { flex-direction:column; height:auto; padding:15px 0; gap:15px; }
            .main-nav ul { flex-wrap:wrap; justify-content:center; gap:15px; }
            .auth-buttons { width:100%; justify-content:center; }
            .hero-slider, .slider-container { height:250px; }
            .seo-section { padding:20px; }
            .footer-grid { grid-template-columns:1fr; text-align:center; }
            .age-restriction, .payment-icons { justify-content:center; }
            .payment-icons { grid-template-columns:repeat(4,60px); }
            .info-table td:first-child { width:140px; font-size:0.82rem; }
        }

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 15px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .auth-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .hero-slider, .slider-container {
        height: 250px;
    }
    
    .seo-section {
        padding: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .age-restriction, .payment-icons {
        justify-content: center;
    }
    
    .payment-icons {
        grid-template-columns: repeat(4, 60px);
    }
}
