@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Inter:wght@400;600&display=swap');

:root {
    --primary: #ffd700; /* Amarelo TG77 */
    --primary-dark: #e6c200;
    --accent: #00ff88; /* Verde Resgatar Bônus */
    --bg-dark: #000000; /* Fundo Preto do Header */
    --bg-card: #16161a;
    --bg-light: #1e1e24;
    --text-main: #ffffff;
    --text-muted: #a0a0a5;
    --white: #ffffff;
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffae00 100%);
    --gradient-accent: linear-gradient(135deg, #00ff88 0%, #00bd62 100%);
    --shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    --border-radius: 4px; /* Botões mais quadrados como na imagem */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    color: var(--accent);
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.85rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    border: none;
    text-transform: uppercase;
    text-align: center;
    color: #000; /* Default text color for visibility on bright backgrounds */
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.btn-primary {
    background: #ffd700; /* Fallback color */
    background: var(--gradient-gold);
    color: #000 !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    color: #000 !important;
}

.btn-accent {
    background: #00ff88; /* Fallback color */
    background: var(--gradient-accent);
    color: #000 !important;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

.btn-accent:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    color: #000 !important;
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: #000 !important;
}

/* Header & Nav */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    padding: 0;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    font-weight: 700;
    color: var(--white);
    font-size: 0.8rem;
    text-transform: uppercase;
    text-align: center;
    max-width: 100px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary);
}

.header-cta .btn {
    border-radius: 8px;
    padding: 15px 40px;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 2001;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Overlay escuro como na imagem */
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.2);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    font-weight: 600;
}

.hero-tagline {
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 50px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-btns .btn {
    min-width: 200px;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 8px;
}

/* Casino Stats Bar */
.stats-bar {
    background: var(--bg-card);
    padding: 30px 0;
    border-top: 2px solid var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8rem;
}

/* Game Categories */
.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 80px 0;
}

.game-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}

.game-img {
    height: 220px;
    position: relative;
}

.game-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: #000;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 0.7rem;
}

.game-info {
    padding: 20px;
    text-align: center;
}

.game-info h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
}

/* Jackpots */
.jackpot-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e1e24, #0a0a0c);
    text-align: center;
}

.jackpot-counter {
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
    margin: 30px 0;
}

/* Trust & Payments */
.payment-methods {
    padding: 60px 0;
    background: var(--bg-dark);
}

.payment-flex {
    display: flex;
    justify-content: center;
    gap: 40px;
    opacity: 0.6;
    filter: grayscale(1);
    transition: 0.3s;
    flex-wrap: wrap;
}

.payment-flex:hover {
    opacity: 1;
    filter: grayscale(0);
}

.payment-flex img {
    height: 35px;
}

/* Footer */
footer {
    background: #050507;
    color: #e0e0e0;
    padding: 100px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about img {
    height: 50px;
    margin-bottom: 30px;
}

.footer-links h3 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1rem;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--primary);
}

