/* AA888-Bet - Tema Roxo e Dourado */

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

body {
    font-family: 'Arial', sans-serif;
    background-color: #1a0033;
    color: #ffffff;
    line-height: 1.7;
}

/* Header e Navegação */
.top-header {
    background: linear-gradient(135deg, #8a2be2 0%, #4b0082 100%);
    padding: 1.2rem 0;
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-link {
    display: block;
}

.logo-link img {
    height: 60px;
    width: auto;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.main-menu a:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

.play-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #4b0082 !important;
    padding: 0.8rem 2rem !important;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    border: none !important;
}

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

/* Hero Section */
.hero-banner {
    background: linear-gradient(135deg, #4b0082 0%, #8a2be2 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.hero-text h1 {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 1.3rem;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}

/* Main Content */
.main-wrapper {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.main-wrapper h2 {
    font-size: 2.2rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    border-left: 5px solid #8a2be2;
    padding-left: 1rem;
}

.main-wrapper h3 {
    font-size: 1.7rem;
    color: #ffd700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.main-wrapper p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    text-align: justify;
}

.main-wrapper ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.main-wrapper li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

/* Cards de Jogos */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.game-card {
    background: linear-gradient(135deg, #2d0052 0%, #4b0082 100%);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.3);
    transition: all 0.3s ease;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(138, 43, 226, 0.5);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h4 {
    font-size: 1.4rem;
    color: #ffd700;
    margin-bottom: 0.8rem;
}

.card-content p {
    font-size: 1rem;
    color: #e0e0e0;
    text-align: left;
}

/* Seção de Benefícios */
.benefits-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-item {
    background: linear-gradient(135deg, #4b0082 0%, #8a2be2 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.3);
}

.benefit-item h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.benefit-item p {
    color: #ffffff;
    font-size: 1.05rem;
    text-align: center;
}

.benefit-item img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    margin-top: 1rem;
}

/* FAQ */
.faq-section {
    margin: 3rem 0;
}

.faq-item {
    background: linear-gradient(135deg, #2d0052 0%, #4b0082 100%);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    border-left: 4px solid #ffd700;
}

.faq-item h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.faq-item p {
    color: #e0e0e0;
    font-size: 1.05rem;
    text-align: left;
}

/* Avaliações */
.reviews-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.review-card {
    background: linear-gradient(135deg, #4b0082 0%, #8a2be2 100%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.3);
}

.review-card h4 {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.review-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-card p {
    color: #ffffff;
    font-size: 1.05rem;
    font-style: italic;
    text-align: left;
}

/* Footer */
.bottom-footer {
    background: linear-gradient(135deg, #2d0052 0%, #1a0033 100%);
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 3px solid #8a2be2;
}

.bottom-footer p {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

.bottom-footer a {
    color: #ffd700;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.bottom-footer a:hover {
    color: #ffffff;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .main-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .games-grid,
    .benefits-section,
    .reviews-section {
        grid-template-columns: 1fr;
    }
}

