/* Color Palette & Base Variables */
:root {
    --color-void: #000000;
    --color-primary: #00FF41;
    /* Matrix Green */
    --color-cyber: #00FFFF;
    /* Cyber Blue */
    --color-magenta: #FF00FF;
    /* Magenta */
    --color-passive: #9CA3AF;
    /* Light Gray */
    --color-alert: #FF4500;
    /* Orange/Red */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-data: 'Fira Code', monospace;
}

/* Global Reset & Core Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-radius: 0px !important;
    /* Strict Enforcement: No Rounded Corners */
    cursor: crosshair !important;
}

body,
html {
    width: 100%;
    min-height: 100vh;
    background-color: var(--color-void);
    color: var(--color-passive);
    font-family: var(--font-data);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* ========================================= LAYER 0: GLITCH UNIVERSE (Bottom Layer) ========================================= */
#glitch-universe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background: #050505;
    overflow: hidden;
}

/* Animated noise using repeating linear gradients */
#glitch-universe::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(90deg, transparent 0, transparent 2px, rgba(0, 255, 255, 0.08) 2px, rgba(0, 255, 255, 0.08) 4px), repeating-linear-gradient(0deg, transparent 0, transparent 2px, rgba(255, 0, 255, 0.08) 2px, rgba(255, 0, 255, 0.08) 4px);
    background-size: 15px 15px;
    animation: chaotic-noise 0.2s infinite linear;
}

/* Random color flashes (hard-light blend) */
#glitch-universe::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--color-cyber), var(--color-magenta));
    opacity: 0.3;
    mix-blend-mode: hard-light;
    animation: hue-pulse 4s infinite linear;
}

@keyframes chaotic-noise {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(15px, 15px);
    }
}

@keyframes hue-pulse {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

/* ========================================= LAYER 1: SIMULATION SURFACE (Middle Layer) ========================================= */
#simulation-surface {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background-color: var(--color-void);
    /* Subtle Grid Pattern */
    background-image: linear-gradient(rgba(0, 255, 65, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 65, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    /* Variables driven by JS */
    --mouse-x: -1000px;
    --mouse-y: -1000px;
    /* The Flashlight Mask revealing Layer 0 */
    mask-image: radial-gradient(circle 250px at var(--mouse-x) var(--mouse-y), transparent 0%, black 60%);
    -webkit-mask-image: radial-gradient(circle 250px at var(--mouse-x) var(--mouse-y), transparent 0%, black 60%);
    pointer-events: none;
}

/* ========================================= LAYER 2: CONTENT LAYER (Top Layer) ========================================= */
#content-layer {
    position: relative;
    z-index: 2;
    background: transparent;
    pointer-events: none;
    /* Let empty space pass clicks */
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
    opacity: 0;
    /* Hidden during loader */
    transition: opacity 1s ease-in;
}

#content-layer.visible {
    opacity: 1;
}

/* Global Terminal Scanlines Effect overlaying all content */
#content-layer::after {
    content: "";
    position: fixed;
    /* Fixed to apply to the whole viewport while inside content */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.15));
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 99;
    /* Higher than content, lower than bot */
}

/* Allow interaction on all child elements of the content layer */
header,
.hero,
.services,
.live-data,
.contact-section,
footer {
    pointer-events: auto;
}

/* --- BOOT SEQUENCE LOADER --- */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-void);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease;
}

#loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    font-size: 1.5rem;
    color: var(--color-primary);
    text-align: center;
    max-width: 90vw;
    white-space: nowrap;
}

.cursor {
    display: inline-block;
    width: 10px;
    height: 1.1em;
    background-color: var(--color-primary);
    vertical-align: bottom;
    margin-left: 5px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* --- TYPOGRAPHY & HEADER --- */
header {
    margin-bottom: 5rem;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2rem;
    color: var(--color-primary);
    text-transform: uppercase;
    text-shadow: 0 0 12px rgba(0, 255, 65, 0.5);
    display: flex;
    align-items: center;
}

.logo-link {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    color: #fff;
    text-shadow: 2px 0 0 var(--color-magenta), -2px 0 0 var(--color-cyber);
}

.logo-caret {
    animation: blink 1s step-end infinite;
    margin-left: 2px;
}

/* --- SVG LOGO ANIMATION (PERPETUAL GLITCH) --- */
.svg-logo {
    width: 280px;
    height: 40px;
    overflow: visible;
}

.svg-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 32px;
    /* Matches 2rem */
    pointer-events: none;
}

.svg-main {
    fill: var(--color-primary);
    filter: drop-shadow(0 0 8px rgba(0, 255, 65, 0.5));
}

