:root {
    --bg-color: #ffe6eb;
    --text-color: #5a3e45;
    --accent-color: #ff8fa3;
    --btn-hover: #ffb3c1;
    --font-heading: 'Pacifico', cursive;
    /* Cute handwritten font */
    --font-body: 'Quicksand', sans-serif;
    /* Soft rounded font */
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

#menu-container {
    width: 100%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(255, 143, 163, 0.3);
    border: 5px solid white;
}

h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0px white, 3px 3px 0px rgba(0, 0, 0, 0.1);
}

.greeting {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #88606b;
}

.game-grid {
    display: grid;
    gap: 15px;
    padding: 10px;
}

.game-card {
    background: var(--accent-color);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(255, 143, 163, 0.4);
}

.game-card:hover {
    transform: translateY(-5px);
    background: var(--btn-hover);
    box-shadow: 0 8px 20px rgba(255, 143, 163, 0.6);
}

.game-card.disabled {
    background: #e0e0e0;
    color: #a0a0a0;
    pointer-events: none;
    box-shadow: none;
}

.icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Floating hearts animation background */
.hearts-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.heart {
    position: absolute;
    bottom: -20px;
    font-size: 20px;
    color: rgba(255, 143, 163, 0.6);
    animation: float 10s infinite ease-in;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}