/* Design Tokens & Variables */
:root {
    --primary-neon: #ccff00; /* Robin Neon */
    --neon-glow: rgba(204, 255, 0, 0.2);
    --bg-dark: #070a0c;
    --border-color: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #8e9ca6;
    --font-heading: 'Archivo Black', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-hand: 'Gochi Hand', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
}

/* Fixed background scenery so the forest never cuts off and stays in place */
.background-scenery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('assets/sherwood_bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -2;
}

/* Fixed radial gradient dark vignette overlay over the background */
.dark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle, rgba(7, 10, 12, 0.2) 0%, rgba(7, 10, 12, 0.8) 85%);
    z-index: -1;
}

/* Site Wrapper */
.site-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Common Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-tag {
    color: var(--primary-neon);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 0 10px var(--neon-glow);
    margin-bottom: 8px;
}

.accent-bar {
    width: 50px;
    height: 4px;
    background: var(--primary-neon);
    margin-top: 12px;
    margin-bottom: 24px;
}
.accent-bar.centered {
    margin-left: auto;
    margin-right: auto;
}

/* HERO SECTION (Screen 1) */
.hero-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 60px;
}

.hero-container {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.subtitle-badge {
    color: var(--primary-neon);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-title {
    font-family: var(--font-heading);
    font-size: 46px;
    line-height: 1.1;
    letter-spacing: -2px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 40%, var(--primary-neon));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
}

/* Mascot Logo (Clean non-circular display) */
.mascot-logo {
    width: 260px;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid #000000;
    box-shadow: 8px 8px 0px #000000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mascot-logo:hover {
    transform: scale(1.02) rotate(-1deg);
    box-shadow: 10px 10px 0px #000000;
}

.description-text {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.6;
    max-width: 520px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

/* Neobrutalist Action Buttons (Image 3 style) */
.button-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.action-row {
    display: flex;
    gap: 12px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    height: 52px;
    padding: 0 24px;
    border: 3px solid #000000;
    border-radius: 12px;
    box-shadow: 5px 5px 0px #000000;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
}

.btn:active {
    transform: translate(3px, 3px);
    box-shadow: 2px 2px 0px #000000;
}

/* Orange Buy Button */
.btn-buy {
    background-color: #ff7a00;
    color: #000000;
    font-size: 15px;
}
.btn-buy:hover {
    background-color: #ff8f24;
}

/* Black/Neon Heist Button */
.btn-heist {
    background-color: #000000;
    color: var(--primary-neon);
}
.btn-heist:hover {
    background-color: #111111;
}

/* Square White Buttons */
.btn-square {
    background-color: #ffffff;
    color: #000000;
    width: 52px;
    padding: 0;
}
.btn-square:hover {
    background-color: #f1f5f9;
}

.scroll-prompt {
    font-family: var(--font-hand);
    font-size: 20px;
    color: var(--primary-neon);
    letter-spacing: 1.5px;
    margin-top: 8px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-6px); }
    60% { transform: translateY(-3px); }
}

/* MISSION SECTION (Screen 2 - Fox with Target) */
.mission-section {
    background-color: rgba(7, 10, 12, 0.85);
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.mission-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.mission-image-area {
    display: flex;
    justify-content: center;
}

.mission-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid #000000;
    box-shadow: 8px 8px 0px #000000;
}

.mission-text-area {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mission-text-area h2 {
    font-size: 38px;
    font-family: var(--font-heading);
    letter-spacing: -1.5px;
}

.mission-quote {
    font-family: var(--font-hand);
    font-size: 24px;
    color: var(--primary-neon);
    line-height: 1.3;
}

.mission-body {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.ca-display-box {
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border-color);
    padding: 14px 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: max-content;
}

.ca-title {
    color: var(--primary-neon);
    font-weight: 800;
    font-size: 13px;
}

.ca-display-box code {
    font-family: monospace;
    font-size: 13px;
    color: #cbd5e1;
}

/* ROADMAP SECTION (Screen 3 - Parchment Map) */
.roadmap-section {
    background-color: rgba(7, 10, 12, 0.85);
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 38px;
    font-family: var(--font-heading);
    letter-spacing: -1.5px;
}

/* Custom Roadmap Map Graphic (Neobrutalist styling) */
.roadmap-graphic-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 50px auto;
    display: flex;
    justify-content: center;
}

.roadmap-map-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 3px solid #000000;
    box-shadow: 10px 10px 0px #000000;
}

/* Vintage Parchment Scroll Card */
.map-card {
    background-color: #f3edd8; /* Vintage paper color */
    border: 4px solid #4a3319; /* Aged leather brown */
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: 10px 10px 0px #000000, 0 10px 30px rgba(0,0,0,0.5);
    position: relative;
    color: #2b1f13; /* Dark brown text for contrast */
}

/* Handdrawn sketch details inside the map */
.map-inner {
    border: 1px dashed rgba(74, 51, 25, 0.3);
    border-radius: 16px;
    padding: 20px;
}

.map-title {
    font-family: var(--font-heading);
    font-size: 26px;
    letter-spacing: -1px;
    text-transform: uppercase;
    color: #4a3319;
    text-align: center;
}

.map-sub {
    font-family: var(--font-hand);
    font-size: 22px;
    color: #7d5a37;
    text-align: center;
    margin-top: 4px;
    margin-bottom: 30px;
}

/* Map Roadmap Nodes */
.map-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.map-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(74, 51, 25, 0.04);
    border: 2px solid rgba(74, 51, 25, 0.15);
    border-radius: 16px;
    padding: 20px 12px;
    min-height: 240px;
}

.map-node.active {
    background: rgba(204, 255, 0, 0.08);
    border-color: #4a3319;
    box-shadow: 0 4px 15px rgba(74, 51, 25, 0.1);
}

.node-icon {
    font-size: 26px;
    color: #4a3319;
    margin-bottom: 12px;
}

.map-node h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #4a3319;
}

.node-status {
    font-family: var(--font-hand);
    font-size: 16px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.node-status.done {
    background-color: rgba(0, 200, 5, 0.15);
    color: #008f03;
    border: 1px solid rgba(0, 200, 5, 0.3);
}
.node-status.active {
    background-color: rgba(255, 122, 0, 0.15);
    color: #b85200;
    border: 1px solid rgba(255, 122, 0, 0.3);
}
.node-status.locked {
    background-color: rgba(0, 0, 0, 0.05);
    color: #64748b;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.node-desc {
    font-size: 12px;
    line-height: 1.5;
    color: #5d4834;
}

/* Connectors between nodes */
.map-connector {
    align-self: center;
    font-size: 18px;
    color: #7d5a37;
    margin-bottom: 30px;
}

/* FOOTER SECTION */
.footer-disclaimer {
    border-top: 1px solid var(--border-color);
    padding: 60px 0 40px 0;
    background-color: #040608;
    color: rgba(255, 255, 255, 0.2);
    font-size: 11px;
    line-height: 1.6;
    text-align: center;
    position: relative;
    z-index: 10;
}

.footer-disclaimer p {
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 16px;
}

.copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.1);
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 992px) {
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .mission-text-area {
        align-items: center;
    }
    .ca-display-box {
        justify-content: center;
    }
    .map-grid {
        flex-direction: column;
        align-items: stretch;
    }
    .map-node {
        min-height: auto;
    }
    .map-connector {
        transform: rotate(90deg);
        margin: 10px 0;
        align-self: center;
    }
}

@media (max-width: 500px) {
    .main-title {
        font-size: 34px;
    }
    .mascot-logo {
        width: 200px;
    }
    .mission-text-area h2 {
        font-size: 28px;
    }
}
