body {
    background-color: #333;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

main {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

#game-status {
    position: relative;
    z-index: 1000;
    background-color: rgba(0,0,0,0.8);
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    border: 2px solid rgba(255,255,255,0.1);
}

#game-status h1 {
    text-align: center;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 24px;
    color: #ff0;
    text-transform: uppercase;
}

.subtitle {
    font-size: 14px;
    color: #ccc;
    margin-top: 0;
    margin-bottom: 15px;
    font-style: italic;
}

#stats {
    display: flex;
    justify-content: space-between;
    width: 300px;
    margin-bottom: 10px;
}

#stats div {
    font-size: 18px;
    margin-bottom: 8px;
}

#controls {
    text-align: center;
    margin-top: 10px;
    z-index: 1001;
    position: relative;
}

#resetButton {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    background-color: #444;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 8px;
    min-width: 140px;
    transition: all 0.3s ease;
    z-index: 1002;
    position: relative;
}

#resetButton:hover {
    background-color: #666;
    border-color: #ff0;
    color: #ff0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

#resetButton:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

button {
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
} 