.game-title {
    text-align: center;
    color: #FF8C42;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(232, 184, 125, 0.3);
}

.game-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    min-height: 500px;
    height: calc(100vh - 300px);
    max-height: 900px;
    overflow: hidden;
}

#game-canvas {
    position: absolute;
    left: 0;
    top: 0;
}

#game-canvas canvas {
    display: block;
}

@media (max-width: 768px) {
    .game-container {
        height: calc(100vh - 200px);
        min-height: 400px;
    }

    .game-title {
        font-size: 1.8rem;
    }
}

.fullscreen-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.fullscreen-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #FF8C42;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid #E8B87D;
    box-shadow: 0 2px 10px rgba(255, 140, 66, 0.15);
}

.fullscreen-btn:hover {
    background: #E87D3A;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.25);
}

.browser-fullscreen-btn {
    background: #4CAF50;
    border-color: #45a049;
}

.browser-fullscreen-btn:hover {
    background: #43A047;
}

.fullscreen-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

.fullscreen-text {
    font-family: 'Nunito', sans-serif;
}
