/* Game Page Styles */

body.game-page {
    overflow: hidden;
    background-color: #000;
}

.game-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
}

.game-header {
    background-color: #1C1C1C;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.back-button {
    display: flex;
    align-items: center;
    color: var(--dirty-gold);
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.back-button i {
    margin-right: 0.5rem;
}

.back-button:hover {
    color: #ffd700;
    transform: translateX(-5px);
}

.game-title {
    font-family: 'Playfair Display', serif;
    color: var(--dirty-gold);
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.game-frame {
    flex: 1;
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: #000;
}

.game-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .game-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.8rem;
    }
    
    .back-button {
        margin-bottom: 0.5rem;
    }
    
    .game-title {
        font-size: 1.5rem;
    }
    
    .game-frame {
        height: calc(100vh - 85px);
    }
}

@media screen and (max-width: 480px) {
    .game-header {
        padding: 0.6rem;
    }
    
    .back-button {
        font-size: 0.9rem;
    }
    
    .game-title {
        font-size: 1.3rem;
    }
}