@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@700;900&family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b0000;
    --primary-dark: #650000;
    --accent-color: #f0c85a;
    --text-color: #4c4c4c;
    --white: #ffffff;
}

body {
    min-height: 100vh;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.5;
}

.menu {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px 14px 72px;
    position: relative;
    overflow: hidden;
    background: var(--landing-bg-image) center center / cover no-repeat;
}

.menu::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 10%, rgba(240, 200, 90, 0.32), transparent 45%),
        linear-gradient(145deg, rgba(45, 0, 0, 0.74), rgba(12, 8, 8, 0.64));
}

.landing-container {
    width: min(100%, 420px);
    position: relative;
    z-index: 1;
    border-radius: 20px;
    padding: 24px 18px 18px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(6px);
    box-shadow: 0 28px 52px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    animation: landing-drop-in 0.7s ease-out both;
    will-change: transform, opacity;
}

@keyframes landing-drop-in {
    from {
        opacity: 0;
        transform: translateY(-44px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.landing-container::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 6px;
    background: linear-gradient(90deg, #5d0000, #8b0000 45%, #c02525);
}

.big_logo,
.small_logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.big_logo {
    gap: 18px;
    margin-bottom: 8px;
}

.big_logo img {
    width: 84px;
    height: auto;
    object-fit: contain;
}

.small_logo {
    gap: 10px;
    margin-bottom: 14px;
}

.small_logo img {
    width: 46px;
    height: auto;
    object-fit: contain;
}

.kicker {
    text-align: center;
    color: #6f0000;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 11px;
    margin-bottom: 8px;
}

.Title {
    color: #760202;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.Title span {
    display: block;
    margin-top: 6px;
    font-family: 'Merriweather', serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0.02em;
    text-transform: none;
    color: #5a0101;
}

.destination-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: 8px;
    text-align: center;
    margin: 12px auto 18px;
    width: fit-content;
    max-width: 100%;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid rgba(139, 0, 0, 0.22);
    background: rgba(255, 240, 210, 0.9);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #6b0303;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.arrow-inline {
    width: 16px;
    height: 16px;
    color: #8b0000;
    flex-shrink: 0;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.portal-button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(139, 0, 0, 0.14);
    border-left: 6px solid #8b0000;
    box-shadow: 0 9px 18px rgba(0, 0, 0, 0.11);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.portal-button .icon {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.portal-button .icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.portal-button .text {
    line-height: 1;
}

.portal-button::after {
    content: "->";
    margin-left: auto;
    font-size: 17px;
    font-weight: 700;
    color: #8b0000;
    transition: transform 0.2s ease, color 0.2s ease;
}

.portal-button:hover {
    background: #8b0000;
    color: #ffe184;
    border-left-color: #ffe184;
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
}

.portal-button:hover::after {
    color: #ffe184;
    transform: translateX(4px);
}

.portal-button:focus-visible {
    outline: 2px solid #f0c85a;
    outline-offset: 2px;
}

.menu > .landing-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    z-index: 2;
}

@media (max-width: 768px) {
    .landing-container {
        width: min(100%, 350px);
        border-radius: 16px;
        padding: 22px 14px 16px;
    }

    .landing-container::before {
        height: 5px;
    }

    .big_logo img {
        width: 70px;
    }

    .small_logo img {
        width: 39px;
    }

    .kicker {
        font-size: 10px;
    }

    .Title {
        font-size: 12px;
    }

    .Title span {
        font-size: 18px;
    }

    .destination-hint {
        font-size: 12px;
        margin: 10px auto 14px;
        padding: 6px 10px;
    }

    .portal-button {
        padding: 10px 12px;
        font-size: 14px;
    }

    .menu > .landing-footer {
        width: 100%;
        bottom: 0;
    }
}