.svg-caret {
    animation: blink 1s step-end infinite;
}

.svg-glitch-1,
.svg-glitch-2 {
    position: absolute;
    opacity: 0.8;
}

.svg-glitch-1 {
    fill: var(--color-cyber);
    transform: translate(-2px, 2px);
    animation: svg-glitch-anim-1 3s infinite linear alternate-reverse;
}

.svg-glitch-2 {
    fill: var(--color-magenta);
    transform: translate(2px, -2px);
    animation: svg-glitch-anim-2 2s infinite linear alternate-reverse;
}

/* Add perpetual continuous SVG noise paths */
@keyframes svg-glitch-anim-1 {
    0% {
        clip-path: inset(20% 0 80% 0);
        transform: translate(-2px, 1px);
    }

    10% {
        clip-path: inset(60% 0 10% 0);
        transform: translate(2px, -1px);
    }

    20% {
        clip-path: inset(40% 0 50% 0);
        transform: translate(-2px, 2px);
    }

    30% {
        clip-path: inset(80% 0 5% 0);
        transform: translate(1px, -2px);
    }

    40% {
        clip-path: inset(10% 0 60% 0);
        transform: translate(-1px, 1px);
    }

    50% {
        clip-path: inset(30% 0 50% 0);
        transform: translate(2px, 0px);
    }

    60% {
        clip-path: inset(70% 0 20% 0);
        transform: translate(-2px, -1px);
    }

    70% {
        clip-path: inset(10% 0 80% 0);
        transform: translate(1px, 2px);
    }

    80% {
        clip-path: inset(50% 0 30% 0);
        transform: translate(-1px, -2px);
    }

    90% {
        clip-path: inset(5% 0 90% 0);
        transform: translate(2px, 1px);
    }

    100% {
        clip-path: inset(90% 0 5% 0);
        transform: translate(-2px, 0px);
    }
}

@keyframes svg-glitch-anim-2 {
    0% {
        clip-path: inset(10% 0 60% 0);
        transform: translate(2px, -1px);
    }

    10% {
        clip-path: inset(80% 0 5% 0);
        transform: translate(-2px, 2px);
    }

    20% {
        clip-path: inset(15% 0 80% 0);
        transform: translate(1px, -2px);
    }

    30% {
        clip-path: inset(50% 0 20% 0);
        transform: translate(-1px, 1px);
    }

    40% {
        clip-path: inset(5% 0 90% 0);
        transform: translate(2px, 0px);
    }

    50% {
        clip-path: inset(70% 0 10% 0);
        transform: translate(-2px, -1px);
    }

    60% {
        clip-path: inset(30% 0 50% 0);
        transform: translate(1px, 2px);
    }

    70% {
        clip-path: inset(90% 0 5% 0);
        transform: translate(-1px, -2px);
    }

    80% {
        clip-path: inset(20% 0 70% 0);
        transform: translate(2px, 1px);
    }

    90% {
        clip-path: inset(60% 0 20% 0);
        transform: translate(-2px, 0px);
    }

    100% {
        clip-path: inset(40% 0 40% 0);
        transform: translate(1px, -1px);
    }
}

/* --- HERO SECTION --- */
.hero {
    text-align: left;
    margin-bottom: 6rem;
}

