:root {
    --primary: #f7b731;
    --primary-dark: #e09f1a;
    --secondary: #e74c3c;
    --bg-dark: #0a0e17;
    --bg-card: #131a2b;
    --bg-card-hover: #1a2540;
    --text-main: #e8e8e8;
    --text-muted: #8a9ab5;
    --text-white: #ffffff;
    --accent-green: #2ecc71;
    --accent-blue: #3498db;
    --border: #1e2d4a;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(0,0,0,.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; color: var(--text-white); line-height: 1.3; }

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: all .25s;
    border: none;
    text-align: center;
}
.btn-primary { background: var(--primary); color: #111; }
.btn-primary:hover { background: var(--primary-dark); color: #111; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(247,183,49,.35); }
.btn-secondary { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: #111; }
.btn-outline { background: transparent; color: var(--text-white); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-large { padding: 16px 40px; font-size: 1.1rem; }
.btn-danger { background: var(--secondary); color: #fff; }
.btn-danger:hover { background: #c0392b; transform: translateY(-2px); }

/* ── Header ── */
.header {
    background: rgba(10,14,23,.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 0;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}
.logo a { display: flex; align-items: center; gap: 8px; font-size: 1.6rem; font-weight: 700; color: var(--primary); font-family: 'Poppins', sans-serif; }
.logo a:hover { color: var(--primary); }
.logo .logo-dot { color: var(--secondary); }

.nav-list { display: flex; list-style: none; gap: 6px; }
.nav-list a {
    padding: 8px 16px;
    color: var(--text-muted);
    font-weight: 500;
    border-radius: 6px;
    transition: all .2s;
    font-size: .9rem;
}
.nav-list a:hover, .nav-list a.active { color: var(--primary); background: rgba(247,183,49,.08); }

.header-actions { display: flex; gap: 10px; }
.header-actions .btn { padding: 8px 20px; font-size: .85rem; }

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.mobile-menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text-white);
    transition: .3s;
    border-radius: 2px;
}

/* ── Mobile Menu ── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10,14,23,.98);
    z-index: 999;
    padding-top: 80px;
}
.mobile-menu.active { display: block; }
.mobile-nav ul { list-style: none; padding: 20px; }
.mobile-nav a { display: block; padding: 14px 20px; color: var(--text-main); font-size: 1.1rem; border-bottom: 1px solid var(--border); }
.mobile-nav a:hover { color: var(--primary); }
.mobile-actions { padding: 20px; display: flex; gap: 12px; }
.mobile-actions .btn { flex: 1; text-align: center; }

/* ── Breadcrumb ── */
.breadcrumb { padding: 14px 0; border-bottom: 1px solid var(--border); }
.breadcrumb-list { display: flex; list-style: none; gap: 8px; font-size: .85rem; }
.breadcrumb-list li + li::before { content: '›'; margin-right: 8px; color: var(--text-muted); }
.breadcrumb-list a { color: var(--text-muted); }
.breadcrumb-list a:hover { color: var(--primary); }
.breadcrumb-list .current { color: var(--primary); }

/* ── Hero ── */
.hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #0a0e17 0%, #131a2b 50%, #0f1520 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(247,183,49,.06) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-content { display: flex; align-items: center; gap: 60px; position: relative; z-index: 1; }
.hero-text { flex: 1; }
.hero-text h1 { font-size: 2.6rem; margin-bottom: 20px; }
.hero-text h1 .brand { color: var(--primary); }
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 30px; line-height: 1.8; }
.hero-subtitle strong { color: var(--primary); }

.hero-features { display: flex; gap: 20px; margin-bottom: 35px; flex-wrap: wrap; }
.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: .9rem;
}
.hero-features .icon { font-size: 1.2rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image { flex: 0 0 420px; }
.hero-image img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ── Page Hero (subpages) ── */
.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #0a0e17, #1a2540);
    text-align: center;
}
.page-hero h1 { font-size: 2.2rem; margin-bottom: 16px; }
.page-hero .subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 700px; margin: 0 auto 30px; }
.hero-stats { display: flex; justify-content: center; gap: 40px; margin-bottom: 30px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-value { display: block; font-size: 1.8rem; font-weight: 700; color: var(--primary); font-family: 'Poppins', sans-serif; }
.stat-label { font-size: .85rem; color: var(--text-muted); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Section Styles ── */
section { padding: 70px 0; }
section h2 {
    text-align: center;
    font-size: 1.9rem;
    margin-bottom: 45px;
    position: relative;
}
section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 14px auto 0;
    border-radius: 3px;
}

/* ── Features Grid ── */
.features { background: var(--bg-dark); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all .3s;
}
.feature-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(247,183,49,.1); }
.feature-icon { font-size: 2.4rem; margin-bottom: 16px; }
.feature-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: .92rem; }

/* ── Games Grid ── */
.popular-games { background: linear-gradient(180deg, var(--bg-dark), #0d1220); }
.games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 24px; }
.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .3s;
}
.game-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.game-card .game-image { position: relative; overflow: hidden; height: 180px; background: #1a2540; }
.game-card .game-image img { width: 100%; height: 100%; object-fit: cover; }
.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}
.game-overlay span {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: .75rem;
    font-weight: 600;
}
.popularity { background: rgba(0,0,0,.6); color: #fff; }
.live-indicator { background: var(--secondary); color: #fff; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .7; } }

.game-info { padding: 20px; }
.game-info h3 { font-size: 1.1rem; margin-bottom: 8px; }
.game-info p { color: var(--text-muted); font-size: .88rem; margin-bottom: 12px; }
.game-stats { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.game-stats span {
    padding: 4px 10px;
    background: rgba(247,183,49,.08);
    border-radius: 4px;
    font-size: .78rem;
    color: var(--primary);
}
.game-card .btn { width: 100%; }
.games-cta { text-align: center; margin-top: 35px; }

/* ── Promotions Grid ── */
.promotions { background: var(--bg-dark); }
.promotions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.promo-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: all .3s;
}
.promo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.promo-card.featured { border-color: var(--primary); position: relative; }
.promo-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--secondary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 0 0 6px 6px;
    font-size: .75rem;
    font-weight: 700;
}
.promo-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.promo-amount { font-size: 2.2rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; font-family: 'Poppins', sans-serif; }
.promo-card p { color: var(--text-muted); margin-bottom: 20px; font-size: .9rem; }

/* ── Testimonials ── */
.testimonials { background: linear-gradient(180deg, #0d1220, var(--bg-dark)); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all .3s;
}
.testimonial-card:hover { border-color: var(--primary); }
.stars { color: #f1c40f; margin-bottom: 14px; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-muted); font-style: italic; font-size: .92rem; line-height: 1.7; margin-bottom: 14px; }
.testimonial-card .author { color: var(--primary); font-weight: 600; font-size: .85rem; }
.tip-icon { font-size: 2rem; margin-bottom: 12px; }
.testimonial-card h3 { margin-bottom: 10px; font-size: 1.05rem; }

/* ── Category Grid ── */
.slots-categories { background: var(--bg-dark); }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 20px;
    text-align: center;
    transition: all .3s;
}
.category-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.category-icon { font-size: 2.6rem; display: block; margin-bottom: 12px; }
.category-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.category-card p { color: var(--text-muted); font-size: .82rem; margin-bottom: 10px; }
.game-count { color: var(--accent-green); font-weight: 600; font-size: .82rem; }

/* ── FAQ ── */
.faq { background: linear-gradient(180deg, var(--bg-dark), #0d1220); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 14px;
    transition: border-color .2s;
}
.faq-item:hover { border-color: var(--primary); }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--primary); cursor: pointer; }
.faq-item p { color: var(--text-muted); font-size: .92rem; }

/* ── Article / Guide Content ── */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}
.article-content h1 { font-size: 2rem; margin-bottom: 20px; }
.article-meta { color: var(--text-muted); font-size: .85rem; margin-bottom: 30px; display: flex; gap: 20px; flex-wrap: wrap; }
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-content h2 { text-align: left; font-size: 1.4rem; margin: 35px 0 16px; }
.article-content h2::after { display: none; }
.article-content h3 { font-size: 1.15rem; margin: 25px 0 10px; }
.article-content p { margin-bottom: 16px; color: var(--text-muted); }
.article-content ul, .article-content ol { margin: 0 0 20px 24px; color: var(--text-muted); }
.article-content li { margin-bottom: 8px; }
.article-content strong { color: var(--text-white); }
.article-content blockquote {
    border-left: 3px solid var(--primary);
    padding: 16px 20px;
    margin: 20px 0;
    background: var(--bg-card);
    border-radius: 0 8px 8px 0;
    color: var(--text-muted);
    font-style: italic;
}
.article-cta {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}
.article-cta h3 { margin-bottom: 12px; }
.article-cta p { color: var(--text-muted); margin-bottom: 18px; }

.related-articles { padding: 50px 0; background: var(--bg-dark); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all .3s;
}
.related-card:hover { border-color: var(--primary); transform: translateY(-3px); }
.related-card .tag { color: var(--primary); font-size: .78rem; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; display: block; }
.related-card h3 { font-size: 1rem; margin-bottom: 8px; }
.related-card h3 a { color: var(--text-white); }
.related-card h3 a:hover { color: var(--primary); }
.related-card p { color: var(--text-muted); font-size: .85rem; }

/* ── Footer ── */
.footer {
    background: #070a12;
    border-top: 1px solid var(--border);
    padding: 50px 0 0;
}
.footer-content { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { margin-bottom: 14px; }
.footer-logo a { font-size: 1.5rem; font-weight: 700; color: var(--primary); font-family: 'Poppins', sans-serif; }
.footer-section p { color: var(--text-muted); font-size: .88rem; margin-bottom: 16px; }
.footer-section h4 { font-size: 1rem; margin-bottom: 16px; color: var(--text-white); }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 8px; }
.footer-section ul a { color: var(--text-muted); font-size: .88rem; transition: color .2s; }
.footer-section ul a:hover { color: var(--primary); }

.social-links { display: flex; gap: 12px; }
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all .25s;
}
.social-links a:hover { border-color: var(--primary); color: var(--primary); background: rgba(247,183,49,.08); }
.social-links svg { width: 20px; height: 20px; }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-disclaimer p { color: var(--text-muted); font-size: .8rem; margin-bottom: 4px; }
.footer-payments { display: flex; align-items: center; gap: 12px; }
.footer-payments span { color: var(--text-muted); font-size: .82rem; }
.payment-icons { display: flex; gap: 10px; align-items: center; }
.payment-icons span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--text-muted);
    font-size: .75rem;
    font-weight: 600;
}

