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

body {
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(138, 43, 226, 0.4), transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(75, 0, 130, 0.08), transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(255, 20, 147, 0.26), transparent 50%),
        radial-gradient(ellipse at 70% 10%, rgba(0, 191, 255, 0.2), transparent 50%),
        radial-gradient(ellipse at 30% 60%, rgba(186, 85, 211, 0.05), transparent 50%),
        #040814;
    color: #e8f2ff;
    font-family: 'Exo 2', sans-serif;
    padding: 6rem 2rem 6rem;
}

.scanlines {
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 0px,
        rgba(0,0,20,0.2) 2px,
        rgba(0,0,20,0.2) 4px
    );
    pointer-events: none;
    z-index: 1000000000000000;
}

.hud-tl {
    position: fixed;
    left: 2%;
    top: 2%;
}

.site-name {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1rem, 3vw, 1.8rem);
    font-weight: 900;
    color: #e8f2ff;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(74,143,255,2), 0 0 60px rgb(169,204,255);
}

.site-sub {
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(0.6rem, 1.5vw, 0.9rem);
    color: #4a6a9a;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

.back-link {
    position: fixed;
    right: 3%;
    top: 2.5%;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(0.6rem, 1.5vw, 0.8rem);
    color: #4a6a9a;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
}

.back-link:hover {
    color: #abcfff;
}

.container {
    max-width: 700px;
    margin: 0 auto;
}

.page-label {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.75rem;
    color: #4a6a9a;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 5vw, 3rem);
    font-weight: 900;
    color: #e8f2ff;
    letter-spacing: 0.05em;
    text-shadow: 0 0 20px rgba(74,143,255,1), 0 0 60px rgb(169,204,255);
    margin-bottom: 3.5rem;
    line-height: 1.15;
}

.block {
    margin-bottom: 3rem;
}

.block-label {
    font-family: 'Exo 2', sans-serif;
    font-size: 0.7rem;
    color: #4a6a9a;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.block p {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: #8aaad0;
    line-height: 1.9;
    margin-bottom: 0.9rem;
}

.block p:last-child {
    margin-bottom: 0;
}

.block p strong {
    color: #abcfff;
    font-weight: 500;
}

.quote {
    margin-top: 3.5rem;
    margin-bottom: 4rem;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    color: #abcfff;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

.quote span {
    display: block;
    font-size: 0.7rem;
    color: #4a6a9a;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.hud-br-about {
    position: fixed;
    right: 3%;
    bottom: 3.5%;
    font-family: 'Exo 2', sans-serif;
    font-size: clamp(0.6rem, 1.5vw, 0.9rem);
    color: #4a6a9a;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact-link {
    color: #4a6a9a;
    text-decoration: none;
    letter-spacing: 0.1em;
    transition: color 0.2s;
}

.contact-link:hover {
    color: #abcfff;
}

@media (max-width: 480px) {
    body {
        padding: 5rem 1.25rem 4rem;
    }

    .hud-br-about {
        display: none;
    }
}
