/* 888win Plataforma - Tema Roxo/Dourado Único */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --purple-primary: #8B00FF;
    --purple-dark: #6A0DAD;
    --purple-light: #9370DB;
    --gold-primary: #FFD700;
    --gold-dark: #DAA520;
    --bg-dark: #1a0033;
    --bg-darker: #0d001a;
    --text-light: #ffffff;
    --text-gray: #cccccc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Header */
.main-header {
    background: linear-gradient(90deg, var(--purple-dark) 0%, var(--purple-primary) 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(139, 0, 255, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.brand-logo img {
    height: 50px;
}

.primary-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.primary-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 15px;
    border-radius: 5px;
}

.primary-nav a:hover,
.primary-nav a.active {
    background: rgba(255, 215, 0, 0.2);
    color: var(--gold-primary);
}

.header-actions {
    display: flex;
    gap: 15px;
}

.btn-register,
.btn-login {
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-register {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--bg-darker);
}

.btn-register:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
}

.btn-login {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-login:hover {
    background: var(--gold-primary);
    color: var(--bg-darker);
}

/* Hero Banner */
.hero-banner {
    padding: 80px 0;
    background: radial-gradient(circle at top right, rgba(139, 0, 255, 0.2), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple-primary), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-primary-large,
.btn-secondary-large {
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary-large {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    color: var(--bg-darker);
    animation: pulse 2s infinite;
}

.btn-secondary-large {
    background: transparent;
    border: 2px solid var(--purple-primary);
    color: var(--purple-light);
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary-large:hover {
    background: var(--purple-primary);
    color: var(--text-light);
}

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

.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(139, 0, 255, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid var(--purple-primary);
    font-size: 0.9rem;
}

.featured-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(139, 0, 255, 0.3);
}

/* Sections */
.section-heading {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--purple-primary), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Promo Highlight */
.promo-highlight {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(139, 0, 255, 0.1), transparent);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.promo-card {
    background: linear-gradient(135deg, rgba(139, 0, 255, 0.1), rgba(106, 13, 173, 0.1));
    border: 2px solid var(--purple-primary);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 0, 255, 0.4);
}

.promo-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.promo-card h3 {
    color: var(--gold-primary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.btn-promo {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 30px;
    background: var(--purple-primary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-promo:hover {
    background: var(--gold-primary);
    color: var(--bg-darker);
}

/* Game Showcase */
.game-showcase {
    padding: 80px 0;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.game-item {
    background: rgba(139, 0, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.game-item:hover {
    border-color: var(--gold-primary);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

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

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

.game-info h4 {
    color: var(--gold-primary);
    margin-bottom: 10px;
}

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

.btn-play {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, var(--purple-primary), var(--purple-dark));
    color: var(--text-light);
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s;
}

.btn-play:hover {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-darker);
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 80px 0;
}

.split-layout.reverse {
    direction: rtl;
}

.split-layout.reverse > * {
    direction: ltr;
}

.content-block h2 {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.content-block p {
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 10px 0;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.btn-explore {
    display: inline-block;
    padding: 15px 35px;
    background: var(--purple-primary);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-explore:hover {
    background: var(--gold-primary);
    color: var(--bg-darker);
    transform: translateY(-3px);
}

.visual-block {
    display: grid;
    gap: 20px;
}

.visual-block img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 0, 255, 0.2);
}

/* Payment Methods */
.payment-methods {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(139, 0, 255, 0.05), transparent);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.payment-card {
    background: rgba(139, 0, 255, 0.1);
    border: 2px solid var(--purple-primary);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.payment-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.payment-card h4 {
    color: var(--gold-primary);
    margin-bottom: 10px;
}

/* VIP Program */
.vip-program-preview {
    padding: 80px 0;
}

.vip-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, var(--purple-dark), var(--purple-primary));
}

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

.vip-content {
    padding: 50px;
}

.vip-content h2 {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.vip-levels {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.level {
    padding: 10px 20px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid var(--gold-primary);
    border-radius: 20px;
    font-weight: bold;
    color: var(--gold-primary);
}

.btn-vip {
    display: inline-block;
    padding: 15px 35px;
    background: var(--gold-primary);
    color: var(--bg-darker);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-vip:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.5);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(139, 0, 255, 0.1), transparent);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(139, 0, 255, 0.1);
    border-left: 4px solid var(--gold-primary);
    padding: 30px;
    border-radius: 10px;
}

.rating {
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 15px;
}

.author {
    color: var(--purple-light);
    font-weight: bold;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(139, 0, 255, 0.1);
    border: 1px solid var(--purple-primary);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
}

.faq-item h3 {
    color: var(--gold-primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

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

/* CTA Final */
.cta-final {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--purple-dark), var(--purple-primary));
    border: 3px solid var(--gold-primary);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
}

.cta-box h2 {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-cta-large {
    display: inline-block;
    padding: 20px 50px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--bg-darker);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.btn-cta-large:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
}

.disclaimer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Footer */
.site-footer {
    background: var(--bg-darker);
    border-top: 2px solid var(--purple-primary);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    color: var(--gold-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-column li {
    margin-bottom: 10px;
}

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

.footer-column a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(139, 0, 255, 0.3);
    padding-top: 30px;
    text-align: center;
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid,
    .split-layout,
    .vip-banner {
        grid-template-columns: 1fr;
    }
    
    .promo-grid,
    .game-grid,
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .primary-nav .nav-list {
        flex-direction: column;
        gap: 10px;
    }
    
    .promo-grid,
    .game-grid,
    .payment-grid,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}
