/* Bonuses Page Specific Styles */

/* Bonuses Hero Section */
.bonuses-hero {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(29, 78, 216, 0.3)), url('img/bonuses.jpg') no-repeat center center / cover;
    min-height: 95vh;
    position: relative;
    overflow: hidden;
}

.bonuses-hero .hero-content {
    padding-top: 120px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
    animation: slideInUp 0.8s ease-out 0.6s both;
}

.stat {
    text-align: center;
    color: #fff;
}

.stat i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
    opacity: 0.9;
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Section Icons */
.section-icon {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 20px;
    display: block;
}

/* Welcome Bonuses Section */
.welcome-bonuses-section {
    padding: 100px 0;
    background: #f8fafc;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.bonus-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card.featured {
    border: 3px solid #ffd700;
    transform: scale(1.05);
}

.bonus-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(45deg, #ffd700, #20b2aa);
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bonus-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.bonus-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.casino-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.bonus-amount {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 15px;
    color: #fff;
}

.bonus-amount .amount {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.bonus-amount .extra {
    font-size: 1rem;
    opacity: 0.9;
}

.bonus-features {
    margin-bottom: 25px;
}

.bonus-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4b5563;
}

.bonus-features .feature i {
    color: #10b981;
    font-size: 1.1rem;
}

.bonus-cta {
    width: 100%;
    background: linear-gradient(45deg, #10b981, #059669);
    color: #fff;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bonus-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* No Deposit Section */
.no-deposit-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
}

.no-deposit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.no-deposit-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.no-deposit-card:hover {
    transform: translateY(-5px);
    border-color: #2563eb;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}
.casino-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.casino-image img {
    max-width: 100%;
    height: auto;
}
.casino-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 20px;
}

.no-deposit-offer {
    margin-bottom: 25px;
}

.no-deposit-offer i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 15px;
    display: block;
}

.offer-amount {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 5px;
}

.offer-detail {
    color: #6b7280;
    font-size: 1rem;
}

.offer-terms {
    margin-bottom: 25px;
}

.term {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #4b5563;
}

.term i {
    color: #2563eb;
}

.no-deposit-cta {
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.no-deposit-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

/* Free Spins Section */
.free-spins-section {
    padding: 100px 0;
    background: #fff;
}

.free-spins-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.spins-showcase {
    position: sticky;
    top: 100px;
}

.spins-card.mega {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.spins-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.spins-header i {
    font-size: 2rem;
    color: #ffd700;
}

.spins-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.spins-amount {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.spins-details {
    margin-bottom: 35px;
}

.spins-details .detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.spins-details .detail i {
    color: #ffd700;
}

.spins-cta.primary {
    background: #fff;
    color: #667eea;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 auto;
}

.spins-cta.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

.spins-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.spins-item {
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.spins-item:hover {
    background: #fff;
    border-color: #2563eb;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
}

.spins-info .casino {
    font-weight: bold;
    color: #1f2937;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.spins-info .spins-offer {
    color: #2563eb;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 3px;
}

.spins-info .spins-game {
    color: #6b7280;
    font-size: 0.9rem;
}

.spins-btn {
    background: linear-gradient(45deg, #10b981, #059669);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.spins-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
}

/* Reload Bonuses Section */
.reload-bonuses-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
}

.reload-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.reload-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #2563eb, #1d4ed8);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.timeline-content {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin: 0 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
    color: #1f2937;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.bonus-offer {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #6b7280;
    margin-bottom: 15px;
    line-height: 1.6;
}

.bonus-code {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
}

/* Cashback Section */
.cashback-section {
    padding: 100px 0;
    background: #fff;
}

.cashback-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.cashback-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.cashback-card.premium {
    border-color: #ffd700;
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
}

.cashback-card.premium::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    border-radius: 22px;
    z-index: -1;
}

.cashback-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cashback-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.cashback-header i {
    font-size: 2rem;
    color: #2563eb;
}

.cashback-header h3 {
    font-size: 1.3rem;
    color: #1f2937;
    margin: 0;
}

.cashback-rate {
    font-size: 4rem;
    font-weight: bold;
    color: #2563eb;
    margin-bottom: 25px;
    position: relative;
}

.cashback-rate::after {
    content: '%';
    font-size: 2rem;
    position: absolute;
    top: 0;
    margin-left: 5px;
}

.cashback-details {
    margin-bottom: 30px;
}

.cashback-details .detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #4b5563;
}

.cashback-details .detail i {
    color: #10b981;
}

.cashback-cta {
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
}

.cashback-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

/* VIP Section */
.vip-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: #fff;
}
.vip-section h2 {
    color: #fff;
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tier {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.tier.featured {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.tier-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.tier:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.tier.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.tier-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.tier h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #fff;
}

.tier-benefits {
    margin-bottom: 25px;
}

.benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefit i {
    color: #10b981;
}

.tier-requirement {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #ffd700;
}

/* Terms Section */
.terms-section {
    padding: 100px 0;
    background: #f8fafc;
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.term-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.term-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.term-icon {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 20px;
    text-align: center;
}

.term-card h3 {
    color: #1f2937;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.term-card p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 20px;
}

.term-example {
    background: #e0f2fe;
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #0277bd;
    border-left: 4px solid #2563eb;
}

.term-tip {
    background: #f0fdf4;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #166534;
    border-left: 4px solid #10b981;
}

.term-tip i {
    color: #fbbf24;
}

.term-warning {
    background: #fef2f2;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

.term-warning i {
    color: #f59e0b;
}

.contribution-chart {
    background: #f8fafc;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}

.contribution-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.contribution-item:last-child {
    margin-bottom: 0;
}

.terms-checklist {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.terms-checklist h3 {
    color: #1f2937;
    font-size: 1.4rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.terms-checklist h3 i {
    color: #10b981;
    font-size: 1.5rem;
}

.checklist-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #4b5563;
}

.checklist-item i {
    color: #10b981;
    font-size: 1.1rem;
}

/* Strategies Section */
.strategies-section {
    padding: 100px 0;
    background: #fff;
}

.strategy-tabs {
    max-width: 900px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #6b7280;
}

.tab-btn.active {
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    border-color: #2563eb;
    color: #fff;
}

.tab-btn:hover:not(.active) {
    border-color: #2563eb;
    color: #2563eb;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.strategy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.strategy-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.strategy-card:hover {
    background: #fff;
    border-color: #2563eb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.strategy-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.strategy-card h4 {
    color: #1f2937;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.strategy-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Bonus FAQ Section */
.bonus-faq-section {
    padding: 100px 0;
    background: #f8fafc;
}

/* Active Navigation Link */
.nav-link.active {
    color: #2563eb;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .bonuses-grid {
        grid-template-columns: 1fr;
    }

    .free-spins-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .spins-showcase {
        position: static;
    }

    .reload-timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .timeline-marker {
        position: absolute;
        left: 0;
    }

    .timeline-content {
        margin: 0;
    }

    .vip-tiers {
        grid-template-columns: 1fr;
    }

    .tier.featured {
        transform: none;
    }

    .tier.featured:hover {
        transform: translateY(-5px);
    }

    .terms-grid {
        grid-template-columns: 1fr;
    }

    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }

    .strategy-cards {
        grid-template-columns: 1fr;
    }

    .checklist-items {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .bonuses-hero .hero-content {
        padding-top: 100px;
    }

    .bonus-card {
        padding: 20px;
    }

    .no-deposit-card {
        padding: 25px;
    }

    .spins-card.mega {
        padding: 30px;
    }

    .spins-amount {
        font-size: 2.5rem;
    }

    .timeline-content {
        padding: 20px;
    }

    .cashback-card {
        padding: 25px;
    }

    .tier {
        padding: 25px;
    }

    .term-card {
        padding: 25px;
    }

    .terms-checklist {
        padding: 30px;
    }
}