:root {
    --bg: #070707;
    --text: #fff8dc;
    --muted: #d8caa5;
    --neon: #ffea00;
    --orange: #ff6a00;
    --line: rgba(255, 234, 0, 0.26);
    --panel: rgba(0, 0, 0, 0.76);
    --radius: 8px;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    background: var(--bg) url("../img/Background.jpg") center / cover fixed;
}

a {
    color: inherit;
    text-decoration: none;
}

.construction-page {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: clamp(24px, 5vw, 72px);
    overflow: hidden;
}

.scene-background,
.scene-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.scene-background {
    background: #000 url("../img/Background.jpg") center / contain no-repeat;
}

.construction-page::before {
    position: absolute;
    inset: 0;
    content: "";
    background: #000;
    z-index: -1;
}

.scene-overlay {
    background:
        radial-gradient(circle at 70% 45%, rgba(255, 106, 0, 0.22), transparent 34%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.9));
}

.construction-content {
    position: relative;
    width: min(520px, 100%);
    padding: 22px 24px;
    text-align: center;
    border: 1px solid rgba(255, 234, 0, 0.16);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(2px);
}

.kicker {
    margin: 0 0 8px;
    color: var(--neon);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    text-shadow: 0 0 16px rgba(255, 106, 0, 0.9);
}

h1 {
    margin: 0 0 10px;
    color: var(--neon);
    font-size: clamp(1.85rem, 5vw, 3.25rem);
    line-height: 1.05;
    text-shadow: 0 0 20px rgba(255, 106, 0, 1), 0 0 46px rgba(226, 59, 35, 0.72);
}

h2 {
    margin: 34px 0 12px;
    color: var(--neon);
    font-size: clamp(1.35rem, 3vw, 2.1rem);
    line-height: 1.1;
}

p {
    margin-top: 0;
    color: var(--muted);
    font-size: clamp(0.98rem, 1.6vw, 1.12rem);
    line-height: 1.6;
}

.site-footer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px clamp(18px, 4vw, 56px);
    color: var(--muted);
    background: rgba(0, 0, 0, 0.72);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.site-footer a:hover,
.site-footer a:focus-visible,
.back-link:hover,
.back-link:focus-visible {
    color: var(--neon);
}

.legal-page {
    width: min(980px, calc(100% - 36px));
    margin: 0 auto;
    padding: 56px 0;
}

.legal-card {
    padding: clamp(24px, 5vw, 48px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--panel);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.42);
}

.legal-card h1 {
    font-size: clamp(2.4rem, 7vw, 5.8rem);
}

.legal-card p {
    max-width: 780px;
}

.back-link {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--muted);
    font-weight: 800;
}

@media (max-width: 560px) {
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}
