/* Game Page Specific Styles */
.game-main {
    min-height: 100vh;
    padding-top: 2rem;
}

.game-hero {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-content {
    text-align: center;
}

.game-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    font-family: 'Sigmar', sans-serif;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-showcase {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
}

.game-image-container {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    cursor: pointer;
}

.game-image-container:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.game-featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-image-container:hover .game-featured-image {
    transform: scale(1.1);
}

.game-image-container:hover .play-overlay {
    opacity: 1;
}

.play-now-btn {
  display: inline-flex;
    background: linear-gradient(270deg, #16E2A9 0%, #8D3292 100%);
  text-decoration: unset;
    color: #fff;
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

 .play-now-btn:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

.game-description {
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 2rem;
    margin-top: 24px;
}

/* Floating animation */
@keyframes gameHover {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-15px); 
    }
}

.game-image-container {
    animation: gameHover 4s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 768px) {
    .game-hero {
        padding: 2rem 1rem;
    }
    
    .game-image-container {
        width: 300px;
        height: 300px;
    }
    
    .game-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .game-description {
        font-size: 1rem;
        padding: 1.5rem;
    }
    
    .play-now-btn {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .game-image-container {
        width: 250px;
        height: 250px;
    }
    
    .game-title {
        font-size: 2rem;
    }
    
    .game-description {
        padding: 1rem;
    }
}