/* Homepage Specific Styles */

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%),
                linear-gradient(135deg, var(--dark-bg) 0%, #2a1810 100%);
    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="20" cy="20" r="1" fill="%23FFD700" opacity="0.1"/><circle cx="80" cy="40" r="1" fill="%23FF8C00" opacity="0.1"/><circle cx="40" cy="80" r="1" fill="%23FF0000" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-gold);
    margin-bottom: 25px;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #cccccc;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-features {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(10px);
}

.feature i {
    color: var(--primary-gold);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature span {
    font-size: 16px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-visual {
    text-align: center;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.slot-machine {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.slot-machine i {
    font-size: 80px;
    color: var(--primary-gold);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
}

/* Spotlight Games */
.spotlight-games {
    padding: 100px 0;
    background: var(--dark-surface);
}

.games-category {
    margin-bottom: 80px;
}

.games-category h3 {
    font-family: 'Orbitron', monospace;
    font-size: 28px;
    color: var(--primary-gold);
    margin-bottom: 40px;
    text-align: center;
}

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

.game-card {
    background: var(--gradient-dark);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-glow);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(45deg, var(--primary-gold) 0%, var(--accent-orange) 100%);
}

.game-info {
    padding: 25px;
}

.game-info h4 {
    font-family: 'Orbitron', monospace;
    font-size: 20px;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

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

.play-btn {
    background: var(--gradient-main);
    color: var(--dark-bg);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s ease;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.live-game {
    position: relative;
}

.live-game::before {
    content: 'LIVE';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-red);
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    animation: pulse 2s infinite;
}

/* Sports Betting */
.sports-betting {
    padding: 100px 0;
    background: var(--dark-bg);
}

.betting-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.betting-card {
    background: var(--gradient-dark);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.betting-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.betting-card h4 {
    font-family: 'Orbitron', monospace;
    color: var(--primary-gold);
    font-size: 24px;
    margin-bottom: 15px;
}

.betting-card p {
    color: #cccccc;
    margin-bottom: 25px;
    line-height: 1.5;
}

.bet-btn {
    background: var(--primary-green);
    color: var(--dark-bg);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.bet-btn:hover {
    background: #00CC00;
    transform: translateY(-2px);
}

.match-predictions h3 {
    font-family: 'Orbitron', monospace;
    color: var(--text-gold);
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

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

.prediction-card {
    background: var(--gradient-dark);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.prediction-card:hover {
    border-left-color: var(--primary-gold);
    transform: translateX(5px);
}

.prediction-card h4 {
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-size: 18px;
}

.predict-btn {
    background: var(--primary-blue);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 15px;
}

.predict-btn:hover {
    background: #0052CC;
    transform: translateY(-2px);
}

/* How to Start */
.how-to-start {
    padding: 100px 0;
    background: var(--dark-surface);
}

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

.step {
    text-align: center;
    padding: 30px;
    background: var(--gradient-dark);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.step-number {
    background: var(--gradient-main);
    color: var(--dark-bg);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin: 0 auto 20px;
    font-family: 'Orbitron', monospace;
}

.step h3 {
    color: var(--text-gold);
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.4;
}

.step-btn {
    background: transparent;
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.step-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

/* Promotions */
.promotions {
    padding: 100px 0;
    background: var(--dark-bg);
}

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

.promo-card {
    background: var(--gradient-dark);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.promo-card:hover::before {
    opacity: 1;
}

.promo-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

.promo-card h3 {
    color: var(--text-gold);
    font-family: 'Orbitron', monospace;
    font-size: 22px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.promo-card p {
    color: #cccccc;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.promo-btn {
    background: var(--gradient-main);
    color: var(--dark-bg);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

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

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--dark-surface);
}

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

.testimonial {
    background: var(--gradient-dark);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid var(--primary-gold);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 60px;
    color: var(--primary-gold);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
    opacity: 0.3;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial span {
    color: var(--text-gold);
    font-weight: 700;
    font-size: 16px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .slot-machine i {
        font-size: 60px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .betting-options {
        grid-template-columns: 1fr;
    }
    
    .predictions-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .testimonial-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
    }
    
    .slot-machine {
        gap: 20px;
    }
    
    .slot-machine i {
        font-size: 40px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
}