body {
    font-family: "Georgia", serif;
    background-color: #f4e4c1;
    color: #3e2723;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 1rem;
}
.container {
    max-width: 600px;
    width: 100%;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}
.score-card {
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}
.score-card.global {
    background-color: #ecfdf5; /* Light green for global */
    border-color: #a7f3d0;
}
.score-card.personal {
    background-color: #eff6ff; /* Light blue for personal */
    border-color: #bfdbfe;
}
.score-value {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    color: #10b981; /* Green for global */
}
.personal .score-value {
    color: #3b82f6; /* Blue for personal */
}
#clickButton {
    transition: transform 0.1s, box-shadow 0.1s;
}
#clickButton:active {
    transform: scale(0.98);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
#attackButton {
     transition: transform 0.1s, box-shadow 0.1s;
}
#attackButton:active {
     transform: scale(0.98);
     box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
