/* Homepage Specific Styles */

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f051d 0%, #1a0b2e 25%, #2d1b3d 50%, #1a0b2e 75%, #0f051d 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 50px;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ffd700, #ff6b35, #f7931e);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.hero-subtitle {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

/* Feature Cards */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.feature-card i {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 15px;
    display: block;
}

.feature-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Spotlight Games */
.spotlight-games {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #0f051d 50%, #1a0b2e 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
    border-color: rgba(255, 107, 53, 0.5);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
}

.game-info {
    padding: 20px;
}

.game-info h3 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.game-info p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.5;
}

.game-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.game-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.5);
}

/* Live Casino */
.live-casino {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d1b3d 0%, #1a0b2e 100%);
}

.live-games {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.live-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.live-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.2);
}

.live-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #37b24d, #1c7ed6);
}

.live-card h4 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    margin-bottom: 10px;
}

.live-card p {
    color: #ccc;
    font-size: 0.9rem;
}

/* Sports Betting */
.sports-betting {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f051d 0%, #1a0b2e 100%);
}

.sports-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.sport-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.sport-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
}

.sport-item i {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 15px;
}

.sport-item h4 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    margin-bottom: 10px;
}

.predictions h3 {
    font-family: 'Orbitron', monospace;
    color: #ff6b35;
    margin-bottom: 20px;
}

.prediction-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid #ffd700;
    color: #ccc;
}

/* Promotions */
.promotions {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b3d 100%);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.promo-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.promo-card.highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.2));
    border-color: rgba(255, 107, 53, 0.5);
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.3);
}

.promo-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.promo-card h4 {
    font-family: 'Orbitron', monospace;
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.promo-card p {
    color: #ccc;
    margin-bottom: 15px;
}

.promo-card code {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.promo-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.5);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f051d 0%, #1a0b2e 100%);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-5px);
}

.quote {
    font-size: 1.1rem;
    color: #fff;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.author {
    color: #ffd700;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a0b2e 0%, #0f051d 100%);
}

.trust-content {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-content i {
    font-size: 3rem;
    color: #37b24d;
}

.trust-content h3 {
    font-family: 'Orbitron', monospace;
    color: #37b24d;
    font-size: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .sports-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 20px;
    }
}