
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background: linear-gradient(135deg, #f8bbd0, #f48fb1);
    color: #333;
}

header {
    background: #ad1457;
    color: white;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    margin: 5px 0 0;
    font-size: 1.2rem;
}

#game-container {
    max-width: 900px;
    margin: 20px auto;
}

#menu button {
    padding: 10px 20px;
    font-size: 1.2rem;
    margin: 10px;
    background: #8e24aa;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#menu button:hover {
    background: #6a1b9a;
}

#project-area, #feedback-area {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#resource-area button, #presentation-area button, #restart-button {
    padding: 10px 20px;
    font-size: 1rem;
    background: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

#resource-area button:hover, #presentation-area button:hover, #restart-button:hover {
    background: #388e3c;
}
