/* ===== BONUS PAGE STYLES ===== */

/* Hero Section */
.bonus-hero {
    background: linear-gradient(135deg, #fff9e6 0%, #ffecb3 50%, #ffd54f 100%);
    padding: 40px 0;
    border-bottom: 3px solid #d4af00;
    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: #ff6b6b;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.bonus-hero-title {
    font-size: 2.5rem;
    color: #d45500;
    margin-bottom: 20px;
    line-height: 1.2;
}

.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: #d45500;
    text-shadow: 2px 2px 0 #fff, 3px 3px 0 rgba(212,85,0,0.2);
}

.amount-plus {
    font-size: 2rem;
    color: #ff9800;
    font-weight: 700;
}

.bonus-hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 25px;
}

.btn-hero-claim {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff9800, #ff6b00);
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(212,85,0,0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 3px solid #d45500;
}

.btn-hero-claim:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212,85,0,0.7);
    background: linear-gradient(135deg, #ff6b00, #ff9800);
}

.bonus-hero-note {
    margin-top: 15px;
    color: #666;
    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(0,0,0,0.2);
    border: 4px solid #fff;
}

/* Section Styles */
.bonus-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2rem;
    color: #d45500;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-intro {
    text-align: center;
    color: #666;
    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: #fffde7;
    border-radius: 20px;
    border: 2px solid #ffe082;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212,175,0,0.3);
    border-color: #ff9800;
}

.tier-header {
    background: linear-gradient(135deg, #d4af00, #ffcc00);
    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: #d45500;
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.tier-label {
    display: block;
    color: #000;
    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: #d45500;
}

.bonus-max {
    display: block;
    color: #666;
    font-size: 1.1rem;
}

.tier-free-spins {
    text-align: center;
    background: rgba(255,204,0,0.1);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: #d45500;
    font-weight: 600;
}

.tier-free-spins i {
    color: #ff9800;
    margin-right: 5px;
}

.tier-conditions {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-conditions li {
    padding: 8px 0;
    border-bottom: 1px dashed #ffe082;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.tier-conditions li:last-child {
    border-bottom: none;
}

.tier-conditions i {
    color: #4caf50;
}

/* Wagering Calculator */
.wagering-calculator {
    background: #fffde7;
    padding: 30px;
    border-radius: 20px;
    border: 2px dashed #d4af00;
    max-width: 600px;
    margin: 0 auto;
}

.calc-input-group {
    margin-bottom: 20px;
}

.calc-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.calc-input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ffe082;
    border-radius: 10px;
    font-size: 1.1rem;
    transition: border-color 0.3s;
}

.calc-input-group input:focus {
    outline: none;
    border-color: #ff9800;
}

.btn-calc {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff9800, #ff6b00);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-calc:hover {
    transform: translateY(-2px);
}

.calc-result {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #ffe082;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #fff3cd;
}

.result-item:last-child {
    border-bottom: none;
}

.result-label {
    color: #666;
}

.result-value {
    font-weight: 800;
    color: #d45500;
    font-size: 1.2rem;
}

.result-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Contribution Table */
.contribution-table {
    overflow-x: auto;
    margin-top: 20px;
}

.contribution-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contribution-table th {
    background: linear-gradient(135deg, #d4af00, #ffcc00);
    color: #000;
    padding: 15px;
    text-align: left;
    font-weight: 700;
}

.contribution-table td {
    padding: 15px;
    border-bottom: 1px solid #ffe082;
}

.contribution-table tr:last-child td {
    border-bottom: none;
}

.contribution-table tr:hover {
    background: #fffde7;
}

.contribution-table i {
    color: #d45500;
    margin-right: 8px;
    width: 20px;
}

.table-note {
    margin-top: 15px;
    color: #666;
    font-size: 0.95rem;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fffde7;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #ffe082;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #fff9e6;
}

.faq-question i {
    transition: transform 0.3s;
    color: #d45500;
}

.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: #555;
    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: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #ffe082;
    transition: transform 0.3s, box-shadow 0.3s;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212,175,0,0.2);
    border-color: #ff9800;
}

.bonus-card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.bonus-card h4 {
    color: #d45500;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.bonus-card p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.btn-small {
    display: inline-block;
    padding: 8px 20px;
    background: #ff9800;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-small:hover {
    background: #ff6b00;
}

/* CTA Section */
.bonus-cta {
    background: linear-gradient(135deg, #d4af00, #ffcc00);
    padding: 50px 0;
    text-align: center;
    margin: 50px 0;
    border-top: 3px solid #000;
    border-bottom: 3px solid #000;
}

.bonus-cta h3 {
    font-size: 2rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 800;
}

.bonus-cta p {
    color: #333;
    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: #000;
    color: #ffcc00;
    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.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    border: 3px solid #333;
}

.btn-cta-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background: #1a1a1a;
}

.cta-note {
    margin-top: 20px;
    color: #333;
    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: #999;
}

.breadcrumbs a {
    color: #d45500;
    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;
    }
    
    .wagering-calculator {
        padding: 20px;
    }
    
    .contribution-table {
        font-size: 0.9rem;
    }
    
    .btn-hero-claim,
    .btn-cta-large {
        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;
    }
}