@font-face {
    font-family: "ARCADE_I";
    src: url("/fonts/ARCADE_I.TTF") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "DSEG7ClassicMini";
    src: url("/fonts/DSEG7ClassicMini-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

:root {
    --color-bg: #000000;
    --color-text-primary: #ffffff;
    --color-clock-active: #ff0000;
    --color-clock-ghost: rgba(60, 0, 0, 1);

    --shadow-neon:
        4px 1px rgba(246, 0, 153, 0.8), -5px -2px rgba(15, 210, 255, 0.8),
        -3px 0px rgba(255, 210, 0, 1);
}

body {
    margin: 0;
    background-color: var(--color-bg);
    color: var(--color-text-primary);
    font-family: "ARCADE_I", sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.layout-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    font-size: 4vw;
}

.mission-status {
    margin: 0;
    width: 100%;
    text-align: center;
    text-shadow: var(--shadow-neon);
    font-size: inherit;
    font-weight: normal;
}

.digital-clock {
    font-family: "DSEG7ClassicMini", monospace;
    position: relative;
    display: grid;
    place-items: center;
    line-height: 1;
}

.digital-clock-face {
    grid-area: 1 / 1;
    user-select: none;
    white-space: pre;
}

.digital-clock-face-active {
    color: var(--color-clock-active);
    z-index: 2;
}

.digital-clock-face-ghost {
    color: var(--color-clock-ghost);
    z-index: 1;
}
