@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=VT323&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: #f3f7ef;
    font-family: 'VT323', monospace;
    font-size: 30px;
    line-height: 1.25;
    background:
        linear-gradient(180deg, #8ec6ff 0%, #77b7f2 45%, #4f8735 45%, #3f6a2a 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.03) 0 2px,
            rgba(0, 0, 0, 0.06) 2px 4px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.02) 0 2px,
            rgba(0, 0, 0, 0.05) 2px 4px
        );
}

.wrap {
    max-width: 900px;
    margin: 36px auto;
    padding: 24px;
    position: relative;
    z-index: 1;
}

h1, h2 {
    font-family: 'Press Start 2P', monospace;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 4px 0 #1f3d1f;
}

h1 {
    font-size: 34px;
    margin-bottom: 22px;
}

h2 {
    font-size: 20px;
    margin-top: 0;
}

.card {
    background: linear-gradient(180deg, #3f3f3f 0%, #2f2f2f 100%);
    border: 4px solid #1d1d1d;
    box-shadow:
        inset 0 4px 0 rgba(255, 255, 255, 0.1),
        0 6px 0 #1d1d1d;
    border-radius: 0;
    padding: 18px;
    margin: 18px 0 26px;
}

.btn {
    display: inline-block;
    text-decoration: none;
    border: 3px solid #1f4f20;
    border-radius: 0;
    padding: 11px 15px;
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    color: #ecffdf;
    background: linear-gradient(180deg, #6dbc3c 0%, #519a2d 100%);
    box-shadow:
        inset 0 3px 0 rgba(255, 255, 255, 0.16),
        0 4px 0 #1f4f20;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(1px);
    box-shadow:
        inset 0 3px 0 rgba(255, 255, 255, 0.16),
        0 3px 0 #1f4f20;
}

.btn.secondary {
    border-color: #17375f;
    background: linear-gradient(180deg, #4a90e2 0%, #2d66b1 100%);
    box-shadow:
        inset 0 3px 0 rgba(255, 255, 255, 0.16),
        0 4px 0 #17375f;
}

input, select {
    width: 100%;
    margin: 8px 0 14px;
    padding: 10px;
    border-radius: 0;
    border: 3px solid #101010;
    background: #151515;
    color: #f5f5f5;
    font-family: 'VT323', monospace;
    font-size: 28px;
}

label {
    display: block;
    margin-top: 8px;
    color: #d7ffd0;
}

.alert {
    margin: 12px 0 18px;
    background: #2a5a1d;
    border: 3px solid #14350f;
    box-shadow: 0 4px 0 #14350f;
    padding: 10px 12px;
    border-radius: 0;
}

a {
    color: #9fd1ff;
}
