/* Game Page Specific Styles */

.game-page {
    padding-top: 80px;
    min-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: var(--black);
}

.game-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 0, 255, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.game-title-container {
    text-align: center;
    padding: 40px 20px;
    width: 100%;
}

.game-page-title {
    font-size: 3rem;
    margin-bottom: 10px;
}

.game-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.game-container::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 15px;
    right: 15px;
    height: 5px;
    background: linear-gradient(90deg, var(--neon-pink), var(--neon-blue));
    filter: blur(2px);
    z-index: -1;
}

.game-container::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 15px;
    right: 15px;
    height: 5px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
    filter: blur(2px);
    z-index: -1;
}

.game-container iframe {
    border: none;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 240, 255, 0.3);
    background-color: var(--black);
}

.game-actions {
    margin: 30px 0 60px;
    text-align: center;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .game-page-title {
        font-size: 2rem;
    }
    
    .game-container iframe {
        height: 400px;
    }
}

@media screen and (max-width: 480px) {
    .game-container iframe {
        height: 300px;
    }
}