.glitch-headline {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 5rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

/* Screen Tearing Effect */
.glitch-headline::before,
.glitch-headline::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.glitch-headline::before {
    color: var(--color-cyber);
    z-index: -1;
    clip-path: inset(0 0 0 0);
    animation: screen-tear-1 2s infinite linear alternate-reverse;
}

.glitch-headline::after {
    color: var(--color-magenta);
    z-index: -2;
    clip-path: inset(0 0 0 0);
    animation: screen-tear-2 3s infinite linear alternate-reverse;
}

@keyframes screen-tear-1 {
    0% {
        clip-path: inset(20% 0 80% 0);
        transform: translateX(-4px);
    }

    20% {
        clip-path: inset(60% 0 10% 0);
        transform: translateX(4px);
    }

    40% {
        clip-path: inset(40% 0 50% 0);
        transform: translateX(-4px);
    }

    100% {
        clip-path: inset(30% 0 50% 0);
        transform: translateX(0px);
    }
}

@keyframes screen-tear-2 {
    0% {
        clip-path: inset(10% 0 60% 0);
        transform: translateX(4px);
    }

    20% {
        clip-path: inset(80% 0 5% 0);
        transform: translateX(-4px);
    }

    100% {
        clip-path: inset(15% 0 80% 0);
        transform: translateX(0px);
    }
}

.hero-subtext {
    font-size: 1.25rem;
    max-width: 650px;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    background: transparent;
    color: var(--color-primary);
    border: 2px dashed var(--color-primary);
    padding: 1.2rem 2.5rem;
    font-family: var(--font-data);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease-out;
}

.cta-btn:hover {
    background: rgba(0, 255, 65, 0.1);
    color: #fff;
    border-style: solid;
    border-color: var(--color-cyber);
    box-shadow: 4px 4px 0px var(--color-magenta);
    /* Violent text shake */
    animation: btn-glitch 0.3s infinite;
}

@keyframes btn-glitch {
    0% {
        transform: translate(0, 0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* --- BLOG ACCESS BUTTON --- */
.blog-btn {
    display: inline-block;
    background: transparent;
    color: var(--color-passive);
    border: 1px dotted rgba(0, 255, 65, 0.4);
    padding: 1rem 2rem;
    font-family: var(--font-data);
    font-weight: 400;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    white-space: nowrap;
    /* Prevent line breaks inside bracket text */
}

.blog-btn:hover {
    color: var(--color-primary);
    border: 1px dashed var(--color-primary);
    background: rgba(0, 255, 65, 0.05);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.1);
}

/* --- THE FILE SYSTEM (SERVICES) --- */
.services {
    margin-bottom: 6rem;
    border-top: 1px dashed #333;
    padding-top: 3rem;
}

.system-header {
    color: var(--color-primary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.accordion-item {
    border-bottom: 1px solid #1a1a1a;
    transition: background 0.3s ease;
}

.accordion-trigger {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--color-passive);
    font-family: var(--font-data);
    font-size: 1.25rem;
    text-align: left;
    padding: 1.8rem 1rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

/* Base Active State */
.accordion-trigger.active {
    color: #fff;
    padding-left: 2rem;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.8);
    background: rgba(0, 255, 65, 0.05);
}

/* GLITCH CHROMATIC ABERRATION HOVER EFFECT */
.accordion-trigger:hover,
.accordion-trigger.active:hover {
    color: #fff;
    padding-left: 2rem;
    /* Blend Cyber Blue & Magenta as an offset text shadow */
    text-shadow: 2px 0 0 var(--color-magenta), -2px 0 0 var(--color-cyber);
    /* Make the text shake slightly */
    animation: accordion-glitch 0.2s infinite alternate;
}

@keyframes accordion-glitch {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(1px);
    }
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    /* Standardized border from the brand identity */
    margin-left: 10px;
    border-left: 2px solid var(--color-primary);
}

.hologram-text {
    padding: 1rem 1.5rem 2rem 1.5rem;
    color: #ddd;
    line-height: 1.6;
    /* RGB Split / Chromatic Aberration */
    text-shadow: 1px 0 rgba(255, 0, 0, 0.6), -1px 0 rgba(0, 255, 255, 0.6);
    animation: rgb-shift 3s infinite;
}

@keyframes rgb-shift {

    0%,
    100% {
        text-shadow: 2px 0 rgba(255, 0, 0, 0.6), -2px 0 rgba(0, 255, 255, 0.6);
    }

    50% {
        text-shadow: -2px 0 rgba(255, 0, 0, 0.6), 2px 0 rgba(0, 255, 255, 0.6);
    }
}

/* --- LIVE DATA STREAM (MARQUEE) --- */
.live-data {
    margin-bottom: 6rem;
}

.marquee {
    background: rgba(0, 255, 65, 0.05);
    border-top: 1px solid var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    padding: 1.2rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-scroll 25s linear infinite;
    color: var(--color-primary);
    font-size: 1rem;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* --- BLOG LIST DIRECTORY --- */
.blog-directory {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
    font-family: var(--font-data);
}

.terminal-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: 0.2s;
}

.terminal-link:hover {
    color: #fff;
    /* Blend Cyber Blue & Magenta as an offset text shadow */
    text-shadow: 2px 0 0 var(--color-magenta), -2px 0 0 var(--color-cyber);
    /* Make the text shake slightly */
    animation: accordion-glitch 0.2s infinite alternate;
}

.blog-entry {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #1a1a1a;
    text-decoration: none;
    color: var(--color-passive);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.blog-entry-meta {
    font-size: 0.85rem;
    opacity: 0.6;
    letter-spacing: 1px;
}

.blog-entry-title {
    font-size: 1.25rem;
    color: var(--color-passive);
    transition: color 0.3s;
}

.blog-entry:hover {
    background: rgba(0, 255, 65, 0.05);
    /* Matrix green faint glow */
    border-left: 2px solid var(--color-primary);
    padding-left: 1.5rem;
}

.blog-entry:hover .blog-entry-title {
    color: #fff;
    /* Blend Cyber Blue & Magenta as an offset text shadow - characteristic of FikirFusion Links */
    text-shadow: 2px 0 0 var(--color-magenta), -2px 0 0 var(--color-cyber);
    /* Make the text shake slightly */
    animation: accordion-glitch 0.2s infinite alternate;
}

.blog-entry:hover .blog-entry-meta {
    color: var(--color-primary);
    opacity: 1;
}

/* Accordion Setup for Blog Entries */
.blog-trigger {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.blog-trigger:hover .blog-entry-title,
.blog-trigger.active .blog-entry-title {
    color: #fff;
    text-shadow: 2px 0 0 var(--color-magenta), -2px 0 0 var(--color-cyber);
    animation: accordion-glitch 0.2s infinite alternate;
}

.blog-panel {
    /* Uses .accordion-panel styles but specifically scoped to remove standard padding overrides */
    border-left: 2px solid var(--color-magenta);
    /* Magenta left line for blog expansion */
    border-right: 2px solid var(--color-cyber);
    /* Cyber Cyan right line for balance */
    margin-left: 20px;
    margin-top: 10px;
}

/* --- CONTACT SECTION --- */
.contact-section {
    margin-bottom: 4rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px dashed #333;
    padding-top: 3rem;
}

.terminal-email-input {
    background: transparent;
    border: none;
    border-bottom: 2px solid #333;
    color: var(--color-primary);
    padding: 1.2rem;
    font-family: var(--font-data);
    width: 380px;
    max-width: 100%;
    box-sizing: border-box;
    /* Prevent padding from expanding past 100% width on mobile */
    outline: none;
    font-size: 1.1rem;
    transition: border-color 0.3s;
}

.terminal-email-input:focus {
    border-color: var(--color-primary);
}

.btn-submit {
    background: transparent;
    color: var(--color-passive);
    border: 1px solid #333;
    padding: 1.2rem 2.5rem;
    font-family: var(--font-data);
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--color-primary);
    color: #000;
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

/* --- FOOTER & STATUS PANEL --- */
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333;
    padding: 2rem 0;
    font-size: 0.9rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left {
    flex: 1;
}

.footer-center.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex: 1;
}

.social-icon {
    color: var(--color-passive);
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--color-primary);
    filter: drop-shadow(0 0 5px var(--color-primary));
    transform: translateY(-2px);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.unstable-text {
    color: var(--color-alert);
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: var(--color-alert);
    border-radius: 50% !important;
    /* Specific exception for circular LED indicator */
    box-shadow: 0 0 10px var(--color-alert);
    animation: led-blink 1s infinite alternate;
}

@keyframes led-blink {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0.2;
        transform: scale(0.8);
    }
}

/* --- SECRET FEATURE: FİKİR_BOT (Minimal HUD Version) --- */
#hunter-bot {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 300px;
    /* Reduced width for minimal footprint */
    background: transparent;
    /* Move the glass filter to pseudo element for flickering */
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: translateX(50px) scale(0.95);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    /* Targeting Brackets / Corner HUD effect via backgrounds */
    background-image:
        /* Top Left */
        linear-gradient(var(--color-primary), var(--color-primary)), linear-gradient(var(--color-primary), var(--color-primary)),
        /* Top Right */
        linear-gradient(var(--color-primary), var(--color-primary)), linear-gradient(var(--color-primary), var(--color-primary)),
        /* Bottom Left */
        linear-gradient(var(--color-primary), var(--color-primary)), linear-gradient(var(--color-primary), var(--color-primary)),
        /* Bottom Right */
        linear-gradient(var(--color-primary), var(--color-primary)), linear-gradient(var(--color-primary), var(--color-primary));
    background-repeat: no-repeat;
    background-size: 0 0;
    /* Let the animation control the size */
    animation: bot-bracket-focus 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    background-position: 0 0, 0 0, 100% 0, 100% 0, 0 100%, 0 100%, 100% 100%, 100% 100%;
}

@keyframes bot-bracket-focus {

    0%,
    100% {
        background-size: 15px 2px, 2px 15px, 15px 2px, 2px 15px, 15px 2px, 2px 15px, 15px 2px, 2px 15px;
    }

    50% {
        background-size: 8px 2px, 2px 8px, 8px 2px, 2px 8px, 8px 2px, 2px 8px, 8px 2px, 2px 8px;
    }
}

#hunter-bot::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Start with a highly transparent base */
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    z-index: -1;
    animation: hud-flicker 3s infinite alternate;
}

@keyframes hud-flicker {

    0%,
    19%,
    21%,
    54%,
    56%,
    100% {
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(2px);
    }

    20%,
    24%,
    55% {
        background: rgba(0, 0, 0, 0.05);
        /* Removed green tint, very clear */
        backdrop-filter: blur(0px);
        /* Sharp */
    }

    30%,
    33% {
        background: rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(6px);
        /* Heavy blur glitch */
    }

    60%,
    65% {
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(1px);
    }
}

#hunter-bot::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.1) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 5;
    opacity: 0.8;
}

