/* Bonus Page Specific Styles */

/* Hero Section Enhancements */
.hero {
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%2349FFEC" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    color: #49FFEC;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, #0a5a5a 0%, #064147 100%);
}

.trust-note {
    text-align: center;
    color: #49FFEC;
    font-style: italic;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid #49FFEC;
}

/* Bonus Types Section */
.bonus-types {
    background: linear-gradient(135deg, #064147 0%, #0a5a5a 100%);
}

.bonus-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.bonus-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(73, 255, 236, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.bonus-category:hover {
    transform: translateY(-5px);
    border-color: #49FFEC;
    box-shadow: 0 8px 25px rgba(73, 255, 236, 0.2);
}

.bonus-category h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.bonus-category ul {
    list-style: none;
    padding: 0;
}

.bonus-category ul li {
    color: #49FFEC;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.bonus-category ul li::before {
    content: '•';
    color: #49FFEC;
    position: absolute;
    left: 0;
}

/* Casino Bonuses Section */
.casino-bonuses {
    background: linear-gradient(135deg, #0a5a5a 0%, #064147 100%);
}

.bonus-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.bonus-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.bonus-table th,
.bonus-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(73, 255, 236, 0.2);
}

.bonus-table th {
    background: rgba(73, 255, 236, 0.2);
    color: #fff;
    font-weight: 600;
}

.bonus-table td {
    color: #49FFEC;
}

.bonus-table tr:hover {
    background: rgba(73, 255, 236, 0.1);
}

/* Sports Betting Bonuses Section */
.sports-bonuses {
    background: linear-gradient(135deg, #064147 0%, #0a5a5a 100%);
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, #0a5a5a 0%, #064147 100%);
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, #064147 0%, #0a5a5a 100%);
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #0a5a5a 0%, #064147 100%);
    text-align: center;
    padding: 6rem 0;
}

.final-cta p {
    font-size: 1.2rem;
    color: #49FFEC;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.disclaimer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #fff;
    opacity: 0.8;
}

/* Mobile Responsive Enhancements */
@media (max-width: 768px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .bonus-categories {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bonus-table {
        font-size: 0.9rem;
    }
    
    .final-cta {
        padding: 4rem 0;
    }
    
    .final-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .bonus-category {
        padding: 1.25rem;
    }
    
    .bonus-table th,
    .bonus-table td {
        padding: 0.75rem;
    }
}

/* Animation Delays for Staggered Effects */
.bonus-category:nth-child(1) { animation-delay: 0.1s; }
.bonus-category:nth-child(2) { animation-delay: 0.2s; }
