/* Global Styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background-color: #1a1a1a; /* Dark background */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 400' opacity='0.3'%3E%3Cpath d='M100 0 C50 50 50 150 100 200 C150 150 150 50 100 0 M100 200 C50 250 50 350 100 400 C150 350 150 250 100 200' fill='none' stroke='%23ff69b4' stroke-width='2'/%3E%3C/svg%3E"); /* Semi-transparent SVG silhouette (elegant woman curve) */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header/Nav */
header {
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
}
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1rem;
}
nav a {
    color: #ff69b4; /* Pink accent */
    text-decoration: none;
    font-weight: bold;
}

/* Main Content */
main {
    text-align: center;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
h1, h2 {
    font-family: 'Playfair Display', serif;
    color: #ff69b4;
    margin-bottom: 1rem;
}
.tagline {
    font-style: italic;
    color: #ccc;
}

/* Game Specific */
.game .levels button, .game button {
    background: linear-gradient(to bottom, #ff69b4, #c71585); /* Pink gradient */
    border: none;
    color: white;
    padding: 1rem 2rem;
    margin: 0.5rem;
    border-radius: 20px; /* Rounded for softness */
    cursor: pointer;
    font-size: 1.2rem;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.game button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}
#prompt {
    background: rgba(255, 105, 180, 0.2); /* Soft pink overlay */
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    font-size: 1.1rem;
    color: #fff;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
}
footer a {
    color: #ff69b4;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
    }
    .game .levels, .game button {
        width: 100%;
        margin: 0.5rem 0;
    }
    main {
        padding: 1rem;
    }
}