body {
    background-color: #1a1a2e; /* Dark blue/purple background */
    color: #e0e0e0; /* Light grey text */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

#game-container {
    background-color: #162447; /* Slightly lighter background for container */
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1); /* Subtle cyan glow */
    max-width: 600px;
    text-align: center;
}

h1 {
    color: #1f4068; /* A contrasting blue */
     color: #4fc3f7; /* Light Blue */
    margin-bottom: 20px;
     border-bottom: 1px solid #4fc3f7;
    padding-bottom: 10px;
}

h2 {
     color: #b39ddb; /* Light Purple */
}

.stage {
    margin-top: 20px;
    padding: 15px;
    border: 1px dashed #4f5b62; /* Dashed border for stages */
    border-radius: 5px;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
}

strong {
    color: #80deea; /* Cyan for Weaver's name */
}

.riddle {
    font-style: italic;
    color: #ffcc80; /* Light orange for riddles */
    margin-top: 15px;
    margin-bottom: 20px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #ffcc80;
}

button {
    background-color: #1e88e5; /* Bright blue */
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #1565c0; /* Darker blue on hover */
}

a {
    color: #80deea;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#final-acronym {
    font-size: 2.5em;
    letter-spacing: 5px;
    margin: 20px 0;
     color: #b39ddb; /* Light Purple */
}

#final-meaning {
    font-size: 1.1em;
    color: #e0e0e0;
}