/* --- GLOBAL RESET & THEME --- */
body {
    font-family: "Courier New", Courier, monospace;
    background-color: #0d0d0d;
    color: #00FF41; /* Fallout Green */
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
}

main {
    padding: 20px;
    max-width: 900px;
    margin: 20px auto;
}

section {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #003300; /* Darker green separator */
}

h1, h2, h3 {
    color: #00FF41;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

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

h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #004400;
    padding-bottom: 5px;
}

a {
    color: #FFC107; /* Vault Gold */
    text-decoration: underline;
    transition: color 0.2s;
}

a:hover {
    color: #ffe082;
}

ul, ol {
    padding-left: 20px;
    line-height: 1.6;
}

video, img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 10px;
    border: 1px solid #003300;
}

/* --- HEADER & NAVIGATION --- */
header {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
    border-bottom: 3px solid #00FF41;
}

header p {
    font-size: 1.1rem;
    color: #ccc;
    margin: 5px 0 15px 0;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* --- BUTTONS --- */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2D9DFF; /* Vault Blue */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: 2px solid #2D9DFF;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.button:hover {
    background-color: #5aaeff;
    color: #ffffff;
}

/* Alternate button style (e.g., for support) */
.button.button-alt {
    background-color: transparent;
    color: #FFC107; /* Vault Gold */
    border-color: #FFC107;
}

.button.button-alt:hover {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffe082;
}


/* --- FEATURES & COMMANDS LISTS --- */
.features ul, .commands ul {
    list-style-type: none;
    padding-left: 0;
}

.features li {
    margin-bottom: 1em;
    padding-left: 2em;
    position: relative;
}

.features li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #00FF41;
}

.commands li {
    background-color: #1a1a1a;
    border: 1px solid #003300;
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 4px;
}

.commands strong {
    color: #00FF41; /* Main green */
}


/* --- GALLERY & STATS --- */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery-item {
    background-color: #1a1a1a;
    border: 1px solid #004400;
    border-radius: 8px;
    padding: 15px;
    width: calc(50% - 40px); /* Two items per row on desktop */
    min-width: 280px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 255, 65, 0.2);
}

.gallery-item a {
    text-decoration: none;
}

.gallery-item img {
    border-radius: 4px;
    margin-bottom: 10px;
}

.gallery-item p {
    font-size: 0.9em;
    color: #bbbbbb;
    margin-top: auto;
    padding-top: 10px;
}

.gallery-note {
    text-align: center;
    font-style: italic;
    color: #8aff8a;
    margin-top: 20px;
    font-size: 0.9em;
}

/* --- LIVE STATS SECTION --- */
.live-stats h3 {
    color: #FFC107; /* Gold for stats headings */
}
.live-stats ul, .live-stats ol {
    list-style-type: none;
    padding-left: 0;
    text-align: left;
    color: #bbbbbb;
}
.live-stats li {
    margin-bottom: 8px;
    font-size: 0.95em;
}

/* --- MISC & FOOTER --- */
.easteregg {
    font-style: italic;
    color: #8aff8a;
    background: #222;
    padding: 15px;
    border-left: 4px solid #00FF41;
    margin-top: 30px;
    border-radius: 4px;
}

.site-footer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    border-top: 1px solid #003300;
    font-size: 0.9em;
    color: #888;
}

.site-footer .legal-links {
    margin-bottom: 15px;
}

.site-footer .legal-links a {
    margin: 0 10px;
}

.site-footer .disclaimer {
    font-size: 0.8em;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

/* --- LEGAL PAGES (TERMS/PRIVACY) --- */
.legal-content {
    background-color: #1a1a1a;
    border: 1px solid #003300;
    padding: 20px 30px;
    border-radius: 8px;
    color: #ccc;
    line-height: 1.7;
}
.legal-content h1, .legal-content h2 {
    color: #00FF41;
    border-bottom: 1px solid #004400;
    padding-bottom: 5px;
}
.legal-content a {
    color: #FFC107;
}
.home-link {
    text-align: center;
    margin-top: 30px;
    font-weight: bold;
    font-size: 1.1rem;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {
    .gallery-item {
        width: calc(100% - 40px);
    }
}
