.menu-body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    background: #1a0f0a;
    color: #fff8f0;
    overflow-x: hidden;
}

.menu-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(255, 183, 77, 0.18) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(183, 28, 28, 0.2) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 90%, rgba(76, 175, 80, 0.12) 0%, transparent 50%),
        linear-gradient(160deg, #2d1810 0%, #1a0f0a 40%, #120a14 100%);
    z-index: 0;
}

.float-icon {
    position: absolute;
    font-size: clamp(2rem, 6vw, 4rem);
    opacity: 0.12;
    animation: float 8s ease-in-out infinite;
}

.float-beer  { top: 8%;  left: 6%;  animation-delay: 0s; }
.float-wine  { top: 15%; right: 8%; animation-delay: 1.5s; }
.float-shot  { bottom: 20%; left: 10%; animation-delay: 3s; }
.float-beer2 { bottom: 12%; right: 12%; animation-delay: 4.5s; }
.float-wine2 { top: 45%; left: 50%; animation-delay: 2s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50%      { transform: translateY(-18px) rotate(5deg); }
}

.menu {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 3rem;
}

.menu-header {
    text-align: center;
    margin-bottom: 2rem;
}

.menu-eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ffb74d;
}

.menu-header h1 {
    margin: 0;
    font-size: clamp(2rem, 7vw, 2.75rem);
    font-weight: 800;
    background: linear-gradient(135deg, #ffecb3, #ff8f00, #e65100);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.menu-subtitle {
    margin: 0.75rem 0 0;
    color: rgba(255, 248, 240, 0.7);
    font-size: 1rem;
    line-height: 1.5;
}

.game-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.game-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0.15rem 1rem;
    padding: 1.1rem 1.25rem;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
}

.game-card--active {
    cursor: pointer;
    border-color: rgba(255, 183, 77, 0.45);
    background: linear-gradient(135deg, rgba(255, 143, 0, 0.15), rgba(183, 28, 28, 0.12));
}

.game-card--active:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 143, 0, 0.2);
    border-color: rgba(255, 183, 77, 0.7);
}

.game-card--soon {
    opacity: 0.55;
    cursor: not-allowed;
}

.game-card__tag {
    grid-column: 1 / -1;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffb74d;
}

.game-card__icon {
    grid-row: 2;
    font-size: 2rem;
    line-height: 1;
    align-self: center;
}

.game-card__info {
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.game-card__title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
}

.game-card__sessions {
    font-size: 0.8rem;
    color: rgba(255, 248, 240, 0.5);
    line-height: 1.3;
}

.game-card--active .game-card__sessions {
    color: rgba(255, 204, 128, 0.8);
}

.game-card__cta {
    grid-row: 2;
    font-size: 0.85rem;
    color: rgba(255, 248, 240, 0.65);
    white-space: nowrap;
    align-self: center;
}

.game-card--active .game-card__cta {
    color: #ffcc80;
    font-weight: 600;
}
