/* ---- Base ---- */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(120deg, #d6c1f5, #ffe6e6); /* lilac → blush cream */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* ---- Container ---- */
.container {
    text-align: center;
    max-width: 900px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

/* ---- Title ---- */
h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    color: #6a3f7d; /* dreamy purple */
    margin-bottom: 2rem;
    text-shadow: 0 0 8px rgba(106, 63, 125, 0.5);
}

/* ---- Buttons ---- */
.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn {
    background: rgba(255, 223, 180, 0.7); /* golden peach */
    color: #6a3f7d;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn:hover {
    background: rgba(255, 223, 180, 1);
    box-shadow: 0 0 20px rgba(255, 223, 180, 0.6);
    transform: translateY(-3px);
}

/* ---- Curiosity Box ---- */
.curiosity-box {
    background: rgba(255, 255, 255, 0.5);
    padding: 1rem 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.curiosity-box p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.curiosity-box button {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: none;
    background: #ffd3a5;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s;
}

.curiosity-box button:hover {
    background: #ffc678;
}

/* ---- Footer ---- */
footer {
    margin-top: 2rem;
    font-size: 0.9em;
    color: rgba(106, 63, 125, 0.7);
    font-style: italic;
}

/* ---- Music Toggle ---- */
.music-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
}

.music-toggle button {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: none;
    background: #ffd3a5;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
}

.music-toggle button:hover {
    background: #ffc678;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    h1 {
        font-size: 2.2em;
    }
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    .curiosity-box {
        padding: 1rem 1.5rem;
    }
}
