/* Home 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;
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, #0a5a5a 0%, #064147 100%);
}

/* Casino Games Section */
.casino-games {
    background: linear-gradient(135deg, #064147 0%, #0a5a5a 100%);
}

/* Bonuses Section */
.bonuses {
    background: linear-gradient(135deg, #0a5a5a 0%, #064147 100%);
    text-align: center;
}

.bonuses .section-subtitle {
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Mobile App Section */
.mobile-app {
    background: linear-gradient(135deg, #064147 0%, #0a5a5a 100%);
    text-align: center;
}

.mobile-app .section-subtitle {
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Sports Betting Section */
.sports-betting {
    background: linear-gradient(135deg, #0a5a5a 0%, #064147 100%);
    text-align: center;
}

.sports-betting .section-subtitle {
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Player Feedback Section */
.player-feedback {
    background: linear-gradient(135deg, #064147 0%, #0a5a5a 100%);
}

/* Quick Start Section */
.quick-start {
    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;
}

/* Enhanced Button Styles for Home Page */
.hero .btn {
    font-size: 1.1rem;
    padding: 16px 32px;
    min-width: 200px;
}

/* Feature Card Enhancements */
.feature-card {
    border: 1px solid rgba(73, 255, 236, 0.2);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: #49FFEC;
    box-shadow: 0 8px 25px rgba(73, 255, 236, 0.2);
}

/* Game Category Enhancements */
.game-category {
    border: 1px solid rgba(73, 255, 236, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.game-category:hover {
    border-color: #49FFEC;
    box-shadow: 0 8px 25px rgba(73, 255, 236, 0.2);
    transform: translateY(-8px);
}

/* Review Card Enhancements */
.review-card {
    border: 1px solid rgba(73, 255, 236, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: #49FFEC;
    box-shadow: 0 8px 25px rgba(73, 255, 236, 0.2);
    transform: translateY(-5px);
}

/* Step Card Enhancements */
.step-card {
    border: 1px solid rgba(73, 255, 236, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: #49FFEC;
    box-shadow: 0 8px 25px rgba(73, 255, 236, 0.2);
    transform: translateY(-5px);
}

/* FAQ Item Enhancements */
.faq-item {
    border: 1px solid rgba(73, 255, 236, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #49FFEC;
    box-shadow: 0 4px 15px rgba(73, 255, 236, 0.1);
}

/* 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;
    }
    
    .hero .btn {
        font-size: 1rem;
        padding: 14px 28px;
        min-width: 180px;
    }
    
    .final-cta {
        padding: 4rem 0;
    }
    
    .final-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero .btn {
        font-size: 0.9rem;
        padding: 12px 24px;
        min-width: 160px;
    }
    
    .feature-card,
    .game-category,
    .review-card,
    .step-card {
        padding: 1.25rem;
    }
}

/* Animation Delays for Staggered Effects */
.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }

.game-category:nth-child(1) { animation-delay: 0.1s; }
.game-category:nth-child(2) { animation-delay: 0.2s; }
.game-category:nth-child(3) { animation-delay: 0.3s; }
.game-category:nth-child(4) { animation-delay: 0.4s; }

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
