/* ===== BONUS PAGE STYLES — Stimule Theme ===== */

/* Hero Section */
.bonus-hero {
    background: linear-gradient(135deg, #1a002e 0%, #2d004d 50%, #4a00e0 100%);
    padding: 40px 0;
    border-bottom: 3px solid #8e24aa;
    margin-bottom: 40px;
}

.bonus-hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.bonus-hero-content {
    flex: 1;
    min-width: 300px;
}

.bonus-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255,107,107,0.4);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.bonus-hero-title {
    font-size: 2.5rem;
    color: #f3e5f5;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bonus-hero-title .highlight {
    color: #ba68c8;
    text-shadow: 0 0 20px rgba(186,104,200,0.5);
}

.bonus-hero-amount {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.amount-big {
    font-size: 3rem;
    font-weight: 900;
    color: #ba68c8;
    text-shadow: 0 0 30px rgba(186,104,200,0.4);
}

.amount-plus {
    font-size: 2rem;
    color: #8e24aa;
    font-weight: 700;
}

.bonus-hero-subtitle {
    font-size: 1.2rem;
    color: #d1c4e9;
    margin-bottom: 25px;
}

.btn-hero-claim {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #8e24aa, #6a1b9a);
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(142,36,170,0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 3px solid #ba68c8;
}

.btn-hero-claim:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(142,36,170,0.7);
    background: linear-gradient(135deg, #6a1b9a, #8e24aa);
}

.bonus-hero-note {
    margin-top: 15px;
    color: #aaa;
    font-size: 0.95rem;
}

.bonus-hero-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.bonus-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(142,36,170,0.4);
    border: 4px solid #4a00e0;
}

/* Section Styles */
.bonus-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    color: #ba68c8;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-intro {
    text-align: center;
    color: #d1c4e9;
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

/* Bonus Tiers */
.bonus-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.bonus-tier {
    background: #1a002e;
    border-radius: 20px;
    border: 2px solid #4a00e0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(142,175,0,0.2);
    border-color: #8e24aa;
}

.tier-header {
    background: linear-gradient(135deg, #4a00e0, #8e24aa);
    padding: 20px;
    text-align: center;
    position: relative;
}

.tier-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    font-weight: 900;
    color: #4a00e0;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.tier-label {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.tier-content {
    padding: 25px;
}

.tier-bonus {
    text-align: center;
    margin-bottom: 15px;
}

.bonus-percent {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ba68c8;
}

.bonus-max {
    display: block;
    color: #d1c4e9;
    font-size: 1.1rem;
}

.tier-free-spins {
    text-align: center;
    background: rgba(142,36,170,0.15);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #ba68c8;
    font-weight: 600;
}

.tier-free-spins i {
    color: #ce93d8;
    margin-right: 5px;
}

.tier-conditions {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-conditions li {
    padding: 8px 0;
    border-bottom: 1px dashed #4a00e0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d1c4e9;
}

.tier-conditions li:last-child {
    border-bottom: none;
}

.tier-conditions i {
    color: #4caf50;
}

/* ===== LIVE COUNTER ===== */
.live-counter {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
    text-align: center;
}

.counter-item {
    background: linear-gradient(135deg, #2d004d, #1a002e);
    padding: 25px 20px;
    border-radius: 15px;
    border: 2px solid #4a00e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.counter-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(142,36,170,0.3);
    border-color: #8e24aa;
}

.counter-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #ba68c8;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(186,104,200,0.4);
}

.counter-label {
    display: block;
    color: #d1c4e9;
    font-size: 0.95rem;
}

.counter-note {
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
    margin-top: 15px;
}

.counter-note i {
    color: #8e24aa;
    margin-right: 5px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== STEPS GUIDE ===== */
.steps-guide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.step-card {
    background: #1a002e;
    padding: 30px 25px;
    border-radius: 20px;
    border: 2px solid #4a00e0;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #ba68c8;
    box-shadow: 0 15px 35px rgba(142,36,170,0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #8e24aa, #6a1b9a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #fff;
    font-size: 1.1rem;
    border: 3px solid #1a002e;
    box-shadow: 0 4px 15px rgba(142,36,170,0.5);
}

.step-icon {
    font-size: 2.5rem;
    color: #ba68c8;
    margin: 25px 0 15px;
}

.step-card h4 {
    color: #f3e5f5;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.step-card p {
    color: #d1c4e9;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.step-progress {
    height: 4px;
    background: #2d004d;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #8e24aa, #ba68c8);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.steps-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-steps {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #8e24aa, #6a1b9a);
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #ba68c8;
    box-shadow: 0 8px 25px rgba(142,36,170,0.4);
}

.btn-steps:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(142,36,170,0.6);
    background: linear-gradient(135deg, #6a1b9a, #8e24aa);
}

.steps-note {
    margin-top: 15px;
    color: #aaa;
    font-size: 0.9rem;
}

/* ===== TESTIMONIALS SLIDER ===== */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 30px auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    background: #1a002e;
    padding: 30px;
    border-radius: 20px;
    border: 2px solid #4a00e0;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #8e24aa;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
}

.testimonial-stars {
    color: #ffd54f;
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.testimonial-text {
    color: #e0d6f0;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.9rem;
}

.testimonial-name {
    color: #ba68c8;
    font-weight: 600;
}

.testimonial-date {
    color: #aaa;
}

.testimonial-win {
    color: #4caf50;
    font-weight: 600;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
}

.slider-btn {
    background: #2d004d;
    border: 2px solid #4a00e0;
    color: #ba68c8;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.slider-btn:hover {
    background: #8e24aa;
    color: #fff;
    border-color: #ba68c8;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4a00e0;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #ba68c8;
    transform: scale(1.2);
}

.testimonial-disclaimer {
    text-align: center;
    color: #aaa;
    font-size: 0.85rem;
    margin-top: 20px;
    padding: 15px;
    background: rgba(142,36,170,0.1);
    border-radius: 10px;
    border-left: 4px solid #8e24aa;
}

.testimonial-disclaimer a {
    color: #ba68c8;
    text-decoration: none;
}

.testimonial-disclaimer a:hover {
    text-decoration: underline;
}

/* Contribution Table */
.contribution-table {
    overflow-x: auto;
    margin-top: 20px;
}

.contribution-table table {
    width: 100%;
    border-collapse: collapse;
    background: #1a002e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.contribution-table th {
    background: linear-gradient(135deg, #4a00e0, #8e24aa);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 700;
}

.contribution-table td {
    padding: 15px;
    border-bottom: 1px solid #2d004d;
    color: #e0d6f0;
}

.contribution-table tr:last-child td {
    border-bottom: none;
}

.contribution-table tr:hover {
    background: #2d004d;
}

.contribution-table i {
    color: #ba68c8;
    margin-right: 8px;
    width: 20px;
}

.table-note {
    margin-top: 15px;
    color: #aaa;
    font-size: 0.95rem;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1a002e;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #4a00e0;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #e0d6f0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #2d004d;
}

.faq-question i {
    transition: transform 0.3s;
    color: #ba68c8;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-answer p {
    padding: 0 0 18px;
    color: #d1c4e9;
    line-height: 1.6;
}

/* Other Bonuses */
.other-bonuses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.bonus-card {
    background: #1a002e;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #4a00e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(142,36,170,0.3);
    border-color: #8e24aa;
}

.bonus-card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bonus-card h4 {
    color: #ba68c8;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.bonus-card p {
    color: #d1c4e9;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.btn-small {
    display: inline-block;
    padding: 8px 20px;
    background: #8e24aa;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-small:hover {
    background: #6a1b9a;
}

/* CTA Section */
.bonus-cta {
    background: linear-gradient(135deg, #4a00e0, #2d004d);
    padding: 50px 0;
    text-align: center;
    margin: 50px 0;
    border-top: 3px solid #8e24aa;
    border-bottom: 3px solid #8e24aa;
}

.bonus-cta h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 800;
}

.bonus-cta p {
    color: #d1c4e9;
    font-size: 1.2rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #4a00e0;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 3px solid #ba68c8;
}

.btn-cta-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    background: #f3e5f5;
}

.cta-note {
    margin-top: 20px;
    color: #aaa;
    font-size: 0.95rem;
}

/* Breadcrumbs */
.breadcrumbs {
    margin: 30px 0;
}

.breadcrumbs ol {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.breadcrumbs li:not(:last-child)::after {
    content: "/";
    margin-left: 10px;
    color: #666;
}

.breadcrumbs a {
    color: #ba68c8;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .bonus-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-hero-amount {
        justify-content: center;
    }
    
    .amount-big {
        font-size: 2.2rem;
    }
    
    .bonus-hero-title {
        font-size: 2rem;
    }
    
    .tier-bonus .bonus-percent {
        font-size: 2rem;
    }
    
    .live-counter {
        grid-template-columns: 1fr;
    }
    
    .steps-guide {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slide.active {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-meta {
        justify-content: center;
    }
    
    .contribution-table {
        font-size: 0.9rem;
    }
    
    .btn-hero-claim,
    .btn-cta-large,
    .btn-steps {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .amount-big { font-size: 1.8rem; }
    .bonus-hero-title { font-size: 1.6rem; }
    .section-title { font-size: 1.6rem; }
    .tier-conditions li { font-size: 0.9rem; }
}