body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #101926;
    color: #e1caa7;
    line-height: 1.6;
    background-image: url('../assets/menu-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    background-color: rgba(16, 25, 38, 0.85);
    min-height: 100vh;
}

header {
    margin-bottom: 3rem;
    padding-top: 2rem;
}

.logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(89%) sepia(12%) saturate(459%) hue-rotate(358deg) brightness(93%) contrast(86%);
}

.subtitle {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #e1caa7;
    letter-spacing: 1px;
    margin: 0;
    font-weight: 300;
}

.buttons-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #e1caa7;
    background: rgba(225, 202, 167, 0.1);
    padding: 1.2rem;
    border-radius: 0;
    transition: all 0.3s ease;
    text-align: left;
    border: 1px solid rgba(225, 202, 167, 0.3);
}

.button:hover {
    background: rgba(225, 202, 167, 0.2);
    transform: translateY(-3px);
    border-color: #e1caa7;
}

.button-icon {
    width: 40px;
    height: 40px;
    background: rgba(225, 202, 167, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: #e1caa7;
    font-size: 1.1rem;
}

.button-text {
    flex: 1;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

footer {
    margin-top: 3rem;
    color: rgba(225, 202, 167, 0.7);
    font-size: 0.8rem;
    border-top: 1px solid rgba(225, 202, 167, 0.2);
    padding-top: 1.5rem;
}

@media (max-width: 600px) {
    .container {
        padding: 1.5rem;
    }
    
    .button {
        padding: 1rem;
    }
    
    .button-icon {
        margin-right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}