@font-face {
    font-family: "Orbitron";
    src: url("assets/fonts/Orbitron-Regular.ttf") format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: "Orbitron";
    src: url("assets/fonts/Orbitron-Medium.ttf") format("truetype");
    font-weight: 500;
}

@font-face {
    font-family: "Orbitron";
    src: url("assets/fonts/Orbitron-SemiBold.ttf") format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: "Orbitron";
    src: url("assets/fonts/Orbitron-Bold.ttf") format("truetype");
    font-weight: 700;
}

@font-face {
    font-family: "Orbitron";
    src: url("assets/fonts/Orbitron-ExtraBold.ttf") format("truetype");
    font-weight: 800;
}

@font-face {
    font-family: "Orbitron";
    src: url("assets/fonts/Orbitron-Black.ttf") format("truetype");
    font-weight: 900;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background: #02040a;
    color: #f5f7fa;
    overflow: hidden;
}

.bg-video {
    position: fixed;
    inset: 0;
    width: 125%;
    height: 125%;
    object-fit: cover;
    object-position: 22% center;
    transform: translate(-24%, -5%);
    z-index: 1;
}

.hero {
    position: relative;
    z-index: 3;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    align-items: center;
    padding: 6vw;
}

.overlay {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at center,
        rgba(0,60,180,.15),
        transparent 45%);
        /*rgba(0,0,0,.35);*/
    z-index: 2;
}

.panel {
    position: relative;
    z-index: 5;
    justify-self: end;
    width: min(560px, 90vw);
    padding: 60px 50px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(8,12,20,0.3);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 0 60px rgba(0,80,255,0.15);
    margin-right: 6vw;
}

@media (max-width: 800px) {
    html, body {
        overflow: hidden;
    }

    .bg-video {
        width: 135%;
        height: 100%;
        object-fit: cover;
        object-position: 38% center;
        transform: translateX(-30%);
    }

    .hero {
        display: flex;
        min-height: 100svh;
        align-items: flex-end;
        justify-content: center;
        padding: 0 18px 9vh;
    }

    .hero-spacer {
        display: none;
    }

    .panel {
        width: 100%;
        max-width: 390px;
        padding: 32px 24px;
        margin: 0;
        background: rgba(8, 12, 20, 0.58);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
    }

    h1 {
        font-size: 2rem;
        letter-spacing: 0.14em;
    }

    .tagline,
    .subline {
        font-size: 0.78rem;
        letter-spacing: 0.18em;
    }

    .coming {
        font-size: 0.78rem;
        letter-spacing: 0.22em;
    }

    .links {
        gap: 16px;
    }

    .links a {
        font-size: 0.68rem;
    }
}

h1 {
    font-size: clamp(2rem, 6vw, 3.2rem);
    letter-spacing: 0.18em;
    font-family:'orbitron', sans-serif;
    font-weight: 600;
}

.tagline {
    margin-top: 14px;
    font-size: 0.95rem;
    letter-spacing: 0.22em;
}

.subline {
    margin-top: 14px;
    font-size: 0.95rem;
    letter-spacing: 0.22em;
}

.divider {
    width: 80px;
    height: 1px;
    margin: 28px auto;
    background: linear-gradient(90deg, transparent, #9db8ff, transparent);
}

.coming {
    font-size: 0.85rem;
    letter-spacing: 0.28em;
    color: #dce6ff;
}

.links {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.links a {
    color: #dce6ff;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.links a:hover {
    color: #6fb7ff;
}
