/* 888HOT BET - Tema Quente Laranja/Vermelho */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-hot: #FF4500;
    --secondary-fire: #FF8C00;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d0d0d;
    --accent-gold: #FFD700;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --gradient-fire: linear-gradient(135deg, #FF4500 0%, #FF8C00 50%, #FFA500 100%);
    --gradient-dark: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--darker-bg);
    color: var(--text-light);
    line-height: 1.6;
}

/* Header */
.page-header {
    background: var(--dark-bg);
    border-bottom: 3px solid var(--primary-hot);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
}

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

.brand-logo img {
    height: 50px;
    filter: drop-shadow(0 0 10px rgba(255, 140, 0, 0.5));
}

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

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--secondary-fire);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-fire);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-btn {
    background: var(--gradient-fire);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.4);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
}

/* Hero Section */
.hero-section {
    position: relative;
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
    text-align: center;
}

.hero-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255, 69, 0, 0.3);
}

.hero-content {
    margin-top: 30px;
}

.hero-content h1 {
    font-size: 48px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 140, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-large {
    background: var(--gradient-fire);
    color: var(--text-light);
    padding: 18px 50px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 20px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 69, 0, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-btn-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 35px rgba(255, 69, 0, 0.7);
}

/* Page Container */
.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Sections */
section {
    margin-bottom: 60px;
}

h2 {
    font-size: 36px;
    color: var(--secondary-fire);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-fire);
    border-radius: 2px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Promotional Banners */
.banners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.banner-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.banner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.4);
}

.banner-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.banner-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 69, 0, 0.9);
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
}

/* Jackpot Banner */
.jackpot-banner {
    background: var(--gradient-dark);
    border: 3px solid var(--primary-hot);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 69, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.jackpot-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.jackpot-content {
    position: relative;
    z-index: 1;
}

.jackpot-banner h3 {
    font-size: 28px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.jackpot-amount {
    font-size: 56px;
    font-weight: bold;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    text-shadow: 0 0 30px rgba(255, 140, 0, 0.7);
}

.jackpot-mascot {
    max-width: 200px;
    margin: 20px auto;
    display: block;
    border-radius: 10px;
}

/* Providers Section */
.providers-section {
    text-align: center;
}

.providers-image {
    max-width: 100%;
    height: auto;
    margin-top: 20px;
    border-radius: 10px;
}

/* Games Showcase */
.games-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.game-box {
    background: var(--dark-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.game-box:hover {
    transform: translateY(-8px);
    border-color: var(--primary-hot);
    box-shadow: 0 10px 35px rgba(255, 69, 0, 0.5);
}

.game-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.game-info {
    padding: 15px;
    text-align: center;
}

.game-info h4 {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.game-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.play-btn {
    background: var(--gradient-fire);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.6);
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--dark-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-left: 4px solid var(--primary-hot);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
}

.benefit-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 22px;
    color: var(--secondary-fire);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.payment-item {
    background: var(--dark-bg);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.payment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.3);
}

.payment-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.payment-item h4 {
    font-size: 18px;
    color: var(--secondary-fire);
    margin-bottom: 8px;
}

.payment-item p {
    font-size: 14px;
    color: var(--text-gray);
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-question {
    background: var(--dark-bg);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-fire);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.faq-question:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
}

.faq-question h4 {
    font-size: 20px;
    color: var(--secondary-fire);
    margin-bottom: 12px;
}

.faq-question p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Reviews Section */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.review-box {
    background: var(--dark-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-top: 3px solid var(--primary-hot);
    transition: all 0.3s ease;
}

.review-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 69, 0, 0.3);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.review-header h4 {
    font-size: 18px;
    color: var(--text-light);
}

.stars {
    color: var(--accent-gold);
    font-size: 18px;
}

.review-box p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 10px;
}

.review-date {
    font-size: 13px;
    color: #888;
    font-style: italic;
}

/* About Section */
.about-content {
    background: var(--dark-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.about-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 25px;
}

.about-text p {
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 16px;
}

.about-text strong {
    color: var(--secondary-fire);
}

.disclaimer {
    background: rgba(255, 69, 0, 0.1);
    border-left: 4px solid var(--primary-hot);
    padding: 15px;
    border-radius: 8px;
    margin-top: 30px;
}

/* Footer */
.page-footer {
    background: var(--darker-bg);
    border-top: 3px solid var(--primary-hot);
    padding: 50px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: var(--secondary-fire);
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section p,
.footer-section ul {
    color: var(--text-gray);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-fire);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
    color: var(--text-gray);
}

.footer-bottom a {
    color: var(--text-gray);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--secondary-fire);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-wrap {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .jackpot-amount {
        font-size: 40px;
    }
    
    .games-showcase {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .benefits-grid,
    .reviews-container {
        grid-template-columns: 1fr;
    }
}