#hunter-bot.active {
    animation: hud-unfold 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    /* Subtle glow instead of heavy dropped shadows */
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.3);
}

/* --- MINIMIZED BOT TAB --- */
#minimized-bot-tab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    color: var(--color-primary);
    border: 1px dashed rgba(0, 255, 65, 0.5);
    padding: 8px 15px;
    font-family: var(--font-data);
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 1000;
    display: none;
    /* Hidden on load */
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.1);
    transition: all 0.3s ease;
    cursor: crosshair;
    pointer-events: auto;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}

#minimized-bot-tab:hover {
    background: rgba(0, 255, 65, 0.1);
    text-shadow: 1px 0 var(--color-magenta), -1px 0 var(--color-cyber);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
    border: 1px solid var(--color-primary);
}

@keyframes hud-unfold {
    0% {
        opacity: 0;
        transform: translateX(30px) scale(0.98);
        filter: blur(2px) hue-rotate(90deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
        filter: blur(0) hue-rotate(0deg);
    }
}

.bot-header {
    background: transparent;
    color: var(--color-primary);
    padding: 12px 15px 8px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(0, 255, 65, 0.5);
    letter-spacing: 1px;
}

.bot-title {
    font-family: var(--font-data);
    text-shadow: 1px 0 var(--color-magenta), -1px 0 var(--color-cyber);
    animation: hud-title-glitch 2s infinite alternate;
}

@keyframes hud-title-glitch {

    0%,
    100% {
        text-shadow: 1px 0 var(--color-magenta), -1px 0 var(--color-cyber);
    }

    50% {
        text-shadow: -1px 0 var(--color-magenta), 1px 0 var(--color-cyber);
    }
}

.close-bot {
    background: transparent;
    border: none;
    color: var(--color-passive);
    font-family: var(--font-data);
    font-size: 0.8rem;
    cursor: pointer;
    z-index: 10;
    position: relative;
    transition: color 0.2s;
}

.close-bot:hover {
    color: var(--color-alert);
}

.bot-body {
    /* Padding stripped to let inline style control it due to generic class overrides */
    color: #fff;
    font-size: 0.85rem;
}

.bot-footer {
    padding: 10px 15px;
    text-align: left;
    background: transparent;
    border-top: 1px dashed rgba(0, 255, 65, 0.5);
}

.accept-connection {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    padding: 8px 12px;
    font-weight: 700;
    font-family: var(--font-data);
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.2s;
    position: relative;
    z-index: 10;
    text-transform: uppercase;
    text-decoration: none;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
}

.accept-connection::before {
    content: '>';
    margin-right: 5px;
    animation: blink 1s step-end infinite;
}

.accept-connection:hover {
    color: #fff;
    text-shadow: 2px 0 var(--color-magenta), -2px 0 var(--color-cyber);
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--color-cyber);
    box-shadow: 3px 3px 0px var(--color-magenta);
    animation: btn-glitch 0.3s infinite;
}

