body {
    background: #101010;
    margin: 0;
    min-height: 100vh;
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(16px, 2.5vw, 18px);
    overflow-x: hidden;
}

.crt {
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
    position: relative;
}

.crt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.1) 0px,
            rgba(0, 0, 0, 0.1) 1px,
            rgba(0, 0, 0, 0.3) 1px,
            rgba(0, 0, 0, 0.3) 2px
    );
    pointer-events: none;
    z-index: 10;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.98; }
    60% { opacity: 0.95; }
    70% { opacity: 0.98; }
}

.crt::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 98, 0, 0.05);
    animation: flicker 0.15s infinite;
    pointer-events: none;
    z-index: 5;
}

.whiteGlow {
    filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 8px #fff);
    color: #fff;
}

.orangeGlow {
    color: #ff7f00;
    font-family: 'VT323', monospace;
    font-size: clamp(2rem, 5vw, 4rem);
    margin: clamp(0.5rem, 2vw, 1rem) 0;
    text-shadow:
            0 0 4px #FF7F00,
            0 0 11px #FF7F00,
            0 0 19px #FF7F00,
            0 0 150px #FF7F00;
}

p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin: 0 0 clamp(1rem, 3vw, 2rem) 0;
    text-align: center;
}

#updates {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.5rem, 2vw, 1rem);
    width: 70%;
    font-family: 'VT323', monospace;
    padding: clamp(0.5rem, 2vw, 1rem);
}

form {
    flex: 1 1 300px;
    max-width: 100%;
}

fieldset {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 700px;
    padding: clamp(0.5rem, 2vw, 1rem);
    border: 1px solid;
    background: #171717;
    box-sizing: border-box;
}

fieldset small {
    align-self: flex-start;
}

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

legend {
    padding: 0.2em 0.5em;
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2rem);
    width: 100%;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.column h2 {
    margin: clamp(0.5rem, 1.5vw, 0.65rem) 0;
    text-align: center;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

#latest-updates-background {
    margin-top: clamp(0.5rem, 2vw, 1rem);
    padding-bottom: clamp(1rem, 3vw, 2rem);
    background-color: #2a2a2a;
    text-align: center;
    width: 100%;
}
#latest-updates-background h1 {
    font-family: 'VT323', monospace;
}

.three-updates-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 2vw, 1rem);
    background-color: #2a2a2a;
    padding: clamp(0.5rem, 2vw, 1rem);
    box-sizing: border-box;
    justify-content: center;
}

.three-updates-container > div {
    flex: 1 1 calc(33.333% - clamp(0.5rem, 2vw, 1rem));
    background: #222;
    padding: clamp(0.5rem, 2vw, 1rem);
    border: 1px solid #444;
    border-radius: 6px;
    color: white;
    box-sizing: border-box;
    min-width: 250px;
    max-width: 100%;
}

.header, .footer {
    font-family: 'VT323', monospace;
    font-size: clamp(1.5rem, 2vw, 1rem);
    width: 100%;
    padding: 1rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.header h1 {
    margin: 0 0 0.3rem 0;
    font-size: 2.5rem;
}

.header p {
    margin: 0;
    font-size: 1.2rem;
}

.footer p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.7;
}


.header {
    background-color: #1a1a1a;
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    display: flex;
    gap: 2rem;
}

.main-nav a.nav-link {
    color: #ffffff;
    text-decoration: none;
}

#all-updates-container {
    font-family: 'VT323', monospace;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: clamp(0.5rem, 2vw, 1rem);
    box-sizing: border-box;
    text-align: center;
}

#updates-list {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 2vw, 1rem);
    justify-content: center;
    padding: 0;
    margin: clamp(0.5rem, 2vw, 1rem) 0;
    list-style: none;
}

.update-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    max-width: 100%;
    background: #222;
    padding: clamp(0.5rem, 2vw, 1rem);
    border: 1px solid #444;
    border-radius: 6px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}


.update-date {
    font-size: clamp(0.8rem, 2vw, 1rem);
    color: #ccc;
    margin: 0 0 clamp(0.25rem, 1vw, 0.5rem) 0;
    text-align: left;
}

.update-title {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #ff7f00;
    margin: 0 0 clamp(0.25rem, 1vw, 0.5rem) 0;
    font-weight: 700;
}

.update-description {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
}

@media (max-width: 768px) {
    .update-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .three-updates-container > div {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .crt {
        padding: 0.5rem;
    }

    .orangeGlow {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .update-title {
        font-size: clamp(1rem, 3vw, 1.2rem);
    }

    .update-description {
        font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    }
}
