@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* =========================
   CURSOR (OPTIONAL / DISABLED)
   - Uncomment if client wants custom cursor later
   - Forces default cursor override (NES.css safe reset)
========================= */

/*
html, body {
    cursor: auto !important;
}

a,
button,
.nes-btn,
[role="button"] {
    cursor: auto !important;
}
*/

/* =========================
   BASE
========================= */

html, body {
    cursor: default !important;
}

/* Make sure interactive elements still behave correctly */
a,
button,
.nes-btn,
[role="button"] {
    cursor: pointer !important;
}

html,
body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #ffe9a3;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

body {
    padding: 20px;
}

.wrapper {
    max-width: 960px;
    margin: 0 auto;
}

header {
    margin-bottom: 40px;
}

/* =========================
   HEADER
========================= */

.header {
    background: #111 !important;

    border-color: #ffe05a !important;
    border-width: 4px;
    border-style: solid;

    padding: 24px !important;
    text-align: center;

    margin-bottom: 40px;

    box-shadow:
        0 0 0 4px #c97f00,
        0 0 16px rgba(255, 224, 90, 0.12);
}

.header img {
    display: block;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto 20px;
}

.header h1 {
    margin: 0 0 20px;
    font-family: 'Press Start 2P', cursive;
    font-size: 24px;
    line-height: 1.4;
}

.header h1 a {
    color: #ffe05a;
    text-decoration: none;
    text-shadow: 2px 2px 0 #c97f00;
}

/* =========================
   SYSTEM BANNER
========================= */

.system-banner {
    font-family: 'Press Start 2P', cursive;
    font-size: 11px;
    line-height: 1.8;
    color: #ffe9a3;
    text-align: center;

    padding: 10px 12px;
    margin-top: 10px;

    border-top: 2px solid rgba(255, 224, 90, 0.25);
    border-bottom: 2px solid rgba(255, 224, 90, 0.25);

    background: rgba(255, 224, 90, 0.03);
}

.system-banner span {
    display: block;
}

.system-by {
    margin-top: 6px;
    color: #f5e6a8;
}

.system-banner a {
    color: #4fd8ff;
    text-decoration: none;
    text-shadow: 1px 1px 0 #000;
}

/* =========================
   CONTENT
========================= */

section {
    width: 100%;
}

section img {
    width: 100%;
    height: auto;
    display: block;
}

/* HEADINGS */

h1 {
    margin-top: 60px;
    margin-bottom: 28px;
    font-family: 'Press Start 2P', cursive;
    font-size: 32px;
    line-height: 1.6;
    letter-spacing: 2px;
    color: #ffe05a;
    text-shadow: 3px 3px 0 #c97f00;
}

/* TEXT */

p {
    font-size: 18px;
    color: #ffe9a3;
    line-height: 1.75;
}

/* LISTS */

li {
    font-size: 18px;
    color: #ffe9a3;
    line-height: 1.7;
}

.nes-list {
    margin-top: 20px;
}

.nes-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 18px;
}

.nes-list li::before {
    content: "▸";
    position: absolute;
    left: 0;
    top: 2px;
    color: #ffe05a !important;
    opacity: 1 !important;
    text-shadow: 2px 2px 0 #c97f00;
    font-family: Arial, sans-serif;
}

/* LINKS */

a {
    color: #4fd8ff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* BUTTONS */

.nes-btn {
    margin: 25px 0;
    font-family: 'Press Start 2P', cursive !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    padding: 18px 28px !important;
    background: #49d84f !important;
    color: #000 !important;
    border: 4px solid #000 !important;
    box-shadow: 6px 6px 0 #1f7d23 !important;
    text-transform: uppercase;
    transition: all 0.08s linear;
}

.nes-btn:hover {
    background: #63ff69 !important;
    transform: translate(2px, 2px);
    box-shadow: 4px 4px 0 #1f7d23 !important;
}

.nes-btn:active {
    transform: translate(6px, 6px);
    box-shadow: none !important;
}

.nes-btn::after {
    display: none !important;
}

/* VIDEO */

.video-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: 20px;
}

.video-container iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* FOOTER */

.footer-credit {
    text-align: center;
    margin-top: 80px;
    opacity: 0.8;
}

.footer-credit a {
    text-decoration: none;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    body {
        padding: 10px;
    }

    .header {
        padding: 15px !important;
    }

    .header h1 {
        font-size: 16px;
    }

    h1 {
        font-size: 22px;
        line-height: 1.5;
    }

    p,
    li {
        font-size: 16px;
    }
}

/* =========================
   NAV LINKS
========================= */

.nav-link {
    font-family: 'Press Start 2P', cursive;
    font-size: 12px;
    color: #ffcc66;
    text-decoration: none;
    display: inline-block;
    margin-top: 40px;
    padding: 10px 14px;
    border: 2px solid rgba(255, 204, 102, 0.4);
    background: rgba(255, 224, 90, 0.05);
    text-shadow: 2px 2px 0 #000;
}

.nav-link:hover {
    background: rgba(255, 224, 90, 0.12);
    border-color: #ffe05a;
    color: #ffe05a;
}

.inline-image {
    width: auto !important;
    max-width: 320px;
    max-height: 80vh;
    display: inline-block !important;
    margin: 20px 0;

    border: 4px solid #ffe05a;

    box-shadow:
        4px 4px 0 #c97f00;
}

/* MOBILE */

@media (max-width: 768px) {

    .inline-image {
        width: 85% !important;
        max-width: 85%;
        height: auto;
    }

}