/* ========================================= MOBILE RESPONSIVENESS ========================================= */
@media (max-width: 768px) {

    /* Disable Masking & Heavy Setup for Performance */
    #simulation-surface {
        mask-image: none !important;
        -webkit-mask-image: none !important;
        opacity: 0.85;
        /* Dim it statically to reveal glitch below */
        background-color: transparent;
    }

    #glitch-universe::after {
        opacity: 0.05;
        /* reduce brightness for mobile readability */
    }

    .glitch-headline {
        font-size: 3rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .main-header {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 0 15px;
        /* Align with sections on mobile */
    }

    .main-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    /* Further scale down headline and text in inputs for smaller devices */
    .terminal-email-input {
        font-size: 0.95rem;
        padding: 1rem 0.5rem;
    }

    .btn-submit {
        width: 100%;
        padding: 1rem;
        font-size: 0.95rem;
    }

    header,
    .hero,
    .services {
        margin-bottom: 4rem;
    }

    footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }

    #hunter-bot {
        width: 90%;
        right: 5%;
        bottom: 20px;
    }

    .blog-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .blog-entry {
        padding: 0.8rem 1rem;
    }

    .blog-trigger {
        padding: 0;
    }

    .blog-entry-title {
        font-size: 0.95rem;
    }

    .blog-entry-meta {
        font-size: 0.75rem;
        letter-spacing: 0;
    }
}

