* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    width: 100%;
    min-height: 100%;
}

body {
    min-height: 100vh;
    overflow: hidden;
    display: grid;
    place-items: center;

    background:
        linear-gradient(rgba(20, 110, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 110, 255, 0.035) 1px, transparent 1px),
        #030507;

    background-size: 48px 48px;
    color: #fff;
    font-family: Inter, system-ui, sans-serif;
}

body::before {
    content: "";
    position: fixed;
    width: 700px;
    height: 500px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #006eff;
    opacity: 0.08;
    filter: blur(140px);
    pointer-events: none;
}

.frame {
    position: fixed;
    inset: 24px;
    border: 1px solid rgba(80, 150, 255, 0.13);
    pointer-events: none;
}

.frame::before,
.frame::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
}

.frame::before {
    left: -1px;
    top: -1px;
    border-left: 1px solid #1683ff;
    border-top: 1px solid #1683ff;
}

.frame::after {
    right: -1px;
    bottom: -1px;
    border-right: 1px solid #1683ff;
    border-bottom: 1px solid #1683ff;
}

main {
    position: relative;
    z-index: 2;
    text-align: center;
}

.status {
    margin-bottom: 24px;
    color: #597086;
    font-family: monospace;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    color: #f5f8ff;
    font-size: clamp(4rem, 11vw, 10rem);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.065em;
    text-shadow: 0 0 45px rgba(0, 119, 255, 0.12);
}

.accent {
    width: 38%;
    min-width: 120px;
    height: 2px;
    margin: 30px auto 0;

    background: linear-gradient(
        90deg,
        transparent,
        #1683ff,
        #62c3ff,
        #1683ff,
        transparent
    );

    box-shadow: 0 0 16px rgba(22, 131, 255, 0.45);
}

.coordinates {
    position: fixed;
    left: 42px;
    bottom: 40px;
    color: rgba(116, 142, 166, 0.45);
    font-family: monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.version {
    position: fixed;
    right: 42px;
    top: 40px;
    color: rgba(116, 142, 166, 0.45);
    font-family: monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