/* ── Blog Listing ── */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .3s;
}
.blog-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-body { padding: 24px; }
.blog-card .tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.tag-guia { background: rgba(46,204,113,.12); color: var(--accent-green); }
.tag-news { background: rgba(52,152,219,.12); color: var(--accent-blue); }
.tag-dica { background: rgba(247,183,49,.12); color: var(--primary); }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 8px; line-height: 1.4; }
.blog-card h3 a { color: var(--text-white); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card .excerpt { color: var(--text-muted); font-size: .88rem; margin-bottom: 14px; line-height: 1.6; }
.blog-card .meta { color: var(--text-muted); font-size: .78rem; display: flex; gap: 14px; }

.article-toc {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin: 24px 0 30px;
}
.article-toc h4 { font-size: .95rem; margin-bottom: 10px; color: var(--primary); }
.article-toc ol { margin: 0 0 0 20px; color: var(--text-muted); }
.article-toc li { margin-bottom: 6px; font-size: .88rem; }
.article-toc a { color: var(--text-muted); }
.article-toc a:hover { color: var(--primary); }

.info-box {
    background: var(--bg-card);
    border-left: 3px solid var(--accent-blue);
    border-radius: 0 8px 8px 0;
    padding: 18px 20px;
    margin: 20px 0;
    font-size: .9rem;
    color: var(--text-muted);
}
.info-box strong { color: var(--accent-blue); }

.warning-box {
    background: var(--bg-card);
    border-left: 3px solid var(--secondary);
    border-radius: 0 8px 8px 0;
    padding: 18px 20px;
    margin: 20px 0;
    font-size: .9rem;
    color: var(--text-muted);
}
.warning-box strong { color: var(--secondary); }

/* ── Responsive ── */
@media (max-width: 992px) {
    .hero-content { flex-direction: column; text-align: center; }
    .hero-text h1 { font-size: 2rem; }
    .hero-features { justify-content: center; }
    .hero-actions { justify-content: center; }
    .hero-image { flex: none; max-width: 400px; }
    .features-grid, .promotions-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .main-nav, .header-actions { display: none; }
    .mobile-menu-toggle { display: flex; }
    .hero { padding: 50px 0 40px; }
    .hero-text h1 { font-size: 1.6rem; }
    .hero-features .feature { padding: 8px 12px; font-size: .82rem; }
    section { padding: 50px 0; }
    section h2 { font-size: 1.5rem; margin-bottom: 30px; }
    .features-grid, .promotions-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: 1fr 1fr; }
    .games-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-stats { gap: 20px; }
    .page-hero h1 { font-size: 1.6rem; }
    .article-content h1 { font-size: 1.5rem; }
}

.article-featured-image {
    width: 100%;
    border-radius: var(--radius);
    margin: 20px 0 30px;
    max-height: 420px;
    object-fit: cover;
    display: block;
}
.blog-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
}
.page-hero-image {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-top: 24px;
}
.game-demo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

@media (max-width: 480px) {
    .hero-features { flex-direction: column; align-items: stretch; }
    .hero-actions { flex-direction: column; }
    .category-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
}
