/* Lain Runner Game Styles */
.lain-runner-container {
    width: 100%;
    height: 100%;
    background-color: #000;
    position: relative;
    overflow: hidden;
    font-family: 'Courier New', Courier, monospace;
    color: #b00; /* Dark Red */
    user-select: none;
}

.lain-runner-canvas {
    display: block;
    width: 100%;
    height: 100%;
    image-rendering: pixelated;
}

.lain-runner-ui {
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: right;
    pointer-events: none;
}

.lain-score {
    font-size: 20px;
    text-shadow: 0 0 5px #f00;
}

.lain-hiscore {
    font-size: 14px;
    color: #800;
}

.lain-game-over {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: none;
}

.lain-game-over h1 {
    font-size: 40px;
    color: #f00;
    text-shadow: 2px 2px 0px #fff, -2px -2px 0px #000;
    margin-bottom: 20px;
    animation: glitch-text 0.3s infinite;
}

.lain-game-over p {
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    animation: blink 1s infinite;
}

@keyframes glitch-text {
    0% { transform: translate(0) }
    20% { transform: translate(-2px, 2px) }
    40% { transform: translate(-2px, -2px) }
    60% { transform: translate(2px, 2px) }
    80% { transform: translate(2px, -2px) }
    100% { transform: translate(0) }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Simple shapes for the game if we don't have images */
.lain-player {
    /* Placeholder for player sprite */
}

.lain-obstacle {
    /* Placeholder for obstacle */
}
