/* CSS Variables & Reset */
:root {
    --bg-color: #050503;
    /* Deep Warm Black */
    --text-color: #e6e6e2;
    /* Warm White */
    --text-muted: #888877;
    /* Warm Grey */
    --highlight: #dcdcc6;
    /* AGED YELLOW/GREY (Old Phosphor) */
    --sponsor-color: #c0c0a8;
    --font-main: 'VT323', monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
    font-size: 20px;
    /* Warm Glow */
    text-shadow: 0 0 5px rgba(220, 220, 198, 0.4);
    /* Disable selection globally */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* FIXED HERO SECTION - Full viewport, stays in place */
.hero-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    transition: opacity 0.3s ease;
}

/* Hero Container (replaces .container for hero only) */
.hero-container {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

/* Spacer to push scroll-content below fixed hero */
.hero-spacer {
    height: 100vh;
    pointer-events: none;
    scroll-snap-align: start;
}

/* Scrollable content container */
.scroll-content {
    position: relative;
    z-index: 20;
    /* Transparent to show background grid through */
}

/* NAV */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    height: 80px;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    position: relative;
    z-index: 30;
    /* Ensure nav stays ABOVE all content */
}

.logo {
    font-size: 32px;
    font-weight: 400;
    letter-spacing: 0px;
}

.highlight {
    color: var(--highlight);
    text-shadow: 0 0 8px var(--highlight);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    color: var(--text-muted);
}

.nav-links a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--highlight);
    text-shadow: 0 0 5px var(--highlight);
}

.nav-links .divider {
    width: 1px;
    height: 20px;
    background-color: #333;
}

.btn-sponsor {
    background-color: var(--sponsor-color);
    color: #1a1a15 !important;
    padding: 8px 30px;
    border-radius: 2px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    text-transform: uppercase;
    box-shadow: 0 0 5px var(--sponsor-color);
}

/* MAIN BODY */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Constrain main content width so it doesn't stretch too wide on huge screens, while nav stays full */
    max-width: 1600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.content-left {
    flex: 1;
    z-index: 10;
}

.hero-title {
    font-size: 90px;
    line-height: 0.9;
    font-weight: 400;
    letter-spacing: -1px;
    opacity: 1;
    text-transform: uppercase;
}

.line-wrapper {
    display: inline-block;
    overflow: hidden;
}

.letter {
    display: inline-block;
    opacity: 1;
}

.subtitle {
    margin-top: 30px;
    font-size: 28px;
    color: #d0d0c0;
    /* Warm grey */
    max-width: 550px;
    line-height: 1.3;
    min-height: 80px;
    text-shadow: 0 0 2px rgba(220, 220, 198, 0.2);
}

/* PRODUCT BUTTONS */
.product-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Kaomoji Container */
.kaomoji-box {
    text-decoration: none;
    color: var(--highlight);
    border: 2px solid var(--highlight);
    padding: 20px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: var(--font-main);
    min-width: 380px;
    text-align: center;
    display: flex;
    border-radius: 20px;
    justify-content: center;
    align-items: center;
    /* Glassmorphism - REMOVED filter to not break backdrop-filter */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(10, 10, 5, 0.3);
    /* Retro glow instead of filter */
    box-shadow:
        0 0 15px rgba(220, 220, 198, 0.15),
        inset 0 0 30px rgba(220, 220, 198, 0.03);
}

/* CRT Scanlines overlay for kaomoji box */
.kaomoji-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.15) 2px,
            rgba(0, 0, 0, 0.15) 4px);
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

.kaomoji-box:hover {
    box-shadow:
        0 0 30px rgba(220, 220, 198, 0.3),
        inset 0 0 40px rgba(220, 220, 198, 0.05);
    border-color: #fff;
}

.ascii-art {
    font-size: 14px;
    line-height: 14px;
    margin: 0;
    white-space: pre;
    text-align: left;
    font-family: 'VT323', 'Courier New', monospace;
    /* VT323 with fallbacks for Unicode */
    /* VT323 retro font */
    overflow: hidden;
    font-weight: bold;
    display: inline-block;
    position: relative;
    z-index: 2;
    /* Above scanlines */
    /* Retro text glow */
    text-shadow: 0 0 3px var(--highlight);
}

.retro-font {
    font-family: 'VT323', monospace !important;
    letter-spacing: 1px;
}

/* RIGHT COLUMN - CRT STYLE */
.content-right {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 20;
}

.visual-circle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* CRT WRAPPER */
.crt-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    background: #000;
    box-shadow:
        0 0 0 5px #111,
        0 0 40px rgba(220, 220, 198, 0.1);
    transform: translateZ(0);
    transition: box-shadow 0.4s ease;
}

