html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    background-color: #000000;
    color: #ffffff;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.home-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.zlurad-logo {
    display: block;
    width: min(320px, 58vw);
    height: auto;
    margin-top: 14px;
}
.portal {
    position: relative;
    width: min(900px, 96vw);
    min-height: 560px;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.zlurad-central {
    display: block;
    width: min(420px, 64vw);
    height: auto;
}
.portal-link,
.portal-link:visited {
    position: absolute;
    translate: -50% -50%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 8px 12px;

    font-family: "Cinzel", serif;
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    white-space: nowrap;

    color: #d8d3cf;
    text-decoration: none;

    transition:
        color 180ms ease,
        text-shadow 180ms ease,
        transform 180ms ease;
}
.portal-link:hover {
    color: #ffffff;
    text-shadow:
        0 0 7px rgba(220, 210, 190, 0.55),
        0 0 18px rgba(220, 210, 190, 0.22);
    transform: scale(1.04);
}

.portal-link:active {
    transform: scale(0.97);
}

.portal-link:focus-visible {
    color: #ffffff;
    outline: 1px solid rgba(216, 211, 207, 0.75);
    outline-offset: 5px;
}

.link-music {
    left: 50%;
    top: 6.25%;
}

.link-news {
    left: 24%;
    top: 24.5%;
}

.link-lyrics {
    left: 76%;
    top: 24.5%;
}

.link-press {
    left: 19.7%;
    top: 59.7%;
}

.link-about {
    left: 80.9%;
    top: 59.7%;
}

.link-editions {
    left: 31%;
    top: 86.5%;
}

.link-contact {
    left: 69%;
    top: 86.5%;
}
.social-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin: 10px 0 34px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    text-decoration: none;
    transition:
        transform 180ms ease,
        filter 180ms ease;
}

.social-links img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: 0.82;
    transition:
        opacity 180ms ease,
        filter 180ms ease;
}

.social-links a:hover {
    transform: scale(1.08);
}

.social-links a:hover img {
    opacity: 1;
    filter: brightness(1.35);
}

.social-links a:active {
    transform: scale(0.95);
}

.social-links a:focus-visible {
    outline: 1px solid rgba(216, 211, 207, 0.75);
    outline-offset: 3px;
}
.home-footer {
    width: 100%;
    padding: 4px 20px 24px;
    box-sizing: border-box;
    text-align: center;
}

.home-footer p {
    margin: 0;

    font-family: "Cinzel", serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.12em;

    color: #929292;
}
@media (max-width: 900px) {

    .zlurad-logo {
        width: min(300px, 70vw);
        margin-top: 12px;
    }

    .portal {
        width: min(680px, 94vw);
        min-height: 0;
        margin-top: 18px;

        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "image image"
            "music music"
            "news lyrics"
            "press about"
            "editions contact";

        column-gap: 12px;
        row-gap: 14px;
        align-items: center;
        justify-items: center;
    }

    .zlurad-central {
        grid-area: image;
        width: min(420px, 78vw);
        height: auto;
    }

    .portal-link,
    .portal-link:visited {
        position: static;
        translate: none;

        min-height: 44px;
        padding: 6px 10px;

        font-size: clamp(18px, 3.6vw, 25px);
        letter-spacing: 0.12em;
    }

    .link-music {
        grid-area: music;
    }

    .link-news {
        grid-area: news;
    }

    .link-lyrics {
        grid-area: lyrics;
    }

    .link-press {
        grid-area: press;
    }

    .link-about {
        grid-area: about;
    }

    .link-editions {
        grid-area: editions;
    }

    .link-contact {
        grid-area: contact;
    }

    .social-links {
        margin-top: 26px;
    }
}
@media (max-width: 600px) {

    .zlurad-logo {
        width: min(250px, 72vw);
        margin-top: 8px;
    }

    .portal {
        width: 92vw;
        margin-top: 10px;

        column-gap: 8px;
        row-gap: 10px;
    }

    .zlurad-central {
        width: min(340px, 86vw);
    }

    .portal-link,
    .portal-link:visited {
        min-height: 40px;
        padding: 5px 6px;

        font-size: clamp(16px, 5vw, 21px);
        letter-spacing: 0.1em;
    }

    .social-links {
        gap: 10px;
        margin: 20px 0 22px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .social-links img {
        width: 25px;
        height: 25px;
    }

    .home-footer {
        padding: 0 16px 18px;
    }

    .home-footer p {
        font-size: 11px;
        line-height: 1.6;
        letter-spacing: 0.09em;
    }
}