/* ========================================= TERMINAL CHAT INTERFACE ========================================= */
#terminal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: none;
    /* Uses JS to toggle */
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

#terminal-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: -1;
    mask-image: radial-gradient(circle 250px at var(--mouse-x, -1000px) var(--mouse-y, -1000px), transparent 0%, black 60%);
    -webkit-mask-image: radial-gradient(circle 250px at var(--mouse-x, -1000px) var(--mouse-y, -1000px), transparent 0%, black 60%);
    pointer-events: none;
}

#terminal-overlay.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    display: flex;
}

.terminal-window {
    width: 90%;
    max-width: 900px;
    height: 80vh;
    border: 2px solid var(--color-primary);
    background-color: rgba(5, 5, 5, 0.95);
    background-image: linear-gradient(rgba(0, 255, 65, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 65, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.2), 0 0 30px rgba(0, 255, 65, 0.2);
    position: relative;
    overflow: hidden;
}

.terminal-window::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 50%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.2));
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 10;
}

.terminal-header {
    background-color: rgba(0, 10, 0, 0.9);
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 255, 65, 0.1) 2px, rgba(0, 255, 65, 0.1) 4px);
    color: var(--color-primary);
    padding: 10px 15px;
    font-family: var(--font-data);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--color-primary);
    box-shadow: 0 4px 10px rgba(0, 255, 65, 0.2);
}

.terminal-close {
    cursor: pointer;
    font-weight: 900;
    padding: 0 5px;
    color: var(--color-passive);
    transition: color 0.2s;
}

.terminal-close:hover {
    color: var(--color-alert);
}

.terminal-body {
    flex-grow: 1;
    padding: 20px;
    overflow-y: auto;
    font-family: var(--font-data);
    font-size: 1rem;
    color: var(--color-passive);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 11;
    /* Above scanlines */
}

.terminal-body::-webkit-scrollbar {
    width: 8px;
}

.terminal-body::-webkit-scrollbar-track {
    background: #111;
}

.terminal-body::-webkit-scrollbar-thumb {
    background: var(--color-primary);
}

.msg-sys {
    font-size: 0.85em !important;
    font-style: italic !important;
    color: #e0fbfc !important;
    /* Lighter, readable cyan/white base */
    opacity: 0.95;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    /* Maintain the cyberpunk aesthetic with the shadow instead of the main text color */
    text-shadow: 1px 1px 2px var(--color-magenta), -1px -1px 2px var(--color-cyber) !important;
    animation: sys-vibrate 0.2s linear infinite;
}

@keyframes sys-vibrate {
    0% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(-0.5px, 0.5px);
    }

    66% {
        transform: translate(0.5px, -0.5px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.msg-agent {
    color: var(--color-primary);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.4);
}

.msg-user {
    color: #ddd;
    text-shadow: 1px 0 rgba(255, 0, 0, 0.6), -1px 0 rgba(0, 255, 255, 0.6);
    animation: rgb-shift 3s infinite;
    font-weight: bold;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--color-glow);
    text-shadow: 0 0 10px var(--color-primary);
}

/* --- MOBILE RESPONSIVENESS (MAX-WIDTH: 768px) --- */
@media (max-width: 768px) {

    /* 1. Bot HUD Overcrowding */
    #hunter-bot {
        width: 90vw;
        bottom: 15px;
        right: 5vw;
        left: 5vw;
    }

    .bot-header,
    .bot-footer {
        padding: 8px 10px;
        font-size: 0.7rem;
    }

    .bot-title {
        font-size: 0.75rem;
        /* Let title truncate if extremely small */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-right: 10px;
    }

    .bot-body {
        font-size: 0.85rem;
        padding: 10px !important;
        min-height: 50px !important;
    }

    #minimized-bot-tab {
        bottom: 15px;
        right: 15px;
        font-size: 0.7rem;
        padding: 6px 12px;
    }

    /* 2. Terminal Header Fracture */
    #terminal-overlay {
        padding: 5vw;
        /* Assure some clearance from exact edge */
    }

    .terminal-window {
        width: 100%;
        height: auto;
        /* Let it grow instead of fixing to 85vh */
        max-height: 85vh;
        /* But don't let it exceed 85vh when keyboard is closed */
        max-width: 100%;
        box-sizing: border-box;
        /* Prevent borders/padding blowing out width */
    }

    .terminal-header {
        font-size: 0.65rem;
        padding: 10px;
        flex-wrap: wrap;
        /* Default is row, wrap the disconnect button cleanly if needed */
        row-gap: 5px;
    }

    #term-close {
        white-space: nowrap;
        /* Prevents weird bracket breakage */
    }

    /* 3. Services (*.accordion-trigger*) Scaling */
    .accordion-trigger {
        font-size: 1.15rem;
        padding: 15px 12px;
    }

    /* Ensure parent container padding doesn't squeeze items too hard */
    section {
        padding: 60px 15px;
    }

    #section-execute {
        padding-top: 180px;
        margin-top: 40px;
    }

    .glitch-headline {
        font-size: 2.5rem;
    }

    .section-heading {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .loader-content {
        font-size: 0.8rem;
        width: 100%;
        padding: 0 15px;
        white-space: nowrap;
        word-break: normal;
        overflow-wrap: normal;
    }

    /* 4. Terminal Input Area Fixes */
    .terminal-input-area {
        padding: 10px 15px;
        /* Side padding inside the 100% box */
        gap: 10px;
        flex-wrap: wrap;
        /* Allow wrapping on small screens */
        box-sizing: border-box;
        width: 100%;
    }

    .prompt-prefix {
        font-size: 0.9rem;
    }

    .terminal-input {
        flex-grow: 1;
        width: 100%;
        /* Force full width on new line */
        font-size: 0.9rem;
        min-width: 150px;
        /* Don't squash too small */
    }

    #term-send-btn {
        width: 100%;
        /* Use full width for the button */
        padding: 0.8rem;
        font-size: 0.9rem;
        text-align: center;
    }
}

