/* Custom Post-Apocalyptic Design System */
:root {
    --bg-dark: #0d0b0a;
    --bg-metal: #181514;
    --rust-primary: #8b3a1b;
    --rust-light: #b24e27;
    --rust-dark: #55210d;
    --toxic-green: #39ff14;
    --toxic-glow: rgba(57, 255, 20, 0.4);
    --blood-red: #800c0c;
    --blood-red-light: #a31414;
    --metal-grey: #2b2826;
    --metal-border: #3d3733;
    --text-light: #e0d5cb;
    --text-muted: #8c8075;
    
    --font-heading: 'Stardos Stencil', Georgia, serif;
    --font-manifest: 'Special Elite', Courier, monospace;
    --font-mono: 'Share Tech Mono', monospace;
}

/* Reset & Scrollbar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Hide standard cursor for custom interactive experience */
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #090807;
    border-left: 1px solid var(--metal-border);
}
::-webkit-scrollbar-thumb {
    background: var(--rust-dark);
    border: 2px solid #090807;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--rust-primary);
    box-shadow: 0 0 8px var(--toxic-green);
}

/* Body & Layout */
body {
    font-family: var(--font-mono);
    line-height: 1.6;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(20, 16, 14, 0.95), rgba(10, 8, 7, 1)),
        url('image_0.png'); /* Ambient use of baner as subtle texture overlay */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

/* Utility Fonts */
.font-grunge {
    font-family: var(--font-manifest);
    letter-spacing: 0.05em;
}
.font-mono {
    font-family: var(--font-mono);
}
.text-highlight {
    color: var(--rust-light);
    text-shadow: 1px 1px 2px #000;
}
.text-alert {
    color: var(--blood-red-light);
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
}

/* Section Title Stylings */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
}
.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: var(--rust-primary);
    margin: 1rem auto 0;
    box-shadow: 0 0 10px rgba(139, 58, 27, 0.5);
    clip-path: polygon(0 30%, 10% 0, 90% 0, 100% 30%, 95% 100%, 5% 100%);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Custom Cursor */
#toxic-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99999;
}
.custom-cursor {
    position: fixed;
    width: 28px;
    height: 28px;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
    transition: transform 0.05s ease-out, opacity 0.3s ease;
}
.crosshair-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 4px;
    background: var(--toxic-green);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 8px var(--toxic-green);
}
.crosshair-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1.5px solid var(--toxic-green);
    border-radius: 50%;
    box-shadow: 0 0 4px var(--toxic-green);
}
.crosshair-line {
    position: absolute;
    background: var(--toxic-green);
    box-shadow: 0 0 4px var(--toxic-green);
}
.crosshair-line.top, .crosshair-line.bottom {
    left: 50%;
    width: 1.5px;
    height: 6px;
    transform: translateX(-50%);
}
.crosshair-line.left, .crosshair-line.right {
    top: 50%;
    height: 1.5px;
    width: 6px;
    transform: translateY(-50%);
}
.crosshair-line.top { top: -8px; }
.crosshair-line.bottom { bottom: -8px; }
.crosshair-line.left { left: -8px; }
.crosshair-line.right { right: -8px; }