.social-links a:hover {
    background: var(--primary);
    color: #000;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Internal Page Specifics */
.page-header {
    padding: 120px 0 60px;
    background: var(--gradient-dark);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
}

.page-header h1 {
    font-size: 4rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.1;
}

.internal-content {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 30px;
}

.sidebar-widget {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    color: var(--primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

/* Article Cards */
.article-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 25px;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.article-img {
    flex: 1;
}

.article-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-info {
    flex: 1.5;
    padding: 25px;
}

.article-info h2 {
    font-size: 2rem;
    color: var(--white);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
}

.article-info p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
}

.article-meta {
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 15px;
}

/* Promotions Section */
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 80px;
}

.promo-card {
    background: #0a0a0c;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    text-align: center;
}

.promo-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.promo-img {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.promo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-content {
    padding: 30px 20px;
}

.promo-content h3 {
    color: var(--primary) !important;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 15px;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 2;
}

.promo-content p {
    color: #ffffff;
    font-size: 0.85rem;
    margin-bottom: 25px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-clamp: 3;
}

.promo-content .btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
    font-size: 0.8rem;
    padding: 10px 25px;
    width: 100%;
    max-width: 200px;
}

.promo-content .btn-outline:hover {
    background: var(--primary);
    color: #000;
}

/* Winners Ticker */
.winners-section {
    background: #000;
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.winners-flex {
    display: flex;
    gap: 50px;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.winner-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.winner-item i {
    color: var(--accent);
}

.winner-amount {
    color: var(--primary);
}

/* VIP Section */
.vip-section {
    padding: 100px 0;
    background: radial-gradient(circle at center, #1e1e24 0%, #0a0a0c 100%);
}

.vip-card {
    background: linear-gradient(135deg, #16161a, #000);
    border: 2px solid var(--primary);
    padding: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

.vip-card::after {
    content: 'VIP';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 10rem;
    font-weight: 900;
    opacity: 0.03;
    color: var(--primary);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-item {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1rem;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Ads Section */
.ads-section {
    padding: 60px 0;
    background: #050507;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
}

.ads-title {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.ads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ads-item img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
}

.ads-item img:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .ads-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .container { padding: 0 30px; }
    .hero-text h1 { font-size: 3.5rem; }
}

@media (max-width: 992px) {
    .hero-text h1 { font-size: 3rem; }
    .promotions-grid { grid-template-columns: 1fr 1fr; }
    .vip-card { flex-direction: column; padding: 40px; text-align: center; }
    .vip-card div:last-child { text-align: center !important; }
    .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .nav-links { 
        display: none; 
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 40px 20px;
        gap: 0;
        border-bottom: 2px solid var(--primary);
        z-index: 1999;
        text-align: center;
        max-width: none;
    }
    
    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-links a {
        font-size: 1.1rem;
        max-width: none;
        width: 100%;
        display: block;
    }

    .header-cta { display: block; margin-left: auto; margin-right: 15px; }
    .header-cta .btn { padding: 10px 20px; font-size: 0.8rem; }
    
    .hero { padding: 140px 0 80px; min-height: auto; }
    .hero-text h1 { font-size: 2.2rem; line-height: 1.2; }
    .hero-text p { font-size: 0.95rem; max-width: 100%; margin-bottom: 30px; }
    .hero-btns { flex-direction: column; gap: 12px; align-items: center; }
    .hero-btns .btn { width: 100%; max-width: 280px; padding: 12px 25px; font-size: 0.95rem; }

    .promotions-grid { grid-template-columns: 1fr; gap: 15px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-item h3 { font-size: 1.8rem; }

    .games-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 40px 0; }
    .game-img { height: 150px; }
    .game-info { padding: 12px; }
    .game-info h3 { font-size: 0.85rem; line-height: 1.3; }

    .jackpot-counter { font-size: 2.5rem; }
    
    .section-title h2 { font-size: 1.8rem; }
    .section-title { margin-bottom: 2.5rem; }
    
    .page-header { padding: 100px 0 50px; }
    .page-header h1 { 
        font-size: 1.8rem !important; 
        line-height: 1.15;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .internal-content { padding: 40px 0; }
    .content-grid { grid-template-columns: 1fr; gap: 25px; }
    .article-card { flex-direction: column; margin-bottom: 20px; }
    .article-img { height: 200px; }
    .article-info { padding: 20px; }
    .article-info h2 { font-size: 1.5rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-about, .footer-links { text-align: center; }
    .social-links { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}

@media (max-width: 576px) {
    .games-grid { grid-template-columns: 1fr; gap: 20px; }
    .game-img { height: 200px; }
    .game-info { padding: 18px; }
    .game-info h3 { font-size: 0.95rem; }
    
    .promo-img { height: 200px; }
    .promo-content { padding: 25px 20px; }
    
    .container { padding: 0 15px; }
    
    .page-header { padding: 90px 0 40px; }
    .page-header h1 { 
        font-size: 1.5rem !important; 
        line-height: 1.15;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .internal-content { padding: 35px 0; }
    .article-card { margin-bottom: 18px; }
    .article-info { padding: 18px; }
    .article-info h2 { font-size: 1.3rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.15rem; }
    
    .games-grid[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    .games-grid[style*="grid-template-columns: repeat(3, 1fr)"] .game-card {
        max-width: 100%;
    }
    
    .games-grid[style*="grid-template-columns: repeat(3, 1fr)"] .game-img {
        height: 220px !important;
    }
    
    .games-grid[style*="grid-template-columns: repeat(3, 1fr)"] .game-info {
        padding: 15px !important;
    }
    
    .games-grid[style*="grid-template-columns: repeat(3, 1fr)"] .game-info h3 {
        font-size: 0.95rem !important;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

@media (max-width: 480px) {
    .hero { padding: 120px 0 60px; }
    .hero-text h1 { font-size: 1.8rem; line-height: 1.2; margin-bottom: 15px; }
    .hero-text p { font-size: 0.9rem; margin-bottom: 25px; line-height: 1.4; }
    .hero-btns .btn { max-width: 100%; padding: 14px 20px; font-size: 0.9rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .jackpot-counter { font-size: 2rem; }
    .vip-card h2 { font-size: 1.8rem !important; }
    
    .games-grid { grid-template-columns: 1fr; gap: 18px; }
    .game-img { height: 220px; }
    
    .section-title h2 { font-size: 1.5rem; }
    .section-title p { font-size: 0.75rem; }
    
    .page-header { padding: 80px 0 35px; }
    .page-header h1 { 
        font-size: 1.3rem !important; 
        line-height: 1.15;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        letter-spacing: -0.5px;
    }
    
    .internal-content { padding: 30px 0; }
    .article-card { margin-bottom: 15px; }
    .article-info { padding: 15px; }
    .article-info h2 { font-size: 1.2rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.05rem; }
    
    .games-grid[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    .games-grid[style*="grid-template-columns: repeat(3, 1fr)"] .game-card {
        max-width: 100%;
    }
    
    .games-grid[style*="grid-template-columns: repeat(3, 1fr)"] .game-img {
        height: 200px !important;
    }
    
    .games-grid[style*="grid-template-columns: repeat(3, 1fr)"] .game-info {
        padding: 14px !important;
    }
    
    .games-grid[style*="grid-template-columns: repeat(3, 1fr)"] .game-info h3 {
        font-size: 0.85rem !important;
        line-height: 1.25;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}
