/**
 * Harryson Game Styles
 */

.harryson-game-container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    font-family: 'Press Start 2P', 'Courier New', monospace;
}

#harryson-game-canvas {
    background-color: #87CEEB; /* Sky blue background */
    border: 4px solid #333;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    image-rendering: pixelated; /* For retro pixel art look */
    image-rendering: crisp-edges;
}

.harryson-game-score {
    font-size: 20px;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #333;
    color: white;
    border-radius: 5px 5px 0 0;
}

.harryson-game-controls {
    margin-top: 15px;
}

#harryson-start-button,
#harryson-restart-button {
    background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Press Start 2P', 'Courier New', monospace;
}

#harryson-start-button:hover,
#harryson-restart-button:hover {
    background-color: #45a049;
}

/* Game Over Message */
.harryson-game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: red;
    text-shadow: 2px 2px 0 #000;
    display: none;
}

/* Mobile controls for touch devices */
.harryson-mobile-controls {
    display: none;
    margin-top: 10px;
}

.harryson-mobile-button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 20px 40px;
    margin: 0 10px;
    font-size: 24px;
    border-radius: 10px;
}

/* Show mobile controls on touch devices */
@media (hover: none) and (pointer: coarse) {
    .harryson-mobile-controls {
        display: block;
    }
}
