/* Updated: 2025-10-19 21:42 */
/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
    background: #000;
    color: #0f0;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background canvas - fixed, behind everything */
#background-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.15;
}

/* Main content sits on top */
#content-wrapper {
    font-family: 'Courier New', monospace;
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header h1 {
    font-family: 'Courier New', monospace;
    text-align: center;
    font-size: clamp(2em, 5vw, 3.5em);
    margin: 30px 0 10px 0;
    font-weight: normal;
}

/* Navigation - short and wide */
nav {
    font-family: 'Courier New', monospace;
    display: flex;
    justify-content: center;
    gap: clamp(5px, 5vw, 40px);
    margin: 0px 0;
    flex-wrap: wrap;
}

nav a {
    font-family: 'Courier New', monospace;
    color: inherit;
    text-decoration: none;
    padding: 12px 30px;
    border: none;

    /* REMOVED BORDER */
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: clamp(0.8em, 2vw, 1em);
}

nav a:hover {
    background: rgba(0, 255, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
}

/* Game container */
#game-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
    overflow: hidden;
}

#ascii-canvas {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: 0;
    white-space: pre;
    color: #0f0;
    background: transparent;
    width: fit-content;
    max-width: 100%;
    display: block;
    text-align: left;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#game-controls {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9em;
    opacity: 0.7;
    letter-spacing: 0.1em;
}

/* Big Check In button */
#cta-container {
    text-align: center;
    margin: 60px 0;
}

.big-button {
    display: inline-block;
    width: 300px;
    padding: 20px;
    text-align: center;
    font-size: 1.5em;
    border: 1.5px solid currentColor;
    text-decoration: none;
    color: inherit;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.9);
}

.big-button:hover {
    background: rgba(0, 255, 0, 0.15);
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.4);
}

/* Content pages styling */
.content-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 00px 0px;
}

.content-page h2 {
    align-content: center;
    font-size: 2em;
    margin: 30px 0 20px 0;
    letter-spacing: 0.1em;
    border-bottom: 1px solid currentColor;
    padding-bottom: 10px;
    text-align: center;
}

align-content: {
}

.content-page h3 {
    font-size: 1.5em;
    margin: 5px 0 15px 0;
    letter-spacing: 0.08em;
}

.content-page p {
    line-height: 1;
    margin: 8px 0;
}

.content-page ul {
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.content-page a {
    color: inherit;
    text-decoration: underline;
}

.content-page a:hover {
    background: rgba(0, 255, 0, 0.1);
}

.footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid currentColor;
    opacity: 0.7;
    font-size: 0.8em;
    letter-spacing: 0.1em;
    line-height: 1.3;
}

/* Service boxes */
.service-box {
    border: 1px solid currentColor;
    padding: 10px;
    margin: 07px 0;
    background: rgba(0, 0, 0, 0.5);
}

.service-box h3 {
    margin-top: 10;
    font-size: 2.8em;
    margin-left: 32px;
}

.service-box .button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    border: 1px solid currentColor;
    text-decoration: none;
    color: inherit;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    align-self: l;
    float: right;
}

.service-box .button:hover {
    background: rgba(0, 255, 0, 0.1);
}

/* Unique float layout for the mission section */
.mission-layout img {
    width: 128px;
    height: auto;
    float: left;
    margin: 0 -5px -4px 7px;
    padding-left: 0px;

    /* spacing between image and text */
}
.contact-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between; /* keeps image on the RIGHT */
    gap: 1rem;
    flex-wrap: wrap; /* allows text to wrap on mobile */
}

/* Text column */
.contact-textblock {
    flex: 1 1 300px; /* grows, shrinks, and wraps nicely */
    min-width: 200px;
}

/* Image column */
.contact-portrait {
    flex-shrink: 0;  /* do NOT let it shrink */
    width: 245px;
    max-width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
    }

    nav a {
        width: 200px;
        text-align: center;
    }

    .big-button {
        width: 250px;
        font-size: 1.2em;
    }
}