/* Base styles */
body {
    font-family: 'Cambria', serif;
    text-align: center;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #f8f8f8;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Heading styles */
h1 {
    font-size: 3rem;
    color: #ffffff;
    margin: 2rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Paragraph styles */
p {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin: 1rem 0;
}

/* Game stats styles */
.game-stats {
    margin: 1.5rem 0;
    color: #d1d1d1;
    font-style: italic;
}

/* Button container styles */
.buttons form {
    margin-top: 2rem;
}

/* Button styles */
button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    margin: 0.5rem;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #ff7e5f, #feb47b);
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Game over styles */
.game-over {
    color: #ff4d4d;
    font-weight: bold;
    font-size: 1.75rem;
    margin: 2rem 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Responsive styles */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    p {
        font-size: 1rem;
    }

    button {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .game-over {
        font-size: 1.5rem;
    }
}