body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.18);
    width: 90%;
    max-width: 800px;
    text-align: center;
}

h1 {
    color: #fff;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.option-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.option-button {
    display: block;
    background: linear-gradient(45deg, #00ddeb, #ff6b6b);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: white;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.option-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 221, 235, 0.4);
}

.option-button h2 {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.option-button p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}