/* Custom Cursor Hover Scaling */
.custom-cursor.hovering {
    transform: translate(-50%, -50%) scale(1.5) rotate(45deg);
}
.custom-cursor.hovering .crosshair-ring {
    border-color: var(--blood-red-light);
    box-shadow: 0 0 8px var(--blood-red-light);
}
.custom-cursor.hovering .crosshair-dot {
    background: var(--blood-red-light);
    box-shadow: 0 0 10px var(--blood-red-light);
}
.custom-cursor.hovering .crosshair-line {
    background: var(--blood-red-light);
    box-shadow: 0 0 6px var(--blood-red-light);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #080605;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.preloader-content {
    text-align: center;
    width: 90%;
    max-width: 500px;
}
.logo-wrapper {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}
.preload-logo {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.8));
    position: relative;
    z-index: 2;
}
.logo-shadow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--rust-dark) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.6;
}
.preload-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--text-light);
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 5px var(--rust-primary);
}
.terminal-loader {
    width: 100%;
    background: rgba(20, 15, 12, 0.6);
    border: 1px solid var(--metal-border);
    padding: 1rem;
    border-radius: 4px;
    position: relative;
}
.loader-bar {
    width: 100%;
    height: 10px;
    background: #110d0b;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    position: relative;
}
.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--rust-primary);
    box-shadow: 0 0 10px var(--rust-light);
}
.loader-status {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Header & Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 2rem 2rem;
    text-align: center;
    background-image: 
        linear-gradient(to bottom, rgba(13, 11, 10, 0.4), rgba(13, 11, 10, 0.95)),
        url('image_0.png'); /* Full composition background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 30%, rgba(13, 11, 10, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}
.ambient-sparks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}
.top-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    border-bottom: 1px dashed rgba(224, 213, 203, 0.1);
    background: rgba(13, 11, 10, 0.7);
    backdrop-filter: blur(5px);
}
.nav-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--rust-light);
    letter-spacing: 0.15em;
    text-shadow: 0 0 5px rgba(178, 78, 39, 0.4);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-link {
    font-family: var(--font-manifest);
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    padding: 0.2rem 0.5rem;
}
.nav-link:hover {
    color: var(--toxic-green);
    text-shadow: 0 0 8px var(--toxic-green);
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}
.hero-logo-container {
    margin-bottom: 2rem;
    position: relative;
}
.hero-logo {
    width: clamp(220px, 30vw, 360px);
    height: auto;
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.95));
}
.hero-title-area {
    margin-bottom: 2.5rem;
}
.warning-tape {
    display: inline-block;
    background: #f4c430;
    color: #000;
    font-family: var(--font-mono);
    font-weight: bold;
    padding: 0.3rem 1.2rem;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    transform: rotate(-1.5deg);
    margin-bottom: 1.5rem;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.5);
    border: 1px dashed #000;
}
.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    color: var(--text-light);
    margin-bottom: 0.5rem;
    letter-spacing: 0.1em;
    text-shadow: 3px 3px 0px var(--rust-dark), 0 0 15px rgba(224,213,203,0.3);
}
.hero-subtext {
    font-family: var(--font-mono);
    color: var(--text-muted);
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* Scanlines and CRT Overlay */
.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(18, 16, 16, 0) 50%, 
        rgba(0, 0, 0, 0.25) 50%
    );
    background-size: 100% 4px;
    z-index: 4;
    pointer-events: none;
}

/* Metal Button Styling */
.btn {
    position: relative;
    display: inline-block;
    padding: 1.2rem 2.8rem;
    font-family: var(--font-manifest);
    font-size: clamp(1rem, 1.8vw, 1.3rem);
    font-weight: bold;
    text-decoration: none;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--metal-grey), #1b1918);
    border: 2px solid var(--rust-primary);
    box-shadow: 
        0 4px 10px rgba(0,0,0,0.6), 
        inset 0 1px 3px rgba(255,255,255,0.1);
    transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
    clip-path: polygon(6% 0%, 94% 0%, 100% 25%, 100% 75%, 94% 100%, 6% 100%, 0% 75%, 0% 25%);
    z-index: 5;
    overflow: hidden;
}
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.15), transparent);
    transition: 0.5s;
    pointer-events: none;
}
.btn:hover::before {
    left: 100%;
}
.btn:hover {
    color: var(--toxic-green);
    border-color: var(--toxic-green);
    box-shadow: 
        0 0 20px var(--toxic-glow),
        0 6px 15px rgba(0,0,0,0.8);
    transform: translateY(-3px);
}
.btn:active {
    transform: translateY(1px);
}

/* Manifest Section */
.manifest-section {
    padding: 8rem 0;
    position: relative;
}
.grunge-border-box {
    position: relative;
    background: linear-gradient(135deg, rgba(24, 21, 20, 0.95), rgba(15, 13, 12, 0.98));
    border: 3px solid var(--metal-border);
    padding: 4rem 3rem;
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.8),
        inset 0 0 20px rgba(0,0,0,0.9);
    filter: url('#rust-filter'); /* Applies actual rust grunge texture directly */
}

/* Metal Corner Bracket Styling */
.metal-corner {
    position: absolute;
    width: 25px;
    height: 25px;
    border: 4px solid var(--rust-primary);
    z-index: 2;
}
.metal-corner.top-left {
    top: -3px;
    left: -3px;
    border-right: none;
    border-bottom: none;
}
.metal-corner.top-right {
    top: -3px;
    right: -3px;
    border-left: none;
    border-bottom: none;
}
.metal-corner.bottom-left {
    bottom: -3px;
    left: -3px;
    border-right: none;
    border-top: none;
}
.metal-corner.bottom-right {
    bottom: -3px;
    right: -3px;
    border-left: none;
    border-top: none;
}
.metal-corner::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--metal-border);
    border: 1px solid #111;
    border-radius: 50%;
}
.metal-corner.top-left::after { right: -5px; bottom: -5px; }
.metal-corner.top-right::after { left: -5px; bottom: -5px; }
.metal-corner.bottom-left::after { right: -5px; top: -5px; }
.metal-corner.bottom-right::after { left: -5px; top: -5px; }