.terminal-input-area {
    padding: 20px;
    border-top: 1px solid var(--color-primary);
    box-shadow: 0 -5px 15px rgba(0, 255, 65, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    background: #050505;
    z-index: 11;
}

.prompt-prefix {
    color: var(--color-primary);
    font-weight: bold;
}

.terminal-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: #ddd;
    font-family: var(--font-data);
    font-size: 1rem;
    outline: none;
    caret-color: var(--color-primary);
    text-shadow: 1px 0 rgba(255, 0, 0, 0.6), -1px 0 rgba(0, 255, 255, 0.6);
    animation: rgb-shift 3s infinite;
    font-weight: bold;
}

#term-send-btn {
    display: block !important;
    background: transparent;
    color: var(--color-passive);
    border: 1px solid var(--color-primary);
    padding: 1.2rem 2.5rem;
    font-family: var(--font-data);
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

#term-send-btn:hover {
    background: rgba(0, 255, 65, 0.1);
    color: #fff;
    border: 1px solid var(--color-cyber);
    box-shadow: 4px 4px 0px var(--color-magenta);
    animation: btn-glitch 0.3s infinite;
}

#term-send-btn:active {
    background: rgba(0, 255, 65, 0.1);
    border: 1px dashed var(--color-primary);
}

/* ==================== MANIFESTO.CSS ==================== */

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--color-bg, #000000);
}

#manifesto-scroll-container {
    height: 100vh;
    width: 100vw;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

#manifesto-scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

/* Base Sections for Manifesto */
.manifesto-section {
    height: 100vh;
    width: 100vw;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 2rem 5rem 2rem;
    /* Top for header, Bottom for Bot Box */
    box-sizing: border-box;
    position: relative;
}

