/* Games Page Specific Styles */
body {
    padding-top: 100px;
}

/* Games Hero */
.games-hero {
    padding: 60px 0;
    text-align: center;
    background: radial-gradient(circle at center, rgba(0, 210, 255, 0.1) 0%, transparent 70%);
}

.games-hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #00d2ff, #6c5ce7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.games-hero h2 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffd700;
}

.games-hero p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

/* Games Section */
.games-section,
.live-games-section {
    padding: 60px 0;
}

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

.game-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(108, 92, 231, 0.3);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: #6c5ce7;
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.4);
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-info {
    padding: 25px;
    position: relative;
}

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

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

.play-btn {
    background: linear-gradient(45deg, #6c5ce7, #a855f7);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
}

.play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.live-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff0000, #ff4444);
    color: white;
    padding: 4px 8px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.live-badge i {
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    text-align: center;
}

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

/* Responsive Design for Games */
@media (max-width: 1024px) {
    .games-hero h1 {
        font-size: 2.2rem;
    }
    
    .games-hero h2 {
        font-size: 1.3rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .game-card img {
        height: 150px;
    }
    
    .game-info {
        padding: 20px;
    }
    
    .game-info h3 {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .games-hero h1 {
        font-size: 1.8rem;
    }
    
    .games-hero h2 {
        font-size: 1.1rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .game-info {
        padding: 15px;
    }
    
    .play-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}