.manifest-wrapper {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}
.manifest-paragraph {
    font-size: clamp(1.2rem, 2.5vw, 1.85rem);
    line-height: 1.8;
    margin-bottom: 2rem;
    min-height: 4.5rem; /* Prevents layout shifting during typewriter */
}
.manifest-paragraph:last-child {
    margin-bottom: 0;
}

/* Menu Section (Terminal / chalkboard style) */
.menu-section {
    padding: 8rem 0;
    position: relative;
}
.menu-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Scanner styles */
.scanner-body {
    padding: 2rem 1.8rem;
    filter: url('#crt-glow');
}
.scanner-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background: #020502;
    border: 2px solid var(--metal-border);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.9);
}
.scanner-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(57, 255, 20, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.08) 1px, transparent 1px);
    background-size: 25px 25px;
    background-position: center;
    pointer-events: none;
    z-index: 2;
}
.scanner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: filter 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s ease;
    z-index: 1;
}
.scanner-laser {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--toxic-green);
    box-shadow: 0 0 8px var(--toxic-green), 0 0 15px var(--toxic-green);
    z-index: 3;
    animation: laser-scan 3.5s infinite linear;
}
@keyframes laser-scan {
    0%, 100% { top: 0%; opacity: 0.8; }
    50% { top: 100%; opacity: 1; }
}

/* Scanner Image Color Grading Filters */
.img-filter-gulasz {
    filter: sepia(0.65) hue-rotate(-5deg) saturate(1.4) contrast(1.1) brightness(0.85);
}
.img-filter-zupa {
    filter: hue-rotate(75deg) saturate(2.4) contrast(1.15) brightness(0.8);
}
.img-filter-stek {
    filter: hue-rotate(-50deg) saturate(2.1) contrast(1.2) brightness(0.75);
}
.img-filter-lemoniada {
    filter: hue-rotate(130deg) saturate(2.8) contrast(1.2) brightness(0.9);
}

.scanner-details {
    font-family: var(--font-mono);
}
.scanner-tag {
    font-size: 0.75rem;
    color: var(--toxic-green);
    letter-spacing: 0.1em;
    margin-bottom: 0.6rem;
    text-shadow: 0 0 4px var(--toxic-glow);
    display: inline-block;
    border-bottom: 1px dashed var(--toxic-green);
    padding-bottom: 0.2rem;
}
.scanner-dish-title {
    font-family: var(--font-manifest);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.scanner-dish-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    min-height: 3.5rem; /* prevent layout shift on change */
}
.scanner-stats {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--metal-border);
    padding: 1.2rem;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.scan-stat-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    border-bottom: 1px dashed rgba(224, 213, 203, 0.05);
    padding-bottom: 0.4rem;
}
.scan-stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.scan-stat-label {
    color: var(--text-muted);
}
.scan-stat-val {
    color: var(--text-light);
    font-weight: bold;
}
.scan-stat-val.text-warning {
    color: #ff9900;
}
.scan-stat-val.text-danger {
    color: var(--blood-red-light);
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.4);
}
.terminal-screen {
    background: #050a05;
    border: 5px solid var(--metal-border);
    border-radius: 8px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.9),
        0 0 30px rgba(57, 255, 20, 0.05);
    overflow: hidden;
    position: relative;
}
.terminal-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.3) 50%), radial-gradient(rgba(57, 255, 20, 0.07), transparent);
    background-size: 100% 6px, 100% 100%;
    pointer-events: none;
    z-index: 5;
}
.terminal-header {
    background: #111;
    border-bottom: 2px solid var(--metal-border);
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.terminal-dot.red { background: var(--blood-red-light); }
.terminal-dot.yellow { background: #d4a317; }
.terminal-dot.green { background: #138513; }
.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 1rem;
    letter-spacing: 0.1em;
}
.terminal-body {
    padding: 2rem 1.8rem;
    filter: url('#crt-glow');
}
.terminal-alert {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid var(--blood-red);
    color: var(--blood-red-light);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    text-align: center;
    letter-spacing: 0.05em;
    border-radius: 2px;
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.menu-item {
    position: relative;
    padding: 0.7rem 0.9rem;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.2s ease;
}
.menu-item:hover {
    background: rgba(57, 255, 20, 0.03);
    border-color: rgba(57, 255, 20, 0.15);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.05);
}
.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-family: var(--font-manifest);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--text-light);
    margin-bottom: 0.4rem;
    transition: color 0.2s ease;
}
.menu-item:hover .menu-item-header {
    color: var(--toxic-green);
    text-shadow: 0 0 10px var(--toxic-glow);
}
.menu-item-name {
    flex-shrink: 0;
    letter-spacing: 0.05em;
}
.menu-item-line {
    flex-grow: 1;
    margin: 0 1rem;
    border-bottom: 2px dashed rgba(224, 213, 203, 0.15);
    transition: border-color 0.2s ease;
}
.menu-item:hover .menu-item-line {
    border-color: rgba(57, 255, 20, 0.25);
}
.menu-item-price {
    color: var(--rust-light);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-weight: bold;
}
.menu-item:hover .menu-item-price {
    color: var(--toxic-green);
}
.bullet-icon {
    display: inline-block;
    width: 6px;
    height: 14px;
    background: currentColor;
    clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 0% 100%, 0% 25%);
}
.menu-item-desc {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: color 0.2s ease;
}
.menu-item:hover .menu-item-desc {
    color: var(--text-light);
}

