/* Sections */
.section {
    padding: 60px 25px;
    max-width: 1280px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.dark-top-section .section-title {
    color: var(--color-text-light);
}

.light-bottom-section .section-title {
    color: var(--color-text-dark);
}

.title-dot {
    display: none;
}

.view-all {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 700;
    margin-top: 10px;
}

/* Cards General */
.dark-top-section .promo-card,
.dark-top-section .game-card,
.dark-top-section .wins-table-wrapper,
.dark-top-section .provider-card {
    background-color: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.light-bottom-section .step-card,
.light-bottom-section .benefit-card,
.light-bottom-section .news-card,
.light-bottom-section .faq-item,
.light-bottom-section .testimonial-card,
.light-bottom-section .responsible-gaming-box,
.light-bottom-section .app-download-banner {
    background-color: var(--bg-light-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effects */
.dark-top-section .promo-card:hover,
.dark-top-section .game-card:hover,
.light-bottom-section .step-card:hover,
.light-bottom-section .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.3);
}

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

.promo-card {
    padding: 30px;
}

.promo-badge {
    background: rgba(255, 215, 0, 0.1);
    color: var(--color-primary);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.promo-card h4 {
    font-size: 22px;
    margin: 0 0 10px 0;
}

.promo-card p {
    color: var(--color-muted-light);
    margin: 0 0 20px 0;
}

.promo-cta {
    color: var(--color-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.game-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.game-card-info {
    padding: 20px;
    color: var(--color-muted-light);
    font-size: 14px;
}

.game-card-actions {
    padding: 0 20px 20px;
    display: flex;
    gap: 10px;
}

.btn-card {
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    flex: 1;
}

.btn-card.visite {
    background: var(--color-primary);
    color: #111; /* Dark text for better readability on gold */
}

.btn-card.contato {
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--color-text-light);
}

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

.step-card {
    padding: 30px;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    font-weight: 800;
    color: var(--border-light);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.step-title {
    font-size: 20px;
    margin: 0 0 10px 0;
}

.step-desc {
    color: var(--color-muted-dark);
    margin: 0;
}

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

.benefit-card {
    padding: 30px 20px;
    text-align: center;
}

.benefit-card i {
    font-size: 36px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.benefit-card h4 {
    font-size: 16px;
    margin: 0 0 10px 0;
    color: var(--color-text-dark);
}

.benefit-card p {
    color: var(--color-muted-dark);
    margin: 0;
    font-size: 13px;
}

/* Live Wins Grid Layout */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 0, 0, 0.1);
    color: #ff4d4d;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    border: 1px solid rgba(255, 77, 77, 0.2);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ff4d4d;
    border-radius: 50%;
    display: inline-block;
    animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255, 77, 77, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 77, 77, 0); }
}

.wins-grid-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.wins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.win-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.win-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
}

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

.win-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #000;
    padding: 4px;
}

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

.win-card-body {
    text-align: center;
    padding: 10px 0;
}

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

.win-card-amount {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-primary);
}

.win-card-amount.highlight {
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.win-card-amount.jackpot {
    color: var(--color-secondary);
    text-shadow: 0 0 20px rgba(233, 30, 99, 0.4);
    animation: jackpotPulse 1.5s infinite;
}

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

.win-card-footer {
    font-size: 12px;
    color: var(--color-muted-dark);
    text-align: center;
    border-top: 1px solid var(--border-light);
    padding-top: 10px;
    font-weight: 600;
}

.win-card.featured {
    border-color: rgba(0, 255, 136, 0.3);
}

.win-card.jackpot-card {
    border-color: rgba(233, 30, 99, 0.3);
    background: linear-gradient(145deg, var(--bg-dark-card), #1e1528);
}

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

.provider-card {
    padding: 20px;
    text-align: center;
    font-weight: 700;
    color: var(--color-text-light);
}

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

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

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.news-content {
    padding: 20px;
}

.news-date {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 12px;
}

.news-content h3 {
    margin: 10px 0;
    font-size: 18px;
}

.news-content p {
    color: var(--color-muted-dark);
    margin: 0;
}

/* FAQ */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    padding: 0 20px 20px;
    color: var(--color-muted-dark);
    display: none;
}

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

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: var(--color-primary);
}

.faq-question i {
    transition: transform 0.3s ease;
}

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

.testimonial-card {
    padding: 30px;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.testimonial-name {
    font-weight: 700;
    display: block;
}

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

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

/* RG Box */
.responsible-gaming-box {
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.rg-icon i {
    font-size: 40px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

/* App Download */
.app-download-banner {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-light-card), #1e2538); /* Casino dark gradient */
}

.app-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.app-title span {
    color: var(--color-primary);
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.btn-app {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-app i {
    font-size: 24px;
}

/* Footer Promo */
.footer-promo {
    background: var(--color-primary);
    color: #111; /* Dark text on gold */
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    max-width: 1280px;
    margin: 40px auto;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.footer-promo h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
}

.footer-promo p {
    margin: 0;
}