* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: linear-gradient(135deg, #5da9e7 0%, #6c93db 50%, #4c78b1 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow: hidden;
}

#gameButton {
    position: absolute;
    background-color: #1e50ac;
    color: #1f2937;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.2s;
    transform: translate(-50%, -50%);
}

#gameButton:hover {
    background-color: #3f61d1;
}

#missMessage {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(79, 107, 199);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    display: none;
}

#missMessage.show {
    display: block;
    animation: bounce 1s;
}

#missMessage p {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
}

#resetButton {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    color: #33b0ea;
    font-weight: bold;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.2s;
}

#resetButton:hover {
    background-color: #f3f4f6;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}