body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.menu {
    background: linear-gradient(to bottom, #000 50%, #555 100%);
    border: 1px solid magenta;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
}

.menu-title {
    font-size: 24px;
    font-weight: bold;
    text-decoration: underline;
}

.menu-options {
    margin-top: 20px;
}

.menu-options button {
    background: none;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 32px;
    cursor: pointer;
}

.menu-options span {
    background: linear-gradient(to right, white 15%, gold 100%);
    font-size: 22px;
    display: inline-block;
    width: 140px;
    text-align: center;
    color: black;
    transition: opacity 0.15s ease-in-out; /* Quick fade transition for the text */
    opacity: 1; /* Start fully visible */
}
.go-button {
    background-color: black; 
    border: 1px solid magenta;
    color: magenta;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
}

.go-button:hover {
    background-color: #45a049; /* Darker Green */
}

