/* RESET */
*, *::before, *::after {
    box-sizing: border-box;
}

/* BACKGROUND + GLOBAL */
body, .body {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' ... %3C/svg%3E");
    background-color: #000000;
    color: #ffffff;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    overflow-x: hidden;
}

/* HEADER */
header.primary {
    background-color: #000000;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

header.primary h1 {
    margin: 0;
    font-size: clamp(1.5rem, 6vw, 3em);
    color: #ffffff;
    padding-bottom: 20px;
}

/* NAVIGATION */
nav.primary ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav.primary ul li {
    list-style: none;
}

/* PRETTY BUTTONS */
nav.primary ul li a {
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 26px;
    border: 1px solid #04ff00;
    border-radius: 10px;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 0.5px;
    transition: 0.3s ease;
    box-shadow: 0 0 8px #04ff00;
}

nav.primary ul li a:hover {
    background: #04ff00;
    color: #000000;
    box-shadow: 0 0 15px #04ff00, 0 0 30px #04ff00;
    transform: translateY(-3px);
}

/* MAIN CONTENT */
main {
    max-width: 900px;
    margin: 40px auto;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    border-left: 4px solid #04ff00;
    padding-left: 10px;
}

section p, section ul {
    font-size: 1.1rem;
    line-height: 1.6;
}

section ul {
    padding-left: 20px;
}

section ul li {
    margin-bottom: 8px;
}

/* FOOTER */
.site-footer {
    margin-top: 60px;
    padding: 20px;
    text-align: center;
    color: #ffffff;
    border-top: 1px solid #04ff00;
    opacity: 0.8;
    font-size: 0.9rem;
    text-shadow: 0 0 8px #04ff00;
}

.site-footer:hover {
    opacity: 1;
}

/* MOBILE — FULL PHONE COMPATIBILITY */
@media (max-width: 700px) {

    body {
        padding: 10px;
    }

    /* Stack nav buttons cleanly */
    nav.primary ul {
        flex-direction: column;
        gap: 20px;              /* ← adds real spacing between buttons */
        width: 100%;
        padding: 0;
    }

    nav.primary ul li {
        width: 100%;            /* ← ensures each button gets its own row */
    }

    nav.primary ul li a {
        display: block;         /* ← prevents overlap */
        width: 100%;
        text-align: center;
        padding: 16px;
        white-space: normal;
        font-size: 1.05rem;
        box-sizing: border-box; /* ← ensures glow doesn’t push it outward */
    }

    main {
        margin: 20px auto;
        padding: 0 6px;
    }

    section h2 {
        font-size: 1.5rem;
    }

    .site-footer {
        font-size: 0.85rem;
        padding: 16px;
    }
}