/* Border Glow Only - Aged Yellow */
.crt-wrapper:hover {
    box-shadow:
        0 0 0 5px #222,
        0 0 80px rgba(220, 220, 198, 0.5);
    z-index: 25;
}

.hero-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) brightness(1.0) saturate(0.8) sepia(0.2);
    /* Added Sepia for aged look */
    position: relative;
    z-index: 1;
    transition: filter 0.4s ease;
}

/* Hover: Keep Natural but cleaner */
.crt-wrapper:hover .hero-avatar {
    filter: contrast(1.15) brightness(1.05) saturate(0.9) sepia(0.1);
}

.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1) 50%, rgba(255, 255, 255, 0));
    background-size: 100% 4px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.3;
    transition: opacity 0.3s;
}

.crt-wrapper:hover .scanlines {
    opacity: 0.1;
}

.crt-glare {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 10;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0) 50%);
    border-radius: 50%;
}

/* BACKGROUND GRID */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    /* Above body, but below hero content */
    display: flex;
    opacity: 1;
    pointer-events: none;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: var(--highlight);
    border-radius: 50%;
    margin: auto;
    opacity: 0;
    box-shadow: 0 0 4px var(--highlight);
}

/* GLOBAL NOISE OVERLAY - SUBTLE BUT VISIBLE */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9;
    opacity: 0.18;
    /* Visible but dark-preserving */
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="4" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    animation: noise-shift 0.08s steps(8) infinite;
    /* Fast & Choppy */
    mix-blend-mode: overlay;
    /* Preserve blacks */
}

/* CENTER DIVIDER (Between Text and Avatar) */
.center-divider {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 300px;
    background: linear-gradient(to bottom, transparent, var(--highlight), transparent);
    box-shadow: 0 0 15px var(--highlight), 0 0 30px rgba(220, 220, 198, 0.3);
    opacity: 0.6;
    z-index: 5;
    animation: divider-pulse 3s ease-in-out infinite alternate;
}

@keyframes divider-pulse {
    0% {
        opacity: 0.4;
        height: 250px;
    }

    100% {
        opacity: 0.7;
        height: 350px;
    }
}

@keyframes noise-shift {
    0% {
        background-position: 0 0;
    }

    20% {
        background-position: -5% -5%;
    }

    40% {
        background-position: -10% 5%;
    }

    60% {
        background-position: 5% -10%;
    }

    80% {
        background-position: -5% 15%;
    }

    100% {
        background-position: 0 0;
    }
}

/* GLOBAL CRT OVERLAY (Scanlines + Sepia Tint) */
.global-crt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* OLD YELLOW TINT ADDED */
    background:
        linear-gradient(rgba(18, 16, 10, 0) 50%, rgba(30, 30, 10, 0.25) 50%),
        linear-gradient(90deg, rgba(255, 255, 0, 0.03), rgba(200, 200, 100, 0.03), rgba(255, 100, 0, 0.03));
    background-size: 100% 3px, 4px 100%;
    pointer-events: none;
    z-index: 5;
    opacity: 0.4;
    box-shadow: inset 0 0 100px rgba(180, 170, 100, 0.15);
    /* Warm Vignette */
}

/* HUD LAYER - SILVER/WHITE GLOW */
.hud-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 15;
    padding: 20px;
    font-size: 14px;
    color: #e0e0e0;
    /* Silver/White */
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 15px rgba(200, 200, 200, 0.5);
    /* Bright Glow */
    opacity: 0.9;
    /* Slightly more visible */
    font-family: var(--font-main);
}

.hud-item {
    position: absolute;
}

.top-left {
    top: 140px;
    left: 60px;
    border-left: 2px solid var(--highlight);
    padding-left: 10px;
}

.top-right {
    top: 140px;
    right: 60px;
    border-right: 2px solid var(--highlight);
    padding-right: 10px;
    text-align: right;
}

.bottom-left {
    bottom: 30px;
    left: 40px;
}

.bottom-right {
    bottom: 30px;
    right: 40px;
}

/* Core Member Badge - Above Version in HUD */
.bottom-right-badge {
    bottom: 80px;
    right: 60px;
    border: 1px solid var(--highlight);
    background: rgba(30, 30, 20, 0.7);
    padding: 10px 20px;
    border-radius: 4px;
    text-align: right;
    box-shadow: 0 0 10px rgba(220, 220, 198, 0.2);
    min-width: 180px;
}