/* Features Grid Section */
.features-section {
    padding: 8rem 0;
    position: relative;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}
.feature-card {
    background: linear-gradient(135deg, #1b1918, #131110);
    border: 2px solid var(--metal-border);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.7);
    transition: all 0.3s ease;
    overflow: hidden;
}
.feature-card:hover {
    border-color: var(--rust-primary);
    transform: translateY(-5px);
    box-shadow: 
        0 15px 30px rgba(0,0,0,0.8),
        0 0 15px rgba(139, 58, 27, 0.1);
}
.feature-icon-wrapper {
    margin-bottom: 2rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.feature-svg {
    stroke: var(--text-light);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.3s ease;
}
.svg-wireframe {
    stroke-dasharray: 4;
}
.svg-joint {
    fill: var(--rust-light);
    stroke: none;
}
.feature-card:hover .feature-svg {
    stroke: var(--toxic-green);
    filter: drop-shadow(0 0 8px var(--toxic-glow));
}
.feature-card:hover .svg-joint {
    fill: var(--toxic-green);
}
.feature-heading {
    font-family: var(--font-manifest);
    font-size: 1.4rem;
    color: var(--rust-light);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}
.feature-card:hover .feature-heading {
    color: var(--toxic-green);
    text-shadow: 0 0 5px var(--toxic-glow);
}
.feature-text {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--text-muted);
}
.feature-card:hover .feature-text {
    color: var(--text-light);
}
.card-number {
    position: absolute;
    bottom: 0.5rem;
    right: 0.8rem;
    font-family: var(--font-mono);
    font-size: 1.8rem;
    font-weight: bold;
    color: rgba(224, 213, 203, 0.03);
    transition: color 0.3s ease;
}
.feature-card:hover .card-number {
    color: rgba(57, 255, 20, 0.05);
}

/* Footer Section */
.footer-section {
    background: #080605;
    border-top: 3px solid var(--metal-border);
    padding: 6rem 0 3rem;
    position: relative;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 4rem;
    margin-bottom: 5rem;
}
.footer-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    letter-spacing: 0.08em;
}
.terminal-readout {
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--metal-border);
    border-radius: 4px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.readout-row {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.readout-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
}
.readout-value {
    font-size: 1rem;
    color: var(--text-light);
}
.status-blink {
    color: var(--toxic-green);
    animation: terminal-blink 1.5s infinite step-end;
}

@keyframes terminal-blink {
    from, to { opacity: 1; }
    50% { opacity: 0.4; }
}

.manifesto-sign {
    background: rgba(139, 58, 27, 0.05);
    border: 2px dashed var(--rust-primary);
    padding: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}
.manifesto-huge {
    font-family: var(--font-manifest);
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    letter-spacing: 0.05em;
    line-height: 1.6;
}
.survival-stats {
    display: flex;
    gap: 2rem;
}
.stat-box {
    flex: 1;
    background: #0f0d0c;
    border: 1px solid var(--metal-border);
    padding: 1.5rem;
    border-radius: 4px;
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    color: var(--rust-light);
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0px rgba(0,0,0,0.5);
}
.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer-bottom {
    border-top: 1px solid var(--metal-border);
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
}
.system-time {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Responsiveness Settings */
@media (max-width: 1024px) {
    .top-nav {
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 768px) {
    * {
        cursor: auto !important; /* Re-enable default cursor for mobile touch */
    }
    .custom-cursor, #toxic-canvas {
        display: none !important;
    }
    .top-nav {
        flex-direction: column;
        gap: 1rem;
        position: static;
        background: var(--bg-dark);
    }
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav-link {
        font-size: 0.85rem;
    }
    .hero-section {
        min-height: auto;
        padding: 3rem 1rem;
    }
    .hero-logo {
        width: 180px;
    }
    .grunge-border-box {
        padding: 2.5rem 1.5rem;
    }
    .menu-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .terminal-body {
        padding: 2rem 1.2rem;
    }
    .menu-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    .menu-item-line {
        display: none;
    }
    .menu-item-price {
        align-self: flex-end;
        margin-top: -1.5rem;
    }
    .survival-stats {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
