/* Section styling */
.section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .section-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-header .section-title span {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.view-all {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: 600;
    margin-top: 12px;
}

/* Promos - New Style */
.promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.promo-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(37,27,64,0.8) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 24px;
    padding: 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(245, 158, 11, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.promo-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 50px rgba(245, 158, 11, 0.3), 0 0 40px rgba(168, 85, 247, 0.2);
    border-color: var(--color-accent);
}

.promo-card:hover::before {
    opacity: 1;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-accent), #fbbf24);
    color: #000;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    z-index: 1;
}

.promo-card h4 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
    z-index: 1;
    color: #fff;
}

.promo-card p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    flex-grow: 1;
    z-index: 1;
    font-size: 14px;
    line-height: 1.6;
}

.promo-cta {
    background: linear-gradient(135deg, var(--color-primary), #7c3aed);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.3);
}

.promo-cta:hover {
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.5);
    transform: translateY(-2px);
}

/* Games - New Style */
.vertical-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
}

.game-card {
    background: linear-gradient(180deg, rgba(37,27,64,0.7) 0%, rgba(15,10,26,1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.game-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(245, 158, 11, 0.25), 0 0 40px rgba(245, 158, 11, 0.15);
    border-color: var(--color-accent);
}

.game-card::before {
    content: '🔥';
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--color-accent), #fbbf24);
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
    z-index: 10;
}

.game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.game-card:hover .game-card-image {
    transform: scale(1.1);
}

.game-card-body {
    padding: 20px;
}

.game-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 8px;
}

.game-card-desc {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.game-card-actions {
    display: flex;
    gap: 12px;
}

.btn-card {
    flex: 1;
    padding: 14px 12px;
    border-radius: 14px;
    text-align: center;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-card.visite {
    background: linear-gradient(135deg, var(--color-accent), #fbbf24);
    color: #000;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.btn-card.visite:hover {
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.5);
    transform: translateY(-2px);
}

.btn-card.contato {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-main);
}

.btn-card.contato:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

/* Steps - New Style */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.step-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(15, 10, 26, 1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: left;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.2);
    border-color: var(--color-accent);
}

.step-number {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent), #fbbf24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: #000;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.step-icon {
    width: 56px;
    height: 56px;
    background: rgba(245, 158, 11, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 56px;
    margin-bottom: 20px;
}

.step-icon i {
    font-size: 28px;
    color: var(--color-accent);
}

.step-card h4 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
    margin-left: 56px;
}

.step-card p {
    color: var(--color-text-muted);
    font-size: 14px;
    margin-left: 56px;
    line-height: 1.6;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-secondary);
}

.benefit-card i {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.benefit-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* Live Wins */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

.wins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.win-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
}

.win-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.win-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.win-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    object-fit: cover;
}

.win-card-time {
    font-size: 12px;
    color: var(--color-text-muted);
}

.win-card-body {
    text-align: center;
}

.win-card-user {
    display: block;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.win-card-amount {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
}

.win-card-amount.highlight {
    color: var(--color-secondary);
}

.win-card-amount.jackpot {
    color: var(--color-accent);
    animation: jackpot 2s infinite;
}

@keyframes jackpot {
    0%, 100% { text-shadow: 0 0 10px rgba(245, 158, 11, 0.5); }
    50% { text-shadow: 0 0 20px rgba(245, 158, 11, 0.8); }
}

.win-card-footer {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-card);
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 600;
}

/* Providers */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
}

.provider-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s ease;
}

.provider-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-4px);
}

.provider-card i {
    color: var(--color-primary);
    margin-right: 8px;
}

/* News */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: var(--color-primary);
}

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

.news-content {
    padding: 28px;
}

.news-date {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.news-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.news-content h3 a:hover {
    color: var(--color-primary);
}

.news-content p {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* FAQ - New Style 2 */
.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.faq-item {
    background: rgba(168, 85, 247, 0.08);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 20px 20px 0;
    padding: 0;
    transition: all 0.4s ease;
}

.faq-item:hover {
    background: rgba(168, 85, 247, 0.15);
    transform: translateX(8px);
}

.faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 800;
    font-size: 16px;
    gap: 20px;
}

.faq-question-text {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary), #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 18px;
    color: white;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: rgba(168, 85, 247, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon i {
    color: var(--color-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    background: linear-gradient(135deg, var(--color-primary), #7c3aed);
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
    color: white;
}

.faq-answer {
    padding: 0 28px 24px 84px;
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

@media (max-width: 900px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-secondary);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 20px;
}

.testimonial-name {
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
}

.testimonial-win {
    font-size: 13px;
    color: var(--color-accent);
    font-weight: 600;
}

.testimonial-text {
    color: var(--color-text-muted);
    font-style: italic;
    line-height: 1.7;
}

/* Responsible Gaming */
.responsible-gaming-box {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(34, 211, 238, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
}

.rg-icon {
    margin-bottom: 24px;
}

.rg-icon i {
    font-size: 48px;
    color: var(--color-primary);
}

.responsible-gaming-box h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.responsible-gaming-box p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.rg-link {
    color: var(--color-secondary);
    font-weight: 700;
}

/* Footer Promo */
.footer-promo {
    max-width: 1300px;
    margin: 40px auto;
    background: linear-gradient(135deg, var(--color-primary), #7c3aed);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.3);
}

.footer-promo h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 16px;
}

.footer-promo .btn-register {
    background: white;
    color: var(--color-primary);
}

.footer-promo .btn-register:hover {
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .section {
        padding: 56px 24px;
    }
    
    .section-header .section-title {
        font-size: 28px;
    }
    
    .promos-grid, .vertical-games, .news-grid {
        grid-template-columns: 1fr;
    }
}
