@property --glint {
    syntax: "<angle>";
    initial-value: 30deg;
    inherits: false;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    min-height: 100vh;
}

img {
    display: block;
    max-width: 100%;
}

.landing {
    position: relative;
    min-height: 100vh;
    overflow: hidden;

    /* change image path if needed */
    background: url("../assets/img/jpg/hero_banner.jpg") center center / cover no-repeat;
}

.landing__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.landing__inner {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 28px 16px 24px;
}

.landing__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.menu-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.menu-link {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 30% 28%,
            rgba(255, 255, 255, 0.22),
            rgba(255, 255, 255, 0.07) 45%,
            rgba(255, 255, 255, 0.03) 100%
        ),
        rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(10px) saturate(125%);
    -webkit-backdrop-filter: blur(10px) saturate(125%);

    box-shadow:
        0 10px 24px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.menu-link::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    pointer-events: none;
    z-index: 1;
}

.menu-link::after {
    content: "";
    position: absolute;
    top: -35%;
    left: -55%;
    width: 45%;
    height: 170%;
    transform: rotate(28deg);
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.06) 35%,
        rgba(255, 255, 255, 0.22) 50%,
        rgba(255, 255, 255, 0.06) 65%,
        rgba(255, 255, 255, 0) 100%
    );
    filter: blur(2px);
    opacity: 0.8;
    pointer-events: none;
    animation: glassGlint 4.8s ease-in-out infinite;
}

.menu-link:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow:
        0 14px 30px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.menu-link:hover::after {
    opacity: 1;
    animation-duration: 2.2s;
}

@keyframes glassGlint {
    0% {
        left: -55%;
        opacity: 0;
    }
    8% {
        opacity: 0.7;
    }
    30% {
        opacity: 0.9;
    }
    55% {
        left: 115%;
        opacity: 0;
    }
    100% {
        left: 115%;
        opacity: 0;
    }
}

.menu-link__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
}

.menu-link__logo-img {
    display: block;
    max-width: 88px;
    max-height: 88px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.logo-hof7 {
    max-width: 92px;
}

.logo-zoo {
    max-width: 84px;
}

.menu-link__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.landing__note {
    margin: 0;
    max-width: 280px;
    padding: 0;
    font-size: 16px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.97);
    text-align: center;
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 0 16px rgba(0, 0, 0, 0.25);
}

.socials {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    min-width: 110px;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    text-align: center;
    color: #fff;
    font-size: 13px;
    font-weight: 700;

    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.landing__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
    padding-bottom: 8px;
}

.landing__footer-note,
.landing__footer-text {
    margin: 0;
    font-size: 12px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.landing__footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing__oiio-logo {
    width: 46px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 420px) {
    .menu-link {
        width: 138px;
        height: 138px;
    }

    .menu-link__logo {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }

    .menu-link__title {
        font-size: 16px;
    }
}

/* ADS */
.escape-banner {
    align-items: center;
    gap: 10px;
    text-align: center;
    max-width: 400px;
    margin: 18px auto 0;
    text-align: center;
}

.escape-banner__text {
    margin: 4px 0 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #fff;
}

.escape-banner__button {
    min-width: 110px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.escape-banner__button:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.escape-banner__button img {
    display: block;
    max-width: 110px;
    height: auto;
}
