/* Tetris Page Specific Styles */
/* Game Container */
.game-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 50px;
    height: 100%;
    width: 100%;
    gap: 40px;
}
/* Canvas Styles */
#game {
    background-color: black;
	border: 5px solid white;
    width: auto;
    max-width: 100%;
    height: auto;
    backdrop-filter: blur(7px);
}
#next {
    background-color: black;
    border: 5px solid white;
    width: auto;
    max-width: 100%;
    height: auto;
}
/* Side Panel for Score, Lines, Level, Next Piece */
.side-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: #ffffff;
    font-size: 48px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
/* Controls Container */
.controls {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 20px;
}
/* Movement Controls - Arcade Grid Layout */
.movement-controls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    width: 600px; /* Reduced width to fit kiosk */
}
/* Game Controls - Pause and Restart */
.game-controls {
    display: flex;
    justify-content: center;
    gap: 40px;
}
/* Control Buttons - Flat Blue */
.control-button {
    font-size: 36px;
    padding: 15px 60px;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
    color: #ffffff;
    background-color: #0057b8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.control-button:hover, .control-button:active {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
/* Game Over Overlay */
#game-over-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 72px;
    text-align: center;
    z-index: 10;
    visibility: hidden;
}
#restart-overlay-button {
    font-size: 48px;
    padding: 20px 80px;
    margin-top: 40px;
    border-radius: 50px;
    background-color: #0057b8;
    color: #ffffff;
    border: none;
    cursor: pointer;
}
/* Notification Styles */
.notification {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 100px;
    color: #a4d65e;
    text-shadow: 0 0 10px #ffffff;
    opacity: 0;
    z-index: 5;
}