.content-wrapper {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Typography Enhancements */
.manifesto-title {
    font-family: var(--font-heading, "Space Grotesk", sans-serif);
    color: var(--color-primary, #00FF41);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.manifesto-subtitle {
    font-family: var(--font-mono, "Fira Code", monospace);
    color: var(--color-cyber, #00FFFF);
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin: 0 0 2rem 0;
    opacity: 0.9;
}

.section-heading {
    font-family: var(--font-heading, "Space Grotesk", sans-serif);
    color: var(--color-primary, #00FF41);
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin: 0 0 1rem 0;
    border-bottom: 2px dashed rgba(0, 255, 65, 0.3);
    padding-bottom: 0.5rem;
}

.body-text {
    font-family: var(--font-mono, "Fira Code", monospace);
    color: #e0fbfc;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    margin: 0;
}

/* Terminal & Alert Blocks */
.terminal-block {
    font-family: var(--font-mono, "Fira Code", monospace);
    background: rgba(0, 255, 65, 0.05);
    border-left: 3px solid var(--color-primary, #00FF41);
    padding: 1.5rem;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.alert-box {
    border: 1px solid var(--color-magenta, #FF00FF);
    background: rgba(255, 0, 255, 0.05);
    padding: 1.5rem;
    border-left: 4px solid var(--color-magenta, #FF00FF);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.alert-box .crypto-text {
    color: var(--color-magenta, #FF00FF);
}

.warning-text {
    color: var(--color-magenta, #FF00FF);
}

.success-text {
    color: var(--color-cyber, #00FFFF);
}

.highlight-green {
    color: var(--color-primary, #00FF41) !important;
    font-weight: bold;
}

.highlight-magenta {
    color: var(--color-magenta, #FF00FF) !important;
}

/* Lists and Quotes */
.protocol-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.protocol-list li {
    font-family: var(--font-mono, "Fira Code", monospace);
    color: var(--color-primary, #00FF41);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    align-items: center;
}

.protocol-list .dim-text {
    color: #a0a0a0;
    font-size: 0.9em;
}

.quote-text {
    font-family: var(--font-heading, "Space Grotesk", sans-serif);
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--color-cyber, #00FFFF);
    margin: 2rem 0;
    font-style: italic;
    border-left: 4px solid var(--color-cyber, #00FFFF);
    padding-left: 1.5rem;
    line-height: 1.4;
}

/* Decryption & Interaction */
.crypto-text {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.crypto-text.decrypted {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-mono, "Fira Code", monospace);
    color: var(--color-primary, #00FF41);
    text-align: center;
    font-size: 0.9rem;
    animation: cryptoPulse 2s infinite ease-in-out;
    pointer-events: none;
    z-index: 50;
    /* Ensure it stays above background but below modals */
}

@keyframes cryptoPulse {
    0% {
        opacity: 0.2;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) translateY(10px);
    }

    100% {
        opacity: 0.2;
        transform: translateX(-50%) translateY(0);
    }
}

.footer-terminal {
    margin-top: 3rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    font-family: var(--font-mono, "Fira Code", monospace);
    color: #666;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cta-container {
    margin-top: 1rem;
}

/* --- V2.1 UI/UX Updates --- */

/* Header Base Styling */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 100%);
    padding-bottom: 2rem;
}

.main-nav {
    padding: 1.5rem 2rem 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Changed from flex-start to center for better symmetry */
    width: 100%;
    box-sizing: border-box;
}

/* Alternative Text Logo */
.text-logo {
    font-family: var(--font-heading, "Space Grotesk", sans-serif);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: bold;
    color: var(--color-primary, #00FF41);
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
}

.text-logo .logo-base {
    position: relative;
    text-shadow: 2px 0px rgba(0, 255, 65, 0.4), -2px 0px rgba(0, 255, 255, 0.4);
    transition: text-shadow 0.3s ease;
}

.text-logo:hover .logo-base {
    text-shadow: 4px 0px rgba(0, 255, 65, 0.8), -4px 0px rgba(0, 255, 255, 0.8);
}

.text-logo .logo-accent {
    color: var(--color-primary, #00FF41);
    animation: cryptoPulse 1s infinite alternate;
}

/* Header Actions */
.lang-toggle-btn {
    background: transparent;
    border: 1px dashed var(--color-primary, #00FF41);
    color: var(--color-primary, #00FF41);
    font-family: var(--font-mono, "Fira Code", monospace);
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-toggle-btn:hover {
    background: rgba(0, 255, 65, 0.1);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
    color: #fff;
}

/* Hero Section Flex Centering Override */
#section-initialization {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

#section-initialization .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

#section-initialization .terminal-block {
    text-align: left;
    display: inline-block;
    width: 100%;
    max-width: 450px;
}

.social-icon {
    color: #ffffff;
    transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
    color: var(--color-primary, #00FF41);
    transform: translateY(-2px);
    opacity: 1;
}

.social-icon:hover svg {
    fill: var(--color-primary, #00FF41);
    /* Ensures child SVG respects the hover state */
}

/* Blinking Signal */
.blink-signal {
    animation: blinkSignal 1.5s step-start infinite;
}

@keyframes blinkSignal {

    0%,
    100% {
        opacity: 1;
        text-shadow: 0 0 8px rgba(255, 0, 255, 0.6);
    }

    50% {
        opacity: 0.3;
        text-shadow: none;
    }
}

/* Mobile & Layout Bugfixes */
@media (max-width: 768px) {
    .manifesto-section {
        padding: 5rem 1rem 4rem 1rem;
    }

    .main-nav {
        padding: 1.2rem 1rem 0 1rem;
        /* Matched 1rem horizontal padding with manifesto-section */
        flex-wrap: nowrap !important;
        /* Force items to stay on same line */
    }

    .scroll-indicator {
        bottom: 1rem;
        font-size: 0.8rem;
    }

    .content-wrapper {
        gap: 1rem;
    }

    #section-initialization .terminal-block {
        margin-top: 5vh;
        margin-bottom: 15vh;
    }

    .manifesto-title {
        font-size: 2rem;
    }
}