/* =========================================
   LANPARTY2000
   Late 90s / early 2000s LAN party aesthetic
   Dark mode + electric blue glow
   Plain CSS, mobile friendly
   ========================================= */

* {
    box-sizing: border-box;
}

html {
    background: #020409;
}

body {
    margin: 0;
    padding: 0;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top, rgba(0, 170, 255, 0.08), transparent 35%),
        linear-gradient(180deg, #06111d 0%, #03070d 45%, #010203 100%);
    color: #7fdcff;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

/* faint scanline effect */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: repeating-linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.02) 0px,
        rgba(255, 255, 255, 0.02) 1px,
        transparent 2px,
        transparent 4px
    );
    opacity: 0.18;
    z-index: 9999;
}

/* =========================================
   Global links / text glow
   ========================================= */

a {
    color: #35cfff;
    text-decoration: none;
    text-shadow: 0 0 6px rgba(53, 207, 255, 0.45);
}

a:hover {
    color: #8ae7ff;
    text-decoration: underline;
}

h1,
h2,
h3 {
    color: #59d9ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow:
        0 0 5px rgba(0, 200, 255, 0.65),
        0 0 12px rgba(0, 120, 255, 0.3);
}

/* =========================================
   Header / navigation
   ========================================= */

.site-header {
    background:
        linear-gradient(180deg, #0a1626 0%, #040a12 100%);
    border-bottom: 2px solid #0c5f85;
    box-shadow:
        0 0 18px rgba(0, 140, 255, 0.18),
        inset 0 -1px 0 rgba(120, 220, 255, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px 20px 14px;
}

.site-title {
    margin: 0;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;
}

.site-title a {
    color: #79e4ff;
    text-decoration: none;
    text-shadow:
        0 0 4px rgba(121, 228, 255, 0.8),
        0 0 14px rgba(0, 153, 255, 0.5);
}

.site-tagline {
    margin: 6px 0 0;
    color: #53c9ff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

nav {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid rgba(64, 169, 214, 0.25);
}

nav a {
    display: inline-block;
    margin-right: 18px;
    margin-bottom: 6px;
    padding: 6px 10px;
    border: 1px solid transparent;
    color: #67dbff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 110, 170, 0.08);
}

nav a:hover,
nav a:focus {
    border-color: #1795cb;
    background: rgba(0, 149, 203, 0.16);
    text-decoration: none;
    box-shadow: 0 0 10px rgba(0, 149, 203, 0.22);
}

/* =========================================
   Layout
   ========================================= */

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 24px 20px 40px;
}

/* =========================================
   Panels / sections
   ========================================= */

.hero,
.content-section,
.faq-item {
    background: linear-gradient(180deg, rgba(7, 18, 30, 0.94), rgba(3, 9, 16, 0.96));
    border: 1px solid #114764;
    box-shadow:
        0 0 0 1px rgba(17, 71, 100, 0.2),
        0 0 18px rgba(0, 120, 255, 0.08);
    border-radius: 6px;
}

.hero {
    padding: 26px 24px;
    margin-bottom: 24px;
}

.hero h1 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 34px;
}

.hero p {
    margin-bottom: 0;
    color: #9be8ff;
    font-size: 17px;
    text-shadow: 0 0 6px rgba(0, 170, 255, 0.12);
}

.content-section {
    padding: 24px;
    margin-bottom: 24px;
}

.content-section h2 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 22px;
    border-bottom: 1px solid rgba(33, 141, 189, 0.35);
    padding-bottom: 8px;
}

.content-section p {
    color: #91ddff;
}

.content-section strong {
    color: #c3f3ff;
}

/* =========================================
   FAQ
   ========================================= */

.faq-item {
    padding: 20px;
    margin-bottom: 18px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 19px;
    border-bottom: none;
}

.faq-item p {
    margin: 0;
    color: #9adfff;
}

/* =========================================
   Lists
   ========================================= */

ul {
    margin: 12px 0 0;
    padding-left: 22px;
}

li {
    margin-bottom: 8px;
    color: #9adfff;
}

li::marker {
    color: #38d4ff;
}

/* =========================================
   Optional utility styling
   ========================================= */

.note,
.notice {
    margin-top: 16px;
    padding: 12px 14px;
    border-left: 3px solid #1db2e8;
    background: rgba(0, 120, 180, 0.08);
    color: #a9ebff;
}

.codeish {
    font-family: "Courier New", Courier, monospace;
    color: #90ecff;
    letter-spacing: 0.5px;
}

/* =========================================
   Footer, if you add one later
   ========================================= */

.site-footer {
    max-width: 1000px;
    margin: 0 auto 30px;
    padding: 0 20px;
    color: #4ba7cb;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   Mobile
   ========================================= */

@media (max-width: 700px) {
    .header-container {
        padding: 14px 14px 12px;
    }

    .container {
        padding: 16px 14px 28px;
    }

    .site-title {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .site-tagline {
        font-size: 11px;
        line-height: 1.4;
    }

    nav {
        margin-top: 10px;
        padding-top: 8px;
    }

    nav a {
        margin-right: 8px;
        margin-bottom: 8px;
        font-size: 13px;
        padding: 7px 9px;
    }

    .hero,
    .content-section,
    .faq-item {
        border-radius: 4px;
    }

    .hero {
        padding: 20px 16px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 15px;
    }

    .content-section {
        padding: 18px 16px;
    }

    .content-section h2 {
        font-size: 19px;
    }

    .faq-item {
        padding: 16px;
    }

    .faq-item h2 {
        font-size: 17px;
    }
}