.bottom-right-badge .label {
    font-size: 12px;
    color: #a0a090;
    display: block;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bottom-right-badge .pendle-text {
    font-size: 24px;
    font-weight: 700;
    color: #e6e6e2;
    letter-spacing: 1px;
    text-shadow: 0 0 5px #e6e6e2;
}

/* Boot Status - Center of screen */
.boot-status {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    letter-spacing: 2px;
    text-align: center;
    color: var(--highlight);
    text-shadow: 0 0 10px var(--highlight);
}

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

/* GLITCH - Aged Style */
.glitch-active {
    animation: glitch-anim 0.25s infinite linear alternate-reverse;
    text-shadow: 2px 0 #fff, -2px 0 #ccaa00;
    /* White / Gold glitch */
    transform: skewX(-10deg);
    display: inline-block;
}

@keyframes glitch-anim {
    0% {
        transform: translate(0) skewX(0deg);
        opacity: 1;
    }

    20% {
        transform: translate(-3px, 3px) skewX(-5deg);
        text-shadow: 3px 0 #eee, -3px 0 #bb9900;
    }

    40% {
        transform: translate(-3px, -3px) skewX(5deg);
        opacity: 0.8;
    }

    60% {
        transform: translate(3px, 3px) skewX(-5deg);
        text-shadow: 3px 0 #fff, -3px 0 #997700;
    }

    80% {
        transform: translate(3px, -3px) skewX(5deg);
        opacity: 1;
    }

    100% {
        transform: translate(0) skewX(0deg);
    }
}

@keyframes glitch-skew {
    0% {
        transform: skew(0deg);
    }

    20% {
        transform: skew(-10deg);
    }

    40% {
        transform: skew(10deg);
    }

    80% {
        transform: skew(-5deg);
    }

    100% {
        transform: skew(0deg);
    }
}

/* FOOTER BOX */
footer {
    padding: 40px 60px;
    display: flex;
    justify-content: flex-end;
}

.footer-box {
    border: 1px solid var(--highlight);
    background: rgba(30, 30, 20, 0.7);
    padding: 10px 20px;
    border-radius: 4px;
    text-align: right;
    box-shadow: 0 0 10px rgba(220, 220, 198, 0.2);
    min-width: 180px;
}

.footer-box .label {
    font-size: 12px;
    color: #a0a090;
    display: block;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pendle-text {
    font-size: 24px;
    font-weight: 700;
    color: #e6e6e2;
    letter-spacing: 1px;
    text-shadow: 0 0 5px #e6e6e2;
}

/* SCROLL INDICATOR */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
    letter-spacing: 2px;
    z-index: 15;
}

.scroll-arrow {
    font-size: 20px;
    animation: bounce-arrow 1.5s ease-in-out infinite;
    color: var(--highlight);
}

@keyframes bounce-arrow {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }

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

/* PROJECTS SECTION */
.projects-section {
    min-height: 100vh;
    padding: 100px 60px 0;
    /* Removed bottom padding since footer is there */
    position: relative;
    z-index: 10;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Removed gap from parent, moved to wrapper */
}

/* New Wrapper to push footer down */
.projects-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.section-title {
    font-size: 48px;
    color: var(--highlight);
    text-shadow: 0 0 10px var(--highlight);
    margin-bottom: 10px;
    /* Significantly reduced */
    letter-spacing: 2px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1400px;
}

.project-card {
    border: 1px solid var(--text-muted);
    background: rgba(10, 10, 5, 0.4);
    /* High transparency */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 30px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(50px);
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    border-color: var(--highlight);
    box-shadow: 0 0 20px rgba(220, 220, 198, 0.2);
    transform: translateY(-5px);
}

.project-number {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.project-name {
    font-size: 32px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.project-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.project-link {
    display: inline-block;
    color: var(--highlight);
    text-decoration: none;
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.project-link:hover {
    border-bottom-color: var(--highlight);
    text-shadow: 0 0 8px var(--highlight);
}

/* RETRO FOOTER */
/* RETRO FOOTER */
/* RETRO FOOTER */
/* RETRO FOOTER */
/* RETRO FOOTER */
.retro-footer {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: auto;
    /* Ensures it sits at the bottom */

    background-color: rgba(10, 10, 5, 0.4);
    /* Much more transparent */
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--highlight);
    padding: 15px 40px;
    /* Minimal padding */
    margin-top: 20px;

    z-index: 10;
    font-family: 'VT323', monospace;
    color: var(--text-color);
    font-size: 18px;
    /* Increased font size */
    box-sizing: border-box;
}

.footer-content {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    /* Flex row */
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.terminal-prompt-box {
    margin-bottom: 0;
}

.footer-bottom {
    display: none;
    /* Hide old bottom */
}

/* Compact Overrides */
.prompt-line {
    font-size: 20px;
    /* Increased */
    margin-bottom: 5px;
}

.link-list {
    padding-left: 10px;
    border-left: 2px solid rgba(220, 220, 198, 0.2);
}

.link-list li {
    margin-bottom: 2px;
    font-size: 18px;
    /* Increased */
}

.footer-info-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-info-right div {
    font-size: 24px !important;
    /* Increased */
    margin-bottom: 2px !important;
}

.footer-info-right p {
    font-size: 16px !important;
    /* Increased */
    line-height: 1.2;
}

.link-list .arrow {
    color: var(--highlight);
    margin-right: 10px;
}

.link-list a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.link-list a:hover {
    color: var(--highlight);
    border-bottom: 1px solid var(--highlight);
    text-shadow: 0 0 8px var(--highlight);
}

.link-list a.unavailable {
    color: #666;
    text-decoration: line-through;
    pointer-events: none;
}

.footer-bottom {
    text-align: center;
    opacity: 0.7;
}

.ascii-divider {
    color: var(--highlight);
    margin-bottom: 10px;
    letter-spacing: -2px;
    overflow: hidden;
    white-space: nowrap;
}

.copyright {
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* RETRO POPUP OVERLAY */
.retro-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.retro-popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.retro-popup-box {
    background: #000;
    border: 2px solid var(--highlight);
    padding: 2px;
    width: 320px;
    box-shadow: 0 0 20px rgba(220, 220, 198, 0.4);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.retro-popup-overlay.active .retro-popup-box {
    transform: scale(1);
}

.popup-header {
    background: var(--highlight);
    color: #000;
    padding: 5px 10px;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 16px;
    text-transform: uppercase;
}

.popup-content {
    padding: 30px 20px;
    text-align: center;
    color: var(--highlight);
}

.popup-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.popup-msg {
    font-size: 18px;
    line-height: 1.5;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* --- MOBILE RESPONSIVE (Max-Width: 768px) --- */
@media screen and (max-width: 768px) {

    /* 1. Reset Body & Scroll */
    body {
        overflow-x: hidden;
        overflow-y: auto;
    }

    /* 2. Un-fix Hero on Mobile to allow scrolling */
    .hero-section {
        position: relative;
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .hero-container {
        padding: 80px 20px 40px;
        /* Reduced top padding */
        display: flex;
        flex-direction: column;
        /* Keep Nav at Top */
        justify-content: flex-start;
        gap: 20px;
    }

    /* New: Stack Main Content (Avatar on Top, Text Bottom) */
    main {
        flex-direction: column-reverse;
        /* Avatar Top, Text Bottom */
        align-items: center;
        gap: 30px;
        margin-top: 20px;
        text-align: center;
    }

    .hero-spacer {
        display: none;
        /* Content flows naturally */
    }

    /* 3. Navbar Compact */
    nav {
        flex-direction: column;
        height: auto;
        padding-top: 15px;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        font-size: 16px;
    }

    .nav-links .divider {
        display: none;
    }

    .btn-sponsor {
        padding: 5px 15px;
        font-size: 14px;
    }

    /* 4. Resize Avatar (CRT) */
    .content-right {
        display: flex;
        justify-content: center;
        /* Center align */
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
        flex-shrink: 0;
    }

    .visual-circle {
        position: relative;
        transform: none;
        top: auto;
        right: auto;
    }

    .crt-wrapper {
        width: 220px !important;
        /* Reverted to large size */
        height: 220px !important;
        box-shadow: 0 0 0 2px #111, 0 0 20px rgba(220, 220, 198, 0.1);
        opacity: 0;
    }

    .center-divider {
        display: none;
    }

    /* 5. Typography & Text Alignment */
    .content-left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-title {
        font-size: 38px !important;
        /* Balanced size */
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .subtitle {
        font-size: 18px;
        margin-top: 15px;
    }

    /* 6. Kaomoji Box */
    .kaomoji-box {
        display: none;
    }

    .ascii-art {
        font-size: 10px;
        /* Shrink ASCII art */
    }

    /* 7. Simplify HUD (Hide clutter) */
    .hud-item.top-right,
    .hud-item.bottom-left,
    .hud-item.boot-status {
        display: none;
    }

    .hud-item.top-left {
        font-size: 12px;
        top: 10px;
        left: 10px;
        border: none;
        padding: 0;
    }

    .hud-item.bottom-right {
        bottom: 10px;
        right: 10px;
        font-size: 10px;
    }

    /* Core Member Badge: Visible but scaled down on mobile */
    /* Core Member Badge: Fixed to screen bottom to avoid overlap */
    .bottom-right-badge {
        display: block;
        position: fixed !important;
        bottom: 20px !important;
        right: 10px !important;
        min-width: unset;
        padding: 5px 10px;
        transform: scale(0.8);
        transform-origin: bottom right;
        background: rgba(10, 10, 5, 0.9);
        z-index: 999;
        /* Always on top */
        border: 1px solid var(--highlight);
    }

    /* 8. Projects & Footer */
    .projects-grid {
        grid-template-columns: 1fr;
        /* Single column */
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-info-right {
        text-align: center;
        align-items: center;
    }

    .link-list {
        border-left: none;
        padding-left: 0;
    }
}