.menu-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0C0C0C 0%, #1a1a1a 50%, #0C0C0C 100%);
    z-index: 200;
}

.menu-logo {
    width: 120px;
    height: auto;
    margin-bottom: 16px;
}

.menu-title {
    font-size: 72px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 4px;
}

.menu-title .reb {
    color: #ffffff;
}

.menu-title .dot {
    color: #CF4B3C;
}

.menu-title .kart {
    color: #ffffff;
}

.menu-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 60px;
    letter-spacing: 3px;
    font-weight: 300;
}

.menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.menu-btn {
    background: linear-gradient(180deg, #CF4B3C 0%, #a33a2e 100%);
    color: #fff;
    border: 2px solid #CF4B3C;
    padding: 16px 48px;
    font-size: 22px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 2px;
    min-width: 280px;
    text-align: center;
    transition: all 0.2s;
    font-family: inherit;
}

.menu-btn:hover {
    background: linear-gradient(180deg, #d95d4f 0%, #CF4B3C 100%);
    transform: scale(1.05);
    border-color: #d95d4f;
}

.menu-btn:active {
    transform: scale(0.98);
}

.menu-btn-secondary {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    font-size: 16px;
    padding: 12px 36px;
    min-width: 240px;
}

.menu-btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.3);
}

.menu-footer {
    position: absolute;
    bottom: 14px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.38);
    letter-spacing: 0.5px;
    font-weight: 300;
}
