/* Y2K Tech UI with Border Image Container */

/* Import Custom Retro Font */
@font-face {
    font-family: 'Retro';
    src: url('./font/retro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Guardians';
    src: url('./font/Guardians.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Import Google Fonts */
@import url('./https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Share+Tech+Mono&family=Press+Start+2P&family=VT323&family=Space+Mono:wght@400;700&display=swap');

/* CSS Variables for Dark Gorilla Theme */
:root {
    --bg-metal: #1a1a1a;
    --frame-dark: #2d2d2d;
    --text-primary: #e0e0e0;
    --text-muted: #888888;
    --accent-blue: #00ff41;
    --accent-green: #00ff41;
    --panel-gradient: linear-gradient(to bottom, #2d2d2d, #1a1a1a);
    --y2k-black: #000000;
    --y2k-white: #ffffff;
    --y2k-dark-gray: #1a1a1a;
    --y2k-metallic-gray: #404040;
    --y2k-light-gray: #666666;
    --y2k-blue: #00ff41;
    --y2k-cyan: #00ff41;
    --y2k-lime: #00ff41;
    --y2k-magenta: #00c234;
    --y2k-yellow: #f5a623;
    --y2k-red: #d0021b;
    --gorilla-primary: #2d2d2d;
    --gorilla-secondary: #404040;
    --gorilla-accent: #00ff41;
    --gorilla-highlight: #00ff41;
}

/* Accessibility and Semantic Support */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Focus styles for accessibility */
button:focus,
.y2k-nav-btn:focus,
.y2k-modal-btn:focus,
.y2k-modal-action-btn:focus,
.y2k-taskbar-app:focus,
.y2k-start-button:focus {
    outline: 2px solid var(--accent-green);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--accent-green);
    color: var(--y2k-white);
    padding: 8px;
    text-decoration: none;
    z-index: 100000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Global Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

*::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

body {
    font-family: 'VT323', 'Press Start 2P', 'Retro', 'Space Mono', 'Orbitron', monospace;
    background: #1a1a1a;
    color: #e0e0e0;
    overflow: hidden;
    line-height: 1.4;
    height: 100vh;
    width: 100vw;
    margin-bottom: 80px;
    /* Extra space for floating taskbar */
    overflow-x: hidden;
    /* Menghilangkan scrollbar horizontal pada body */
}

/* Background Image */
.y2k-bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #000000;
}

.y2k-bg-image canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.y2k-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(26, 26, 26, 0.2) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.4) 100%),
        linear-gradient(135deg,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(26, 26, 26, 0.25) 50%,
            rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}





/* ===== PRELOADER STYLES ===== */

/* Loading Screen Section */
.y2k-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Fade Out Animation */
.y2k-preloader.fade-out {
    opacity: 0;
    transform: scale(1.1);
    filter: blur(10px);
}

/* Terminal Window */
.y2k-terminal-window {
    width: 90%;
    max-width: 800px;
    height: 500px;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 0.95) 0%,
            rgba(64, 64, 64, 0.85) 30%,
            rgba(26, 26, 26, 0.75) 60%,
            rgba(0, 0, 0, 0.65) 80%,
            rgba(0, 0, 0, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.3) 0%,
            rgba(0, 200, 50, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #2d2d2d 0%,
            #404040 25%,
            #1a1a1a 50%,
            #000000 75%,
            #000000 100%);
    border: 2px solid rgba(0, 255, 65, 0.6);
    border-radius: 16px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 10px 30px rgba(0, 255, 65, 0.3),
        inset 0 4px 8px rgba(255, 255, 255, 0.4),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.6),
        inset 0 -1px 2px rgba(0, 0, 0, 0.4),
        inset 0 0 20px rgba(0, 255, 65, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
}

.y2k-terminal-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Top edge highlight */
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.4) 2%,
            transparent 8%),
        /* Left edge highlight */
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.6) 0%,
            rgba(255, 255, 255, 0.2) 3%,
            transparent 10%),
        /* Corner highlights */
        radial-gradient(ellipse 20px 20px at 10% 10%,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%),
        radial-gradient(ellipse 20px 20px at 90% 10%,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    border-radius: 16px;
    z-index: 1;
    pointer-events: none;
}

.y2k-terminal-header {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 0.95) 0%,
            rgba(64, 64, 64, 0.85) 30%,
            rgba(26, 26, 26, 0.75) 60%,
            rgba(0, 0, 0, 0.65) 80%,
            rgba(0, 0, 0, 0.55) 100%);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
}

.y2k-terminal-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.y2k-terminal-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.y2k-terminal-dot:hover {
    transform: scale(1.1);
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.y2k-terminal-close {
    background: linear-gradient(135deg, #ff5f56 0%, #e0443e 100%);
    box-shadow: 0 2px 4px rgba(255, 95, 86, 0.3);
}

.y2k-terminal-close:hover {
    background: linear-gradient(135deg, #ff6b61 0%, #e54d47 100%);
}

.y2k-terminal-minimize {
    background: linear-gradient(135deg, #ffbd2e 0%, #e6a823 100%);
    box-shadow: 0 2px 4px rgba(255, 189, 46, 0.3);
}

.y2k-terminal-maximize {
    background: linear-gradient(135deg, #27c93f 0%, #1aab29 100%);
    box-shadow: 0 2px 4px rgba(39, 201, 63, 0.3);
}

.y2k-terminal-title {
    color: #00ff41;
    font-size: 14px;
    font-weight: 600;
    text-shadow:
        0 0 10px rgba(0, 255, 65, 0.5),
        2px 2px 0 rgba(0, 255, 65, 0.3);
    letter-spacing: 2px;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
}

.y2k-terminal-body {
    flex: 1;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    z-index: 2;
    box-shadow:
        inset 0 2px 4px rgba(0, 0, 0, 0.5),
        inset 0 -2px 4px rgba(0, 255, 65, 0.1);
}

/* Custom Scrollbar for Terminal */
.y2k-terminal-body::-webkit-scrollbar {
    width: 8px;
}

.y2k-terminal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.y2k-terminal-body::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 65, 0.4);
    border-radius: 4px;
    box-shadow: inset 0 0 6px rgba(0, 255, 65, 0.2);
}

.y2k-terminal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 65, 0.6);
    box-shadow: inset 0 0 6px rgba(0, 255, 65, 0.4);
}

.y2k-terminal-content {
    color: #00ff41;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.y2k-terminal-line {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.y2k-terminal-prompt {
    color: #00ff41;
    font-weight: 600;
    text-shadow:
        0 0 8px rgba(0, 255, 65, 0.5),
        0 0 4px rgba(0, 255, 65, 0.3);
}

.y2k-terminal-text {
    color: #00ff41;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.y2k-terminal-cursor {
    color: #00ff41;
    animation: blink 1s infinite;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.8);
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.y2k-terminal-output {
    color: #00ff41;
    opacity: 0.9;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.4);
}

.y2k-terminal-success {
    color: #00ff41;
    text-shadow: 0 0 8px rgba(0, 255, 65, 0.6);
}

.y2k-terminal-error {
    color: #ff4444;
    text-shadow: 0 0 8px rgba(255, 68, 68, 0.5);
}

/* Terminal Responsive */
@media (max-width: 768px) {
    .y2k-terminal-window {
        width: 95%;
        height: 400px;
        max-width: none;
    }

    .y2k-terminal-title {
        font-size: 12px;
    }

    .y2k-terminal-content {
        font-size: 12px;
    }

    .y2k-terminal-body {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .y2k-terminal-window {
        width: 98%;
        height: 350px;
    }

    .y2k-terminal-title {
        font-size: 11px;
    }

    .y2k-terminal-content {
        font-size: 11px;
    }

    .y2k-terminal-body {
        padding: 10px;
    }

    .y2k-terminal-dot {
        width: 10px;
        height: 10px;
    }
}

/* About Section Responsive */
@media (max-width: 768px) {
    .y2k-about-section {
        padding: 30px 20px;
        min-height: auto;
    }

    .y2k-about-container {
        padding-top: 10px;
        gap: 20px;
    }

    .y2k-about-title {
        font-size: 48px;
        padding-left: 10px;
        padding-top: 0;
    }

    .y2k-code-window-wrapper {
        padding-right: 10px;
    }

    .y2k-code-window {
        max-width: 100%;
    }

    .y2k-code-body {
        min-height: 350px;
        max-height: 500px;
    }

    .y2k-code-editor {
        max-height: 150px;
    }

    .y2k-code-terminal {
        min-height: 120px;
        max-height: 200px;
    }
}

@media (max-width: 480px) {
    .y2k-about-section {
        padding: 20px 15px;
    }

    .y2k-about-container {
        padding-top: 10px;
        gap: 15px;
    }

    .y2k-about-title {
        font-size: 36px;
        letter-spacing: 4px;
        padding-left: 5px;
        padding-top: 0;
    }

    .y2k-code-window-wrapper {
        padding-right: 5px;
    }

    .y2k-code-body {
        min-height: 300px;
        max-height: 450px;
    }

    .y2k-code-editor {
        padding: 10px 12px;
        max-height: 120px;
    }

    .y2k-code-terminal {
        min-height: 100px;
        max-height: 180px;
    }

    .y2k-code-editor pre {
        font-size: 11px;
    }

    .y2k-code-terminal-body {
        padding: 15px;
        font-size: 11px;
    }
}

/* The SNORBO Section Responsive */
@media (max-width: 768px) {
    .y2k-snorbo-section {
        padding: 30px 20px;
        min-height: auto;
    }

    .y2k-snorbo-container {
        padding-top: 10px;
        gap: 20px;
    }

    .y2k-snorbo-title {
        font-size: 48px;
    }

    .y2k-snorbo-windows-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .y2k-snorbo-video-window {
        order: 1;
    }

    .y2k-snorbo-window {
        order: 2;
    }

    .y2k-snorbo-video-right {
        order: 3;
    }

    .y2k-snorbo-window-body {
        padding: 12px;
    }

    .y2k-snorbo-grid {
        width: 100%;
        gap: 6px;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .y2k-snorbo-section {
        padding: 20px 15px;
    }

    .y2k-snorbo-container {
        padding-top: 10px;
        gap: 15px;
    }

    .y2k-snorbo-title {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .y2k-snorbo-windows-layout {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .y2k-snorbo-window-body {
        padding: 10px;
    }

    .y2k-snorbo-grid {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
}

/* ===== MAIN CONTENT STYLES ===== */

/* Main Container - Full Page */
.y2k-main-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    background: transparent;
    overflow-y: auto;
    overflow-x: hidden;
    /* Menghilangkan scrollbar horizontal */
    pointer-events: auto;
    padding-top: 0;
    /* Menghilangkan padding atas */
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

/* Main Header Navigation */
.y2k-header-navbar {
    background: transparent;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    padding: 15px 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0 50px;
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    z-index: 10001;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: none;

    /* Initial state - hidden outside page */
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Navbar entrance animation */
.y2k-header-navbar.navbar-entrance {
    opacity: 1;
    transform: translateY(0);
}

/* Removed metallic edge highlights for transparent navbar */

/* Removed metallic surface reflections for transparent navbar */

/* GROG Logo */
.y2k-luma-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Logo Image Styling */
.y2k-navbar-logo {
    height: auto;
    max-height: 50px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: all 0.3s ease;
    cursor: pointer;
}

.y2k-navbar-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.6));
}

/* Navbar Center */
.y2k-navbar-center {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.y2k-navbar-text {
    height: auto;
    max-height: 50px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.y2k-navbar-text:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.6));
}

/* No hover effects for transparent navbar */

/* Removed all hover effects for transparent navbar */

.y2k-profile-image i {
    color: var(--accent-blue);
    font-size: 18px;
    text-shadow: 1px 1px 0 var(--text-primary);
}

/* Navbar Title */
.y2k-navbar-content {
    font-family: 'VT323', 'Press Start 2P', 'Retro', 'Space Mono', monospace;
    font-size: 16px;
    color: var(--y2k-black);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 1px 1px 0 var(--text-primary);
    flex: 1;
    text-align: center;
}

/* Navbar Buttons */
.y2k-navbar-buttons {
    display: flex;
    gap: 12px;
}

.y2k-nav-btn {
    width: 52px;
    height: 52px;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 255, 65, 0.8) 0%,
            rgba(0, 230, 60, 0.7) 30%,
            rgba(0, 200, 50, 0.6) 60%,
            rgba(0, 180, 45, 0.5) 80%,
            rgba(0, 160, 40, 0.4) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.3) 0%,
            rgba(0, 200, 50, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #2d2d2d 0%,
            #404040 25%,
            #1a1a1a 50%,
            #000000 75%,
            #000000 100%);
    border: 2px solid rgba(0, 255, 65, 0.6);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        /* Outer shadow for depth */
        0 4px 16px rgba(0, 0, 0, 0.6),
        0 2px 8px rgba(0, 255, 65, 0.3),
        /* Emboss effect */
        inset 0 3px 6px rgba(255, 255, 255, 0.1),
        inset 0 -3px 6px rgba(0, 0, 0, 0.5),
        /* Additional highlights */
        inset 0 1px 2px rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.6);
}

.y2k-nav-btn svg,
.y2k-nav-btn img {
    transition: transform 0.3s ease;
}

.y2k-nav-btn:hover {
    background:
        radial-gradient(ellipse 90% 70% at 25% 25%,
            rgba(0, 255, 65, 1) 0%,
            rgba(0, 230, 60, 0.9) 25%,
            rgba(0, 200, 50, 0.8) 50%,
            rgba(0, 180, 45, 0.7) 75%,
            rgba(0, 160, 40, 0.6) 100%),
        radial-gradient(ellipse 70% 50% at 85% 75%,
            rgba(0, 255, 65, 0.4) 0%,
            rgba(0, 230, 60, 0.3) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #2d2d2d 0%,
            #404040 25%,
            #1a1a1a 50%,
            #000000 75%,
            #000000 100%);
    transform: scale(1.05) translateY(-2px);
    border-color: rgba(0, 255, 65, 1);
    box-shadow:
        /* Enhanced outer shadow */
        0 6px 24px rgba(0, 0, 0, 0.7),
        0 3px 12px rgba(0, 255, 65, 0.4),
        /* Enhanced emboss effect */
        inset 0 4px 8px rgba(255, 255, 255, 0.2),
        inset 0 -4px 8px rgba(0, 0, 0, 0.6),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.7);
}

.y2k-nav-btn:hover svg,
.y2k-nav-btn:hover img {
    transform: scale(1.2);
}

.y2k-nav-btn:active {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 255, 65, 0.9) 0%,
            rgba(0, 230, 60, 0.8) 30%,
            rgba(0, 200, 50, 0.7) 60%,
            rgba(0, 180, 45, 0.6) 80%,
            rgba(0, 160, 40, 0.5) 100%),
        linear-gradient(135deg,
            #00ff41 0%,
            #00e63a 25%,
            #00c234 50%,
            #00a82e 75%,
            #008e28 100%);
    transform: scale(0.95) translateY(1px);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow:
        /* Pressed effect */
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 1px 4px rgba(0, 255, 65, 0.2),
        inset 0 4px 8px rgba(0, 0, 0, 0.4),
        inset 0 -1px 2px rgba(255, 255, 255, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.5),
        inset 0 -2px 4px rgba(255, 255, 255, 0.2);
}

.y2k-status-nav {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: flex-end;
}

.y2k-status-item {
    font-family: 'Share Tech Mono', monospace;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    text-align: right;
    padding: 4px 0;
}

.y2k-status-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #00ff41;
    text-shadow:
        0 0 5px rgba(0, 255, 65, 0.7),
        0 0 10px rgba(0, 255, 65, 0.5);
}

.y2k-status-subtitle {
    font-size: 12px;
    color: #aaaaaa;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* Hero Section */

.y2k-video-container-full {
    background: #1a1a1a;
    padding: 40px;
    padding-bottom: 220px;
    text-align: center;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: grab;
}

#binary-rain-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* Di atas background, di bawah konten */
    pointer-events: none;
}

.y2k-video-container-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

/* Dark Metallic Effects for Hero Section */
.y2k-video-container-full::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Top dark highlight */
        linear-gradient(180deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.3) 2%,
            rgba(0, 0, 0, 0.1) 5%,
            transparent 8%),
        /* Left dark highlight */
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.4) 0%,
            rgba(0, 0, 0, 0.2) 3%,
            rgba(0, 0, 0, 0.05) 6%,
            transparent 10%),
        /* Right dark highlight */
        linear-gradient(270deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.15) 3%,
            rgba(0, 0, 0, 0.04) 6%,
            transparent 10%),
        /* Bottom dark highlight */
        linear-gradient(0deg,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.1) 2%,
            rgba(0, 0, 0, 0.03) 4%,
            transparent 8%),
        /* Corner dark accents */
        radial-gradient(circle at 0% 0%,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.1) 20%,
            transparent 40%),
        radial-gradient(circle at 100% 0%,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.08) 20%,
            transparent 40%),
        radial-gradient(circle at 0% 100%,
            rgba(0, 0, 0, 0.2) 0%,
            rgba(0, 0, 0, 0.05) 20%,
            transparent 40%),
        radial-gradient(circle at 100% 100%,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.03) 20%,
            transparent 40%),
        /* Center dark reflection */
        radial-gradient(ellipse 60% 40% at 30% 20%,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.08) 30%,
            transparent 60%),
        /* Secondary dark reflection */
        radial-gradient(ellipse 40% 30% at 70% 80%,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.05) 40%,
            transparent 70%),
        /* Dark metallic accents */
        radial-gradient(ellipse 30% 20% at 20% 80%,
            rgba(26, 26, 26, 0.1) 0%,
            rgba(26, 26, 26, 0.05) 50%,
            transparent 80%),
        radial-gradient(ellipse 25% 15% at 80% 20%,
            rgba(26, 26, 26, 0.08) 0%,
            rgba(26, 26, 26, 0.03) 60%,
            transparent 90%);
    z-index: 0;
    pointer-events: none;
}

.y2k-video-full-content {
    width: min(90vw, 640px);
    padding: 32px 28px;
    position: relative;
    z-index: 3;
    /* Pastikan konten berada di atas canvas */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 0.95) 0%,
            rgba(64, 64, 64, 0.85) 30%,
            rgba(26, 26, 26, 0.75) 60%,
            rgba(0, 0, 0, 0.65) 80%,
            rgba(0, 0, 0, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.3) 0%,
            rgba(0, 200, 50, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #2d2d2d 0%,
            #404040 25%,
            #1a1a1a 50%,
            #000000 75%,
            #000000 100%);
    border-radius: 20px;
    border: 3px solid rgba(0, 255, 65, 0.6);
    box-shadow:
        /* Outer shadow for depth */
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 255, 65, 0.3),
        /* Enhanced metallic emboss */
        inset 0 8px 16px rgba(255, 255, 255, 0.2),
        inset 0 -8px 16px rgba(0, 0, 0, 0.6),
        inset 0 4px 8px rgba(255, 255, 255, 0.3),
        inset 0 -4px 8px rgba(0, 0, 0, 0.4),
        /* Top edge highlight */
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        /* Left edge highlight */
        inset 1px 0 0 rgba(255, 255, 255, 0.3),
        /* Right edge highlight */
        inset -1px 0 0 rgba(255, 255, 255, 0.2),
        /* Bottom edge highlight */
        inset 0 -1px 0 rgba(255, 255, 255, 0.1),
        /* Center metallic reflection */
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.y2k-video-full-content:hover {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 1) 0%,
            rgba(64, 64, 64, 0.95) 30%,
            rgba(26, 26, 26, 0.85) 60%,
            rgba(0, 0, 0, 0.75) 80%,
            rgba(0, 0, 0, 0.65) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.4) 0%,
            rgba(0, 230, 60, 0.3) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #2d2d2d 0%,
            #404040 25%,
            #1a1a1a 50%,
            #000000 75%,
            #000000 100%);
    transform: scale(1.02) translateY(-2px);
    border-color: rgba(0, 255, 65, 1);
    box-shadow:
        /* Enhanced outer shadow */
        0 12px 48px rgba(0, 0, 0, 0.7),
        0 6px 24px rgba(0, 255, 65, 0.4),
        /* Enhanced metallic emboss on hover */
        inset 0 10px 20px rgba(255, 255, 255, 0.3),
        inset 0 -10px 20px rgba(0, 0, 0, 0.7),
        inset 0 5px 10px rgba(255, 255, 255, 0.4),
        inset 0 -5px 10px rgba(0, 0, 0, 0.5),
        /* Enhanced edge highlights */
        inset 0 2px 0 rgba(255, 255, 255, 0.6),
        inset 2px 0 0 rgba(255, 255, 255, 0.4),
        inset -2px 0 0 rgba(255, 255, 255, 0.3),
        inset 0 -2px 0 rgba(255, 255, 255, 0.2),
        /* Enhanced glow */
        0 0 30px rgba(0, 255, 65, 0.4),
        0 0 60px rgba(0, 255, 65, 0.2);
    transition: all 0.3s ease;
}

.y2k-video-full-content video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 17px;
}



/* Marquee Section - Token Ticker */
.y2k-marquee-section {
    align-items: center;
    background: radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 0.95) 0%,
            rgba(64, 64, 64, 0.85) 30%,
            rgba(26, 26, 26, 0.75) 60%,
            rgba(0, 0, 0, 0.65) 80%,
            rgba(0, 0, 0, 0.55) 100%), radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.3) 0%,
            rgba(0, 200, 50, 0.2) 50%,
            transparent 100%), linear-gradient(135deg, #2d2d2d 0%, #404040 25%, #1a1a1a 50%, #000000 75%, #000000 100%);
    padding: 20px 0;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    z-index: 1000;
    border: 2px solid rgba(0, 255, 65, 0.6);
    border-radius: 0;
    /* Menghilangkan border radius */
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.6),
        0 3px 10px rgba(0, 255, 65, 0.2),
        inset 0 4px 8px rgba(255, 255, 255, 0.1),
        inset 0 -4px 8px rgba(0, 0, 0, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60px;
}

.y2k-marquee-section:hover {
    background: radial-gradient(ellipse 90% 70% at 25% 25%,
            rgba(45, 45, 45, 1) 0%,
            rgba(64, 64, 64, 0.95) 25%,
            rgba(26, 26, 26, 0.9) 50%,
            rgba(0, 0, 0, 0.8) 75%,
            rgba(0, 0, 0, 0.7) 100%), radial-gradient(ellipse 70% 50% at 85% 75%,
            rgba(0, 255, 65, 0.4) 0%,
            rgba(0, 230, 60, 0.3) 50%,
            transparent 100%), linear-gradient(135deg, #2d2d2d 0%, #404040 25%, #1a1a1a 50%, #000000 75%, #000000 100%);
    transform: scale(1.02) translateY(-2px);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.7),
        0 4px 12px rgba(0, 255, 65, 0.3),
        inset 0 5px 10px rgba(255, 255, 255, 0.2),
        inset 0 -5px 10px rgba(0, 0, 0, 0.6),
        inset 0 2px 3px rgba(255, 255, 255, 0.3),
        inset 0 -2px 3px rgba(0, 0, 0, 0.7);
}

.y2k-marquee-text {
    font-family: 'Press Start 2P', 'VT323', 'Retro', 'Space Mono', monospace;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    display: inline-block;
    white-space: nowrap;
    letter-spacing: 3px;
    line-height: 1.2;
    z-index: 1001;
    position: relative;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.8);
    line-height: 1.2;
    vertical-align: middle;
    /* Remove CSS animation, will use JavaScript */
}

/* CSS animation removed - using JavaScript for better control */

/* About Section */
.y2k-about-section {
    position: relative;
    min-height: 100vh;
    padding: 40px 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.y2k-about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/sec2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 1;
}

.y2k-about-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.y2k-about-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
}

.y2k-about-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: #00ff41;
    text-align: left;
    text-shadow:
        0 0 20px rgba(0, 255, 65, 0.8),
        0 0 40px rgba(0, 255, 65, 0.5),
        2px 2px 0 rgba(0, 255, 65, 0.3);
    letter-spacing: 8px;
    margin: 0;
    padding-left: 20px;
    padding-top: 0;
}

.y2k-code-window-wrapper {
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
}

.y2k-code-window {
    width: 100%;
    max-width: 800px;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 0.95) 0%,
            rgba(64, 64, 64, 0.85) 30%,
            rgba(26, 26, 26, 0.75) 60%,
            rgba(0, 0, 0, 0.65) 80%,
            rgba(0, 0, 0, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.3) 0%,
            rgba(0, 200, 50, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #2d2d2d 0%,
            #404040 25%,
            #1a1a1a 50%,
            #000000 75%,
            #000000 100%);
    border: 2px solid rgba(0, 255, 65, 0.6);
    border-radius: 16px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 10px 30px rgba(0, 255, 65, 0.3),
        inset 0 4px 8px rgba(255, 255, 255, 0.4),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.6),
        inset 0 -1px 2px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
}

.y2k-code-header {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 0.95) 0%,
            rgba(64, 64, 64, 0.85) 30%,
            rgba(26, 26, 26, 0.75) 60%,
            rgba(0, 0, 0, 0.65) 80%,
            rgba(0, 0, 0, 0.55) 100%);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
}

.y2k-code-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.y2k-code-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.y2k-code-close {
    background: linear-gradient(135deg, #ff5f56 0%, #e0443e 100%);
}

.y2k-code-minimize {
    background: linear-gradient(135deg, #ffbd2e 0%, #e6a823 100%);
}

.y2k-code-maximize {
    background: linear-gradient(135deg, #27c93f 0%, #1aab29 100%);
}

.y2k-code-title {
    color: #00ff41;
    font-size: 14px;
    font-weight: 600;
    text-shadow:
        0 0 10px rgba(0, 255, 65, 0.5),
        2px 2px 0 rgba(0, 255, 65, 0.3);
    letter-spacing: 2px;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
}

.y2k-code-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 400px;
    max-height: 600px;
}

.y2k-code-editor {
    flex: 0 0 auto;
    max-height: 200px;
    background: rgba(0, 0, 0, 0.8);
    padding: 12px 15px;
    overflow-y: auto;
    overflow-x: auto;
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
}

/* Custom Scrollbar for Code Editor */
.y2k-code-editor::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.y2k-code-editor::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.y2k-code-editor::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 65, 0.4);
    border-radius: 3px;
}

.y2k-code-editor::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 65, 0.6);
}

.y2k-code-editor pre {
    margin: 0;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.4;
    color: #00ff41;
}

.y2k-code-editor code {
    color: #00ff41;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.y2k-code-editor .keyword {
    color: #ff6b9d;
}

.y2k-code-editor .string {
    color: #4ec9b0;
}

.y2k-code-editor .comment {
    color: #6a9955;
    font-style: italic;
}

.y2k-code-actions {
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(0, 255, 65, 0.2);
    flex-shrink: 0;
}

.y2k-run-button {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 255, 65, 0.95) 0%,
            rgba(0, 230, 60, 0.85) 30%,
            rgba(0, 200, 50, 0.75) 60%,
            rgba(0, 180, 45, 0.65) 80%,
            rgba(0, 160, 40, 0.55) 100%);
    border: 2px solid rgba(0, 255, 65, 0.6);
    border-radius: 8px;
    padding: 8px 16px;
    color: #ffffff;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 255, 65, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.y2k-run-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.4),
        0 3px 8px rgba(0, 255, 65, 0.3),
        inset 0 3px 6px rgba(255, 255, 255, 0.5),
        inset 0 -3px 6px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 255, 65, 1);
}

.y2k-run-button:active {
    transform: scale(0.95) translateY(0);
}

.y2k-code-terminal {
    flex: 1;
    min-height: 150px;
    max-height: 250px;
    display: flex;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.y2k-code-terminal-header {
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 15px;
    border-top: 1px solid rgba(0, 255, 65, 0.3);
    color: #00ff41;
    font-size: 11px;
    font-weight: 600;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    flex-shrink: 0;
}

.y2k-code-terminal-body {
    flex: 1;
    padding: 12px 15px;
    overflow-y: auto;
    color: #00ff41;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    font-size: 12px;
    line-height: 1.4;
    position: relative;
    }
    
    .y2k-code-terminal-body #terminal-output {
        position: relative;
        min-height: 100%;
    }
    
    .y2k-terminal-coin {
        position: absolute;
        left: 60%;
        top: 50%;
        transform: translateY(-50%);
        max-width: 192px;
        height: auto;
        z-index: 10;
        pointer-events: none;
}

/* Custom Scrollbar for Terminal */
.y2k-code-terminal-body::-webkit-scrollbar {
    width: 6px;
}

.y2k-code-terminal-body::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.y2k-code-terminal-body::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 65, 0.4);
    border-radius: 3px;
}

.y2k-code-terminal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 255, 65, 0.6);
}

.y2k-terminal-placeholder {
    color: rgba(0, 255, 65, 0.5);
    font-style: italic;
}

.y2k-terminal-output-line {
    margin-bottom: 4px;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.3);
}

.y2k-terminal-output-line .prompt {
    color: #00ff41;
    font-weight: 600;
}

.y2k-terminal-output-line .output {
    color: #00ff41;
    opacity: 0.9;
}

/* The SNORBO Section */
.y2k-snorbo-section {
    position: relative;
    min-height: 100vh;
    padding: 40px 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.y2k-snorbo-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
}

.y2k-snorbo-title {
    font-family: 'Guardians', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: #00ff41;
    text-align: center;
    text-shadow:
        0 0 20px rgba(0, 255, 65, 0.8),
        0 0 40px rgba(0, 255, 65, 0.5),
        2px 2px 0 rgba(0, 255, 65, 0.3);
    letter-spacing: 8px;
    margin: 0;
    padding: 0;
}

.y2k-snorbo-windows-layout {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 20px;
    align-items: start;
    width: 100%;
}

.y2k-snorbo-window-wrapper {
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.y2k-snorbo-window {
    width: 100%;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 0.95) 0%,
            rgba(64, 64, 64, 0.85) 30%,
            rgba(26, 26, 26, 0.75) 60%,
            rgba(0, 0, 0, 0.65) 80%,
            rgba(0, 0, 0, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.3) 0%,
            rgba(0, 200, 50, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #2d2d2d 0%,
            #404040 25%,
            #1a1a1a 50%,
            #000000 75%,
            #000000 100%);
    border: 2px solid rgba(0, 255, 65, 0.6);
    border-radius: 16px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 10px 30px rgba(0, 255, 65, 0.3),
        inset 0 4px 8px rgba(255, 255, 255, 0.4),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.6),
        inset 0 -1px 2px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
}

.y2k-snorbo-window-header {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 0.95) 0%,
            rgba(64, 64, 64, 0.85) 30%,
            rgba(26, 26, 26, 0.75) 60%,
            rgba(0, 0, 0, 0.65) 80%,
            rgba(0, 0, 0, 0.55) 100%);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
}

.y2k-snorbo-window-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.y2k-snorbo-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.y2k-snorbo-dot:hover {
    transform: scale(1.1);
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.y2k-snorbo-close {
    background: linear-gradient(135deg, #ff5f56 0%, #e0443e 100%);
}

.y2k-snorbo-close:hover {
    background: linear-gradient(135deg, #ff6b61 0%, #e54d47 100%);
}

.y2k-snorbo-minimize {
    background: linear-gradient(135deg, #ffbd2e 0%, #e6a823 100%);
}

.y2k-snorbo-maximize {
    background: linear-gradient(135deg, #27c93f 0%, #1aab29 100%);
}

.y2k-snorbo-window-title {
    color: #00ff41;
    font-size: 14px;
    font-weight: 600;
    text-shadow:
        0 0 10px rgba(0, 255, 65, 0.5),
        2px 2px 0 rgba(0, 255, 65, 0.3);
    letter-spacing: 2px;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
}

.y2k-snorbo-window-body {
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.y2k-snorbo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
}

.y2k-snorbo-grid-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 65, 0.4);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.5);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(0, 255, 65, 0.1);
}

.y2k-snorbo-grid-item:hover {
    transform: scale(1.05);
    border-color: rgba(0, 255, 65, 0.8);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.5),
        0 4px 12px rgba(0, 255, 65, 0.4),
        inset 0 1px 2px rgba(0, 255, 65, 0.2);
    z-index: 10;
}

.y2k-snorbo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.y2k-snorbo-grid-item:hover .y2k-snorbo-image {
    transform: scale(1.1);
}

/* Video Windows */
.y2k-snorbo-video-window {
    width: 100%;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 0.95) 0%,
            rgba(64, 64, 64, 0.85) 30%,
            rgba(26, 26, 26, 0.75) 60%,
            rgba(0, 0, 0, 0.65) 80%,
            rgba(0, 0, 0, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.3) 0%,
            rgba(0, 200, 50, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #2d2d2d 0%,
            #404040 25%,
            #1a1a1a 50%,
            #000000 75%,
            #000000 100%);
    border: 2px solid rgba(0, 255, 65, 0.6);
    border-radius: 16px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 10px 30px rgba(0, 255, 65, 0.3),
        inset 0 4px 8px rgba(255, 255, 255, 0.4),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.6),
        inset 0 -1px 2px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
}

.y2k-snorbo-video-header {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 0.95) 0%,
            rgba(64, 64, 64, 0.85) 30%,
            rgba(26, 26, 26, 0.75) 60%,
            rgba(0, 0, 0, 0.65) 80%,
            rgba(0, 0, 0, 0.55) 100%);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
}

.y2k-snorbo-video-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.y2k-snorbo-video-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.y2k-snorbo-video-dot:hover {
    transform: scale(1.1);
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.y2k-snorbo-video-close {
    background: linear-gradient(135deg, #ff5f56 0%, #e0443e 100%);
}

.y2k-snorbo-video-close:hover {
    background: linear-gradient(135deg, #ff6b61 0%, #e54d47 100%);
}

.y2k-snorbo-video-minimize {
    background: linear-gradient(135deg, #ffbd2e 0%, #e6a823 100%);
}

.y2k-snorbo-video-maximize {
    background: linear-gradient(135deg, #27c93f 0%, #1aab29 100%);
}

.y2k-snorbo-video-title {
    color: #00ff41;
    font-size: 14px;
    font-weight: 600;
    text-shadow:
        0 0 10px rgba(0, 255, 65, 0.5),
        2px 2px 0 rgba(0, 255, 65, 0.3);
    letter-spacing: 2px;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
}

.y2k-snorbo-video-body {
    flex: 0 0 auto;
    padding: 0;
    background: rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.y2k-snorbo-video-body video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 100%;
}

/* Featured Video Grid Section */
.y2k-video-grid {
    background: transparent;
    padding: 40px 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.y2k-video-grid .y2k-video-box {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid rgba(0, 255, 65, 0.6);
}

.y2k-video-box {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 0.95) 0%,
            rgba(64, 64, 64, 0.85) 30%,
            rgba(26, 26, 26, 0.75) 60%,
            rgba(0, 0, 0, 0.65) 80%,
            rgba(0, 0, 0, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.3) 0%,
            rgba(0, 200, 50, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #2d2d2d 0%,
            #404040 25%,
            #1a1a1a 50%,
            #000000 75%,
            #000000 100%);
    border-radius: 20px;
    box-shadow:
        /* Outer shadow for depth */
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 255, 65, 0.3),
        /* Emboss effect - multiple layers */
        inset 0 8px 16px rgba(255, 255, 255, 0.2),
        inset 0 -8px 16px rgba(0, 0, 0, 0.6),
        inset 0 4px 8px rgba(255, 255, 255, 0.3),
        inset 0 -4px 8px rgba(0, 0, 0, 0.4),
        /* Curved surface highlights */
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        inset 0 -1px 2px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    max-width: 500px;
    width: 500px;
    height: 500px;
    border: 3px solid rgba(0, 255, 65, 0.6);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.y2k-video-box video {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    object-fit: contain;
    background: #000;
}

/* Hover Effects */
.y2k-video-box:hover {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 1) 0%,
            rgba(64, 64, 64, 0.95) 30%,
            rgba(26, 26, 26, 0.9) 60%,
            rgba(0, 0, 0, 0.8) 80%,
            rgba(0, 0, 0, 0.7) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.4) 0%,
            rgba(0, 230, 60, 0.3) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #2d2d2d 0%,
            #404040 25%,
            #1a1a1a 50%,
            #000000 75%,
            #000000 100%);
    transform: scale(1.02) translateY(-3px);
    border-color: rgba(0, 255, 65, 1);
    box-shadow:
        /* Enhanced outer shadow */
        0 12px 48px rgba(0, 0, 0, 0.7),
        0 6px 24px rgba(0, 255, 65, 0.4),
        /* Enhanced emboss effect */
        inset 0 8px 16px rgba(255, 255, 255, 0.2),
        inset 0 -8px 16px rgba(0, 0, 0, 0.6),
        inset 0 3px 6px rgba(255, 255, 255, 0.3),
        inset 0 -3px 6px rgba(0, 0, 0, 0.7),
        /* Enhanced surface highlights */
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease;
    transform: translateY(-2px);
}



/* Meme Gallery Section */
.y2k-image-grid-section {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 0.95) 0%,
            rgba(64, 64, 64, 0.85) 30%,
            rgba(26, 26, 26, 0.75) 60%,
            rgba(0, 0, 0, 0.65) 80%,
            rgba(0, 0, 0, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.3) 0%,
            rgba(0, 200, 50, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #2d2d2d 0%,
            #404040 25%,
            #1a1a1a 50%,
            #000000 75%,
            #000000 100%);
    padding: 60px 20px;
    margin-bottom: 100px;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid rgba(0, 255, 65, 0.6);
    border-radius: 25px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 255, 65, 0.3),
        inset 0 4px 8px rgba(255, 255, 255, 0.1),
        inset 0 -4px 8px rgba(0, 0, 0, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.6);
}

.y2k-image-grid-section:hover {
    background:
        radial-gradient(ellipse 90% 70% at 25% 25%,
            rgba(45, 45, 45, 1) 0%,
            rgba(64, 64, 64, 0.95) 25%,
            rgba(26, 26, 26, 0.9) 50%,
            rgba(0, 0, 0, 0.8) 75%,
            rgba(0, 0, 0, 0.7) 100%),
        radial-gradient(ellipse 70% 50% at 85% 75%,
            rgba(0, 255, 65, 0.4) 0%,
            rgba(0, 230, 60, 0.3) 50%,
            transparent 100%),
        linear-gradient(135deg, #2d2d2d 0%, #404040 25%, #1a1a1a 50%, #000000 75%, #000000 100%);
    transform: scale(1.01) translateY(-2px);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.7),
        0 6px 24px rgba(0, 255, 65, 0.4),
        inset 0 6px 12px rgba(255, 255, 255, 0.2),
        inset 0 -6px 12px rgba(0, 0, 0, 0.6),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.7);
}

.y2k-image-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1;
}

.y2k-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}



/* Application Taskbar Footer */
.y2k-footer-taskbar {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 0.95) 0%,
            rgba(64, 64, 64, 0.85) 30%,
            rgba(26, 26, 26, 0.75) 60%,
            rgba(0, 0, 0, 0.65) 80%,
            rgba(0, 0, 0, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.3) 0%,
            rgba(0, 200, 50, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #2d2d2d 0%,
            #404040 25%,
            #1a1a1a 50%,
            #000000 75%,
            #000000 100%);
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    border: 2px solid rgba(0, 255, 65, 0.6);
    border-radius: 20px;
    width: calc(100% - 2px);
    max-width: none;
    margin: 0 1px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(0, 255, 65, 0.3), inset 0 6px 12px rgba(0, 255, 65, 0.1), inset 0 -6px 12px rgba(0, 0, 0, 0.5), inset 0 2px 4px rgba(0, 255, 65, 0.1), inset 0 -2px 4px rgba(0, 0, 0, 0.6), inset 0 1px 2px rgba(0, 255, 65, 0.05), inset 0 -1px 2px rgba(0, 0, 0, 0.7);
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10003;
    /* Higher than border image */
    max-width: 1000px;
    /* width: calc(100% - 40px); */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    /* Curved surface effect */
    transform: translateX(-50%) perspective(1000px) rotateX(-2deg);

    /* Initial state - hidden outside page */
    opacity: 0;
    transform: translateX(-50%) translateY(100px) scale(0.8) perspective(1000px) rotateX(-2deg);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Taskbar entrance animation */
.y2k-footer-taskbar.taskbar-entrance {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1) perspective(1000px) rotateX(-2deg);
}

.y2k-footer-taskbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Top edge highlight */
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.4) 2%,
            transparent 8%),
        /* Left edge highlight */
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.6) 0%,
            rgba(255, 255, 255, 0.2) 3%,
            transparent 10%),
        /* Corner highlights */
        radial-gradient(ellipse 20px 20px at 10% 10%,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%),
        radial-gradient(ellipse 20px 20px at 90% 10%,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            transparent 100%);
    border-radius: 20px;
    z-index: 1;
    pointer-events: none;
}

.y2k-taskbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.y2k-taskbar-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
    max-width: 200px;
}

.y2k-ca-section {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.5);
    border-radius: 12px;
    padding: 6px 12px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.2), inset 0 -2px 4px rgba(0, 0, 0, 0.1);
    max-width: 180px;
    min-width: 0;
}

.y2k-ca-label {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-family: 'Space Mono', 'Share Tech Mono', 'Courier New', monospace;
    font-size: 12px;
    font-weight: 400;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

/* CA label icon removed */

.y2k-ca-address {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.y2k-ca-text {
    color: #ffd700;
    font-family: 'Space Mono', 'Share Tech Mono', 'Courier New', monospace;
    font-size: 11px;
    font-weight: 400;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.7);
    letter-spacing: 0.3px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

.y2k-ca-text:hover {
    color: #00ff00;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 255, 0, 0.5);
    transform: scale(1.05);
}

.y2k-ca-copy {
    background: rgba(0, 255, 65, 0.3);
    border: 1px solid rgba(0, 255, 65, 0.6);
    border-radius: 6px;
    padding: 4px 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.y2k-ca-copy:disabled {
    background: rgba(128, 128, 128, 0.3);
    border-color: rgba(128, 128, 128, 0.5);
    cursor: not-allowed;
    opacity: 0.5;
}

.y2k-ca-copy:hover {
    background: rgba(0, 255, 65, 0.5);
    border-color: rgba(0, 255, 65, 0.8);
    transform: scale(1.1);
}

.y2k-ca-copy i {
    color: #ffffff;
    font-size: 8px;
}

/* Taskbar hover effects */
/* Hover effects removed from toolbar - only inner elements have hover effects */

.y2k-buy-button {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 255, 65, 0.95) 0%,
            rgba(0, 200, 50, 0.85) 30%,
            rgba(45, 45, 45, 0.75) 60%,
            rgba(26, 26, 26, 0.65) 80%,
            rgba(0, 0, 0, 0.55) 100%),
        linear-gradient(135deg,
            #00ff41 0%,
            #00c234 25%,
            #2d2d2d 50%,
            #1a1a1a 75%,
            #000000 100%);
    border: 2px solid rgba(0, 255, 65, 0.6);
    border-radius: 12px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        /* Outer shadow for depth */
        0 4px 16px rgba(0, 0, 0, 0.6),
        0 2px 8px rgba(0, 255, 65, 0.3),
        /* Emboss effect */
        inset 0 3px 6px rgba(255, 255, 255, 0.1),
        inset 0 -3px 6px rgba(0, 0, 0, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.2),
        inset 0 -1px 2px rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    text-decoration: none;
    color: inherit;
}

.y2k-buy-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow:
        /* Enhanced outer shadow */
        0 6px 24px rgba(0, 0, 0, 0.7),
        0 3px 12px rgba(0, 255, 65, 0.4),
        /* Enhanced emboss effect */
        inset 0 4px 8px rgba(255, 255, 255, 0.2),
        inset 0 -4px 8px rgba(0, 0, 0, 0.6),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.7);
    border-color: rgba(0, 255, 65, 1);
    text-decoration: none;
    color: inherit;
}

/* Buy button link styling */
.y2k-buy-button:visited {
    text-decoration: none;
    color: inherit;
}

.y2k-buy-button:active {
    text-decoration: none;
    color: inherit;
}

/* Notification System */
.y2k-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 255, 0, 0.95) 0%,
            rgba(34, 197, 94, 0.85) 30%,
            rgba(22, 163, 74, 0.75) 60%,
            rgba(21, 128, 61, 0.65) 80%,
            rgba(20, 83, 45, 0.55) 100%),
        linear-gradient(135deg,
            #00ff00 0%,
            #22c55e 25%,
            #16a34a 50%,
            #15803d 75%,
            #14532d 100%);
    border: 2px solid rgba(0, 255, 65, 0.6);
    border-radius: 15px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: default;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        /* Outer shadow for depth */
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 255, 0, 0.4),
        /* Emboss effect */
        inset 0 4px 8px rgba(255, 255, 255, 0.5),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.7),
        inset 0 -1px 2px rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 100000;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    pointer-events: none;
}

.y2k-notification.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: auto;
}

.y2k-notification i {
    color: #ffffff;
    font-size: 24px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.y2k-notification .notification-text {
    color: #ffffff;
    font-family: 'VT323', 'Press Start 2P', 'Retro', 'Space Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    white-space: nowrap;
}

.y2k-notification.success {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 255, 0, 0.95) 0%,
            rgba(34, 197, 94, 0.85) 30%,
            rgba(22, 163, 74, 0.75) 60%,
            rgba(21, 128, 61, 0.65) 80%,
            rgba(20, 83, 45, 0.55) 100%),
        linear-gradient(135deg,
            #00ff00 0%,
            #22c55e 25%,
            #16a34a 50%,
            #15803d 75%,
            #14532d 100%);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(0, 255, 0, 0.4),
        inset 0 4px 8px rgba(255, 255, 255, 0.5),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.7),
        inset 0 -1px 2px rgba(0, 0, 0, 0.4);
}

.y2k-notification.error {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(255, 0, 0, 0.95) 0%,
            rgba(239, 68, 68, 0.85) 30%,
            rgba(220, 38, 38, 0.75) 60%,
            rgba(185, 28, 28, 0.65) 80%,
            rgba(153, 27, 27, 0.55) 100%),
        linear-gradient(135deg,
            #ff0000 0%,
            #ef4444 25%,
            #dc2626 50%,
            #b91c1c 75%,
            #991b1b 100%);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(255, 0, 0, 0.4),
        inset 0 4px 8px rgba(255, 255, 255, 0.5),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.7),
        inset 0 -1px 2px rgba(0, 0, 0, 0.4);
}

.y2k-notification.warning {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(255, 193, 7, 0.95) 0%,
            rgba(245, 158, 11, 0.85) 30%,
            rgba(217, 119, 6, 0.75) 60%,
            rgba(180, 83, 9, 0.65) 80%,
            rgba(146, 64, 14, 0.55) 100%),
        linear-gradient(135deg,
            #ffc107 0%,
            #f59e0b 25%,
            #d97706 50%,
            #b45309 75%,
            #92400e 100%);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 4px 16px rgba(255, 193, 7, 0.4),
        inset 0 4px 8px rgba(255, 255, 255, 0.5),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.7),
        inset 0 -1px 2px rgba(0, 0, 0, 0.4);
}

.y2k-buy-button span {
    color: #ffffff;
    font-family: 'Space Mono', 'Share Tech Mono', 'Courier New', monospace;
    font-size: 13px;
    font-weight: 500;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

.y2k-taskbar-apps {
    display: flex;
    align-items: center;
    gap: 10px;
}

.y2k-taskbar-app {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.1) 30%,
            rgba(255, 255, 255, 0.05) 60%,
            transparent 100%),
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.1) 25%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.02) 75%,
            transparent 100%);
    border: 1px solid rgba(0, 255, 65, 0.5);
    border-radius: 10px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow:
        /* Subtle emboss effect */
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.4),
        inset 0 -1px 2px rgba(0, 0, 0, 0.3);
}

.y2k-taskbar-app:hover {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.2) 30%,
            rgba(255, 255, 255, 0.1) 60%,
            rgba(255, 255, 255, 0.05) 100%),
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0.15) 25%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0.05) 75%,
            rgba(255, 255, 255, 0.02) 100%);
    transform: scale(1.05) translateY(-1px);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow:
        /* Enhanced emboss effect */
        inset 0 3px 6px rgba(255, 255, 255, 0.4),
        inset 0 -3px 6px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.5),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4),
        /* Outer glow */
        0 2px 8px rgba(255, 255, 255, 0.2);
}

.y2k-taskbar-app.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.4);
}

.y2k-taskbar-app i {
    color: #ffffff;
    font-size: 14px;
}

.y2k-taskbar-app span {
    color: #ffffff;
    font-family: 'Space Mono', 'Share Tech Mono', 'Courier New', monospace;
    font-size: 12px;
    font-weight: 400;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.7);
    letter-spacing: 0.5px;
}

.y2k-taskbar-right {
    display: flex;
    align-items: center;
}

.y2k-social-media {
    display: flex;
    align-items: center;
    gap: 20px;
}

.y2k-social-item {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 0.8) 0%,
            rgba(64, 64, 64, 0.6) 30%,
            rgba(26, 26, 26, 0.4) 60%,
            rgba(0, 0, 0, 0.2) 80%,
            transparent 100%),
        linear-gradient(135deg,
            rgba(0, 255, 65, 0.6) 0%,
            rgba(0, 200, 50, 0.4) 50%,
            rgba(0, 255, 65, 0.2) 100%);
    border: 2px solid rgba(0, 255, 65, 0.6);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow:
        0 4px 16px rgba(0, 255, 65, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.5);
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-family: 'Space Mono', 'Share Tech Mono', 'Courier New', monospace;
}

.y2k-social-item:hover {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 1) 0%,
            rgba(64, 64, 64, 0.8) 30%,
            rgba(26, 26, 26, 0.6) 60%,
            rgba(0, 0, 0, 0.4) 80%,
            transparent 100%),
        linear-gradient(135deg,
            rgba(0, 255, 65, 0.8) 0%,
            rgba(0, 200, 50, 0.6) 50%,
            rgba(0, 255, 65, 0.4) 100%);
    border-color: rgba(0, 255, 65, 1);
    transform: scale(1.1) translateY(-2px);
    box-shadow:
        0 8px 24px rgba(0, 255, 65, 0.5),
        inset 0 3px 6px rgba(255, 255, 255, 0.2),
        inset 0 -3px 6px rgba(0, 0, 0, 0.6);
    color: #ffffff;
}

.y2k-tray-item:hover {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0.15) 30%,
            rgba(255, 255, 255, 0.1) 60%,
            rgba(255, 255, 255, 0.05) 100%),
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.12) 25%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.04) 75%,
            rgba(255, 255, 255, 0.02) 100%);
    transform: scale(1.05) translateY(-1px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow:
        /* Enhanced emboss effect */
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 3px rgba(255, 255, 255, 0.5),
        inset 0 -1px 3px rgba(0, 0, 0, 0.4),
        /* Outer glow */
        0 1px 6px rgba(255, 255, 255, 0.2);
}

.y2k-tray-item i {
    color: #ffffff;
    font-size: 12px;
}

.y2k-tray-item span {
    color: #ffffff;
    font-family: 'VT323', 'Press Start 2P', 'Retro', 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.y2k-meme-img {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 0.95) 0%,
            rgba(64, 64, 64, 0.85) 30%,
            rgba(26, 26, 26, 0.75) 60%,
            rgba(0, 0, 0, 0.65) 80%,
            rgba(0, 0, 0, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.3) 0%,
            rgba(0, 200, 50, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #2d2d2d 0%,
            #404040 25%,
            #1a1a1a 50%,
            #000000 75%,
            #000000 100%);
    border: 3px solid rgba(0, 255, 65, 0.6);
    border-radius: 15px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    aspect-ratio: 1;
    transform: scale(1.1);
    box-shadow:
        /* Outer shadow for depth */
        0 6px 24px rgba(0, 0, 0, 0.6),
        0 3px 12px rgba(0, 255, 65, 0.3),
        /* Emboss effect - multiple layers */
        inset 0 4px 8px rgba(255, 255, 255, 0.1),
        inset 0 -4px 8px rgba(0, 0, 0, 0.5),
        inset 0 2px 4px rgba(255, 255, 255, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.6),
        /* Curved surface highlights */
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        inset 0 -1px 2px rgba(0, 0, 0, 0.7);
    overflow: hidden;
    position: relative;
    -webkit-user-select: none;
    user-select: none;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.y2k-meme-img:hover {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 1) 0%,
            rgba(64, 64, 64, 0.95) 30%,
            rgba(26, 26, 26, 0.85) 60%,
            rgba(0, 0, 0, 0.75) 80%,
            rgba(0, 0, 0, 0.65) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.4) 0%,
            rgba(0, 230, 60, 0.3) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #2d2d2d 0%,
            #404040 25%,
            #1a1a1a 50%,
            #000000 75%,
            #000000 100%);
    transform: scale(1.05) translateY(-3px);
    border-color: rgba(0, 255, 65, 1);
    box-shadow:
        /* Enhanced outer shadow */
        0 12px 36px rgba(0, 0, 0, 0.7),
        0 6px 18px rgba(0, 255, 65, 0.4),
        /* Enhanced emboss effect */
        inset 0 6px 12px rgba(255, 255, 255, 0.2),
        inset 0 -6px 12px rgba(0, 0, 0, 0.6),
        inset 0 3px 6px rgba(255, 255, 255, 0.3),
        inset 0 -3px 6px rgba(0, 0, 0, 0.7),
        /* Enhanced surface highlights */
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.8);
}

.meme-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95) contrast(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.y2k-meme-img:hover .meme-image {
    filter: brightness(1.05) contrast(1.1) saturate(1.05);
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Single Meme Image */
.y2k-single-meme {
    background: var(--frame-dark);
    padding: 40px 20px;
    text-align: center;
    margin: 20px auto;
    max-width: 800px;
}

.y2k-single-meme-content {
    max-width: 600px;
    margin: 0 auto;
    background: var(--text-primary);
    border: 3px solid;
    border-color: var(--text-primary) var(--frame-dark) var(--frame-dark) var(--text-primary);
    padding: 20px;
    box-shadow:
        inset 2px 2px 0 var(--frame-dark),
        inset -2px -2px 0 var(--text-primary),
        4px 4px 8px rgba(0, 0, 0, 0.3);
}

.single-meme-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
    filter: brightness(0.95) contrast(1.05);
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.single-meme-image:hover {
    filter: brightness(1.05) contrast(1.1) saturate(1.05);
    transform: scale(1.02);
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
}

/* Image Modal Window - Mac Style with Metallic */
.y2k-image-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    min-width: 300px;
    max-width: 95vw;
    height: auto;
    min-height: 200px;
    max-height: 70vh;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 0.95) 0%,
            rgba(64, 64, 64, 0.85) 30%,
            rgba(26, 26, 26, 0.75) 60%,
            rgba(0, 0, 0, 0.65) 80%,
            rgba(0, 0, 0, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.3) 0%,
            rgba(0, 200, 50, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #2d2d2d 0%,
            #404040 25%,
            #1a1a1a 50%,
            #000000 75%,
            #000000 100%);
    border: 2px solid rgba(0, 255, 65, 0.6);
    border-radius: 16px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 10px 30px rgba(0, 255, 65, 0.3),
        inset 0 4px 8px rgba(255, 255, 255, 0.4),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.6),
        inset 0 -1px 2px rgba(0, 0, 0, 0.4);
    display: none;
    flex-direction: column;
    z-index: 100000;
    overflow: visible;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
}

/* Dialog element support for semantic modal */
dialog.y2k-image-modal {
    background: none;
    border: none;
    padding: 0;
}

dialog.y2k-image-modal::backdrop {
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.y2k-image-modal.active {
    display: flex;
}

.y2k-modal-header {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(45, 45, 45, 0.95) 0%,
            rgba(64, 64, 64, 0.85) 30%,
            rgba(26, 26, 26, 0.75) 60%,
            rgba(0, 0, 0, 0.65) 80%,
            rgba(0, 0, 0, 0.55) 100%);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 255, 65, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
}

.y2k-modal-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.y2k-modal-btn {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.y2k-modal-btn:hover {
    transform: scale(1.1);
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.y2k-modal-close {
    background: linear-gradient(135deg, #ff5f56 0%, #e0443e 100%);
}

.y2k-modal-close:hover {
    background: linear-gradient(135deg, #ff6b61 0%, #e54d47 100%);
}

.y2k-modal-minimize {
    background: linear-gradient(135deg, #ffbd2e 0%, #e6a823 100%);
}

.y2k-modal-maximize {
    background: linear-gradient(135deg, #27c93f 0%, #1aab29 100%);
}

.y2k-modal-title {
    color: #00ff41;
    font-size: 14px;
    font-weight: 600;
    text-shadow:
        0 0 10px rgba(0, 255, 65, 0.5),
        2px 2px 0 rgba(0, 255, 65, 0.3);
    letter-spacing: 2px;
    font-family: 'Share Tech Mono', 'Courier New', monospace;
}

.y2k-modal-title i {
    font-size: 12px;
    opacity: 0.8;
}

.y2k-modal-content {
    flex: 0 0 auto;
    padding: 20px;
    display: block;
    overflow: auto;
    position: relative;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.y2k-modal-image {
    width: auto;
    height: auto;
    max-width: calc(90vw - 40px);
    max-height: calc(70vh - 120px);
    object-fit: contain;
    border-radius: 8px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 255, 65, 0.2);
    transition: all 0.3s ease;
    display: block;
}

.y2k-modal-image:hover {
    transform: scale(1.02);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.4),
        0 6px 16px rgba(0, 255, 65, 0.3);
}

.y2k-modal-footer {
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(0, 255, 65, 0.3);
    position: relative;
    z-index: 2;
    box-shadow:
        inset 0 2px 4px rgba(255, 255, 255, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    overflow: visible;
    min-height: fit-content;
    flex-shrink: 0;
        margin-top: auto;
}

.y2k-modal-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    overflow: visible;
    flex-wrap: wrap;
}

.y2k-modal-action-btn {
    background: radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 255, 65, 0.95) 0%,
            rgba(0, 230, 60, 0.85) 30%,
            rgba(0, 200, 50, 0.75) 60%,
            rgba(0, 180, 45, 0.65) 80%,
            rgba(0, 160, 40, 0.55) 100%);
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    color: #ffffff;
    font-family: 'VT323', 'Press Start 2P', 'Retro', 'Space Mono', monospace;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 255, 65, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    overflow: visible;
}

.y2k-modal-action-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.4),
        0 3px 8px rgba(0, 255, 65, 0.3),
        inset 0 3px 6px rgba(255, 255, 255, 0.5),
        inset 0 -3px 6px rgba(0, 0, 0, 0.4);
}

.y2k-modal-action-btn:active {
    transform: scale(0.95) translateY(0);
}

/* DexScreener Modal Specific Styles */
.y2k-dex-modal {
    max-width: 95%;
    width: 1200px;
    max-height: 85vh;
}

.y2k-dex-content {
    padding: 0;
    background: rgba(0, 0, 0, 0.3);
    min-height: 500px;
}

.y2k-dex-chart-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.y2k-dex-iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    display: block;
}

.y2k-modal-action-btn {
    text-decoration: none;
}

/* Additional Scroll Content */
.y2k-scroll-content {
    background: var(--bg-metal);
    padding: 20px;
    pointer-events: auto;
}

.y2k-scroll-section {
    background: var(--panel-gradient);
    border: 2px solid;
    border-color: var(--text-primary) var(--frame-dark) var(--frame-dark) var(--text-primary);
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: inset 1px 1px 0 var(--frame-dark), inset -1px -1px 0 var(--text-primary);
    pointer-events: auto;
}

.y2k-scroll-section h3 {
    font-family: 'VT323', 'Press Start 2P', 'Retro', 'Space Mono', monospace;
    font-size: 16px;
    color: var(--accent-blue);
    margin-bottom: 15px;
    text-shadow: 1px 1px 0 var(--text-primary);
}

.y2k-scroll-section p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}





/* Hide scrollbar for Main Container */
.y2k-main-container::-webkit-scrollbar {
    display: none;
}

.y2k-main-container::-webkit-scrollbar-track {
    display: none;
}

.y2k-main-container::-webkit-scrollbar-thumb {
    display: none;
}

.y2k-main-container::-webkit-scrollbar-thumb:hover {
    display: none;
}

.y2k-main-container::-webkit-scrollbar-corner {
    display: none;
}

/* Hide scrollbar for main container */
.y2k-main-container {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

.y2k-main-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

/* Content Container - INSIDE BORDER */
.y2k-content-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 9999;
    pointer-events: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

/* Main Application Window */
.y2k-app-window {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--panel-gradient);
    border: 3px solid;
    border-color: var(--text-primary) var(--frame-dark) var(--frame-dark) var(--text-primary);
    box-shadow:
        inset 2px 2px 0 var(--frame-dark),
        inset -2px -2px 0 var(--text-primary),
        0 0 20px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Application Header */
.y2k-app-header {
    background: var(--panel-gradient);
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.y2k-app-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'VT323', 'Press Start 2P', 'Retro', 'Space Mono', monospace;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-primary);
    text-shadow: 1px 1px 0 var(--frame-dark);
}

.y2k-app-title i {
    color: var(--accent-blue);
    font-size: 16px;
}

.y2k-app-title .version {
    font-size: 11px;
    color: var(--text-muted);
    margin-left: 8px;
}

.y2k-window-controls {
    display: flex;
    gap: 4px;
}

.y2k-control-btn {
    width: 20px;
    height: 20px;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 255, 65, 0.95) 0%,
            rgba(0, 230, 60, 0.85) 30%,
            rgba(0, 200, 50, 0.75) 60%,
            rgba(0, 180, 45, 0.65) 80%,
            rgba(0, 160, 40, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.3) 0%,
            rgba(0, 200, 50, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00ff41 0%,
            #00e63a 25%,
            #00c234 50%,
            #00a82e 75%,
            #008e28 100%);
    border: none;
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 255, 65, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.6),
        inset 0 -1px 2px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.y2k-control-btn:hover {
    background:
        radial-gradient(ellipse 90% 70% at 25% 25%,
            rgba(0, 255, 65, 1) 0%,
            rgba(0, 230, 60, 0.9) 25%,
            rgba(0, 200, 50, 0.8) 50%,
            rgba(0, 180, 45, 0.7) 75%,
            rgba(0, 160, 40, 0.6) 100%),
        radial-gradient(ellipse 70% 50% at 85% 75%,
            rgba(0, 255, 65, 0.4) 0%,
            rgba(0, 200, 50, 0.3) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00ff41 0%,
            #00e63a 25%,
            #00c234 50%,
            #00a82e 75%,
            #008e28 100%);
    transform: scale(1.1) translateY(-1px);
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.4),
        0 3px 8px rgba(0, 255, 65, 0.3),
        inset 0 3px 6px rgba(255, 255, 255, 0.5),
        inset 0 -3px 6px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.7),
        inset 0 -1px 2px rgba(0, 0, 0, 0.5);
}

.y2k-control-btn.close:hover {
    background:
        radial-gradient(ellipse 90% 70% at 25% 25%,
            rgba(255, 0, 0, 1) 0%,
            rgba(220, 20, 60, 0.9) 25%,
            rgba(255, 20, 147, 0.8) 50%,
            rgba(255, 105, 180, 0.7) 75%,
            rgba(255, 182, 193, 0.6) 100%),
        radial-gradient(ellipse 70% 50% at 85% 75%,
            rgba(0, 255, 65, 0.4) 0%,
            rgba(0, 200, 50, 0.3) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #ff0000 0%,
            #dc143c 25%,
            #ff1493 50%,
            #ff69b4 75%,
            #ffb6c1 100%);
    color: var(--text-primary);
    transform: scale(1.1) translateY(-1px);
    box-shadow:
        0 6px 16px rgba(255, 0, 0, 0.4),
        0 3px 8px rgba(255, 20, 147, 0.3),
        inset 0 3px 6px rgba(255, 255, 255, 0.5),
        inset 0 -3px 6px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.7),
        inset 0 -1px 2px rgba(0, 0, 0, 0.5);
}

.y2k-control-btn:active {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 255, 65, 0.8) 0%,
            rgba(0, 230, 60, 0.7) 30%,
            rgba(0, 200, 50, 0.6) 60%,
            rgba(0, 180, 45, 0.5) 80%,
            rgba(0, 160, 40, 0.4) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.2) 0%,
            rgba(0, 200, 50, 0.1) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00ff41 0%,
            #00e63a 25%,
            #00c234 50%,
            #00a82e 75%,
            #008e28 100%);
    transform: scale(0.95) translateY(1px);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 1px 4px rgba(0, 255, 65, 0.2),
        inset 0 4px 8px rgba(0, 0, 0, 0.4),
        inset 0 -1px 2px rgba(255, 255, 255, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.5),
        inset 0 -2px 4px rgba(255, 255, 255, 0.2);
}

/* Main Content Area */
.y2k-main-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Navigation Panel */
.y2k-nav-panel {
    width: 250px;
    background: var(--panel-gradient);
    border-right: 2px solid var(--frame-dark);
    padding: 16px;
    box-shadow: inset -1px 0 0 var(--text-primary);
    display: flex;
    flex-direction: column;
}

.y2k-nav-header {
    font-family: 'VT323', 'Press Start 2P', 'Retro', 'Space Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-blue);
    text-align: center;
    margin-bottom: 20px;
    padding: 8px;
    background: var(--panel-gradient);
    border: 2px solid;
    border-color: var(--text-primary) var(--frame-dark) var(--frame-dark) var(--text-primary);
    box-shadow: inset 1px 1px 0 var(--frame-dark), inset -1px -1px 0 var(--text-primary);
    text-shadow: 1px 1px 0 var(--text-primary);
}

.y2k-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.y2k-nav-item {
    padding: 10px 12px;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 255, 65, 0.95) 0%,
            rgba(0, 230, 60, 0.85) 30%,
            rgba(0, 200, 50, 0.75) 60%,
            rgba(0, 180, 45, 0.65) 80%,
            rgba(0, 160, 40, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.3) 0%,
            rgba(0, 200, 50, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00ff41 0%,
            #00e63a 25%,
            #00c234 50%,
            #00a82e 75%,
            #008e28 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 255, 65, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.6),
        inset 0 -1px 2px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.y2k-nav-item:hover {
    background:
        radial-gradient(ellipse 90% 70% at 25% 25%,
            rgba(0, 255, 65, 1) 0%,
            rgba(0, 230, 60, 0.9) 25%,
            rgba(0, 200, 50, 0.8) 50%,
            rgba(0, 180, 45, 0.7) 75%,
            rgba(0, 160, 40, 0.6) 100%),
        radial-gradient(ellipse 70% 50% at 85% 75%,
            rgba(0, 255, 65, 0.4) 0%,
            rgba(0, 200, 50, 0.3) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00ff41 0%,
            #00e63a 25%,
            #00c234 50%,
            #00a82e 75%,
            #008e28 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.4),
        0 3px 8px rgba(0, 255, 65, 0.3),
        inset 0 3px 6px rgba(255, 255, 255, 0.5),
        inset 0 -3px 6px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.7),
        inset 0 -1px 2px rgba(0, 0, 0, 0.5);
}

.y2k-nav-item.active {
    background:
        radial-gradient(ellipse 90% 70% at 25% 25%,
            rgba(0, 255, 65, 1) 0%,
            rgba(0, 230, 60, 0.9) 25%,
            rgba(0, 200, 50, 0.8) 50%,
            rgba(0, 180, 45, 0.7) 75%,
            rgba(0, 160, 40, 0.6) 100%),
        radial-gradient(ellipse 70% 50% at 85% 75%,
            rgba(0, 255, 65, 0.4) 0%,
            rgba(0, 200, 50, 0.3) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00ff41 0%,
            #00e63a 25%,
            #00c234 50%,
            #00a82e 75%,
            #008e28 100%);
    color: var(--text-primary);
    text-shadow: 1px 1px 0 var(--text-primary);
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.4),
        0 3px 8px rgba(0, 255, 65, 0.3),
        inset 0 3px 6px rgba(255, 255, 255, 0.5),
        inset 0 -3px 6px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.7),
        inset 0 -1px 2px rgba(0, 0, 0, 0.5);
    transform: translateY(-1px);
}

.y2k-nav-item i {
    font-size: 12px;
    width: 16px;
    text-align: center;
    color: var(--accent-blue);
}

.y2k-system-status {
    margin-top: 20px;
    padding: 12px;
    background: var(--panel-gradient);
    border: 2px solid;
    border-color: var(--text-primary) var(--frame-dark) var(--frame-dark) var(--text-primary);
    box-shadow: inset 1px 1px 0 var(--frame-dark), inset -1px -1px 0 var(--text-primary);
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.6;
}

.y2k-system-status div {
    margin-bottom: 4px;
}

.y2k-system-status div:last-child {
    margin-bottom: 0;
}

/* Content Area */
.y2k-content-area {
    flex: 1;
    padding: 20px;
    background: var(--bg-metal);
    overflow-y: auto;
}

.y2k-content-section {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.y2k-content-section.active {
    display: block;
}

.y2k-section-header {
    background: var(--panel-gradient);
    border: 2px solid;
    border-color: var(--text-primary) var(--frame-dark) var(--frame-dark) var(--text-primary);
    border-radius: 0;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: inset 1px 1px 0 var(--text-primary), inset -1px -1px 0 var(--frame-dark);
}

.y2k-section-title {
    font-family: 'VT323', 'Press Start 2P', 'Retro', 'Space Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-blue);
    text-shadow: 1px 1px 0 var(--text-primary);
}

.y2k-section-controls {
    display: flex;
    gap: 8px;
}

.y2k-section-controls button {
    padding: 6px 12px;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 255, 65, 0.95) 0%,
            rgba(0, 230, 60, 0.85) 30%,
            rgba(0, 200, 50, 0.75) 60%,
            rgba(0, 180, 45, 0.65) 80%,
            rgba(0, 160, 40, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.3) 0%,
            rgba(0, 200, 50, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00ff41 0%,
            #00e63a 25%,
            #00c234 50%,
            #00a82e 75%,
            #008e28 100%);
    border: none;
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 2px 6px rgba(0, 255, 65, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.6),
        inset 0 -1px 2px rgba(0, 0, 0, 0.4);
    font-family: 'MS Sans Serif', sans-serif;
    position: relative;
    overflow: hidden;
}

.y2k-section-controls button:hover {
    background:
        radial-gradient(ellipse 90% 70% at 25% 25%,
            rgba(0, 255, 65, 1) 0%,
            rgba(0, 230, 60, 0.9) 25%,
            rgba(0, 200, 50, 0.8) 50%,
            rgba(0, 180, 45, 0.7) 75%,
            rgba(0, 160, 40, 0.6) 100%),
        radial-gradient(ellipse 70% 50% at 85% 75%,
            rgba(0, 255, 65, 0.4) 0%,
            rgba(0, 200, 50, 0.3) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00ff41 0%,
            #00e63a 25%,
            #00c234 50%,
            #00a82e 75%,
            #008e28 100%);
    transform: scale(1.05) translateY(-1px);
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.4),
        0 3px 8px rgba(0, 255, 65, 0.3),
        inset 0 3px 6px rgba(255, 255, 255, 0.5),
        inset 0 -3px 6px rgba(0, 0, 0, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.7),
        inset 0 -1px 2px rgba(0, 0, 0, 0.5);
}

.y2k-section-controls button:active {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 255, 65, 0.8) 0%,
            rgba(0, 230, 60, 0.7) 30%,
            rgba(0, 200, 50, 0.6) 60%,
            rgba(0, 180, 45, 0.5) 80%,
            rgba(0, 160, 40, 0.4) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(0, 255, 65, 0.2) 0%,
            rgba(0, 200, 50, 0.1) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00ff41 0%,
            #00e63a 25%,
            #00c234 50%,
            #00a82e 75%,
            #008e28 100%);
    transform: scale(0.95) translateY(1px);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 1px 4px rgba(0, 255, 65, 0.2),
        inset 0 4px 8px rgba(0, 0, 0, 0.4),
        inset 0 -1px 2px rgba(255, 255, 255, 0.3),
        inset 0 2px 4px rgba(0, 0, 0, 0.5),
        inset 0 -2px 4px rgba(255, 255, 255, 0.2);
}

/* Vision Section */
.y2k-vision-content {
    background: var(--bg-metal);
    border: 2px solid;
    border-color: var(--text-primary) var(--frame-dark) var(--frame-dark) var(--text-primary);
    padding: 20px;
    box-shadow: inset 1px 1px 0 var(--frame-dark), inset -1px -1px 0 var(--text-primary);
}

.y2k-vision-content p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.y2k-vision-content p:last-child {
    margin-bottom: 0;
}

/* Gallery Section */
.y2k-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.y2k-gallery-item {
    background: var(--bg-metal);
    border: 2px solid;
    border-color: var(--text-primary) var(--frame-dark) var(--frame-dark) var(--text-primary);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: inset 1px 1px 0 var(--frame-dark), inset -1px -1px 0 var(--text-primary);
}

.y2k-gallery-item:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 1px 1px 0 var(--frame-dark),
        inset -1px -1px 0 var(--text-primary),
        0 4px 8px rgba(0, 0, 0, 0.3);
}

.y2k-gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-bottom: 1px solid var(--frame-dark);
}

.y2k-gallery-item .caption {
    padding: 12px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--text-primary);
}

/* Protocol Section */
.y2k-protocol-info {
    background: var(--bg-metal);
    border: 2px solid;
    border-color: var(--text-primary) var(--frame-dark) var(--frame-dark) var(--text-primary);
    padding: 20px;
    box-shadow: inset 1px 1px 0 var(--frame-dark), inset -1px -1px 0 var(--text-primary);
}

.y2k-protocol-info h3 {
    font-family: 'VT323', 'Press Start 2P', 'Retro', 'Space Mono', monospace;
    font-size: 14px;
    color: var(--accent-blue);
    margin-bottom: 12px;
    text-shadow: 1px 1px 0 var(--text-primary);
}

.y2k-protocol-info p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.y2k-protocol-info .status {
    display: inline-block;
    padding: 4px 8px;
    background: linear-gradient(135deg, var(--accent-green) 0%, #00cc00 100%);
    border: 2px solid;
    border-color: var(--text-primary) var(--frame-dark) var(--frame-dark) var(--text-primary);
    color: var(--text-primary);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    box-shadow: inset 1px 1px 0 var(--text-primary), inset -1px -1px 0 var(--frame-dark);
}

/* Network Section */
.y2k-network-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.y2k-stat-card {
    background: var(--bg-metal);
    border: 2px solid;
    border-color: var(--text-primary) var(--frame-dark) var(--frame-dark) var(--text-primary);
    padding: 16px;
    text-align: center;
    box-shadow: inset 1px 1px 0 var(--frame-dark), inset -1px -1px 0 var(--text-primary);
}

.y2k-stat-card .value {
    font-family: 'VT323', 'Press Start 2P', 'Retro', 'Space Mono', monospace;
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-blue);
    text-shadow: 1px 1px 0 var(--text-primary);
    margin-bottom: 8px;
}

.y2k-stat-card .label {
    font-family: 'Share Tech Mono', monospace;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Terminal Section */
.y2k-terminal-window {
    background: var(--frame-dark);
    border: 2px solid;
    border-color: var(--text-primary) var(--frame-dark) var(--frame-dark) var(--text-primary);
    padding: 16px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: var(--accent-green);
    height: 300px;
    overflow-y: auto;
    position: relative;
    box-shadow: inset 1px 1px 0 var(--frame-dark), inset -1px -1px 0 var(--text-primary);
}

.y2k-terminal-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 255, 0, 0.03) 2px,
            rgba(0, 255, 0, 0.03) 4px);
    pointer-events: none;
}

.y2k-terminal-line {
    margin-bottom: 4px;
    animation: text-flicker 0.1s ease-in-out;
    position: relative;
    z-index: 1;
}

.y2k-terminal-line .prompt {
    color: var(--accent-blue);
}

.y2k-terminal-line .command {
    color: var(--text-primary);
}

.y2k-terminal-line .output {
    color: var(--accent-green);
}

.y2k-terminal-line .error {
    color: var(--y2k-red);
}

.y2k-terminal-cursor {
    display: inline-block;
    width: 8px;
    height: 12px;
    background: var(--accent-green);
    animation: cursor-blink 1s infinite;
    margin-left: 2px;
}

/* About Section */
.y2k-about-content {
    background: var(--bg-metal);
    border: 2px solid;
    border-color: var(--text-primary) var(--frame-dark) var(--frame-dark) var(--text-primary);
    padding: 20px;
    box-shadow: inset 1px 1px 0 var(--frame-dark), inset -1px -1px 0 var(--text-primary);
}

.y2k-about-content h3 {
    font-family: 'VT323', 'Press Start 2P', 'Retro', 'Space Mono', monospace;
    font-size: 16px;
    color: var(--accent-blue);
    margin-bottom: 16px;
    text-shadow: 1px 1px 0 var(--text-primary);
}

.y2k-about-content p {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

.y2k-about-content .contact-info {
    margin-top: 20px;
    padding: 16px;
    background: var(--text-primary);
    border: 2px solid;
    border-color: var(--text-primary) var(--frame-dark) var(--frame-dark) var(--text-primary);
    box-shadow: inset 1px 1px 0 var(--frame-dark), inset -1px -1px 0 var(--text-primary);
}

.y2k-about-content .contact-info h4 {
    font-family: 'VT323', 'Press Start 2P', 'Retro', 'Space Mono', monospace;
    font-size: 12px;
    color: var(--accent-blue);
    margin-bottom: 8px;
    text-shadow: 1px 1px 0 var(--text-primary);
}

.y2k-about-content .contact-info p {
    font-size: 11px;
    margin-bottom: 4px;
    color: var(--text-muted);
}

/* Footer */
.y2k-app-footer {
    background: var(--panel-gradient);
    border-top: 2px solid var(--frame-dark);
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Share Tech Mono', monospace;
    font-size: 10px;
    color: var(--text-muted);
    box-shadow: inset 0 1px 0 var(--text-primary);
}

.y2k-footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.y2k-footer-right a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px;
    border: 1px solid transparent;
}

.y2k-footer-right a:hover {
    color: var(--accent-green);
    border-color: var(--frame-dark);
    background: var(--text-primary);
}

.y2k-footer-right i {
    font-size: 14px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes text-flicker {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes cursor-blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Hide scrollbar for all elements */
.y2k-content-area::-webkit-scrollbar {
    display: none;
}

.y2k-content-area::-webkit-scrollbar-track {
    display: none;
}

.y2k-content-area::-webkit-scrollbar-thumb {
    display: none;
}

.y2k-content-area::-webkit-scrollbar-thumb:hover {
    display: none;
}

.y2k-terminal-window::-webkit-scrollbar {
    display: none;
}

.y2k-terminal-window::-webkit-scrollbar-track {
    display: none;
}

.y2k-terminal-window::-webkit-scrollbar-thumb {
    display: none;
}

.y2k-terminal-window::-webkit-scrollbar-thumb:hover {
    display: none;
}

/* Metallic Light Effects - No animation needed for realistic highlights */

/* Responsive Design */
@media (min-width: 1200px) {
    .y2k-video-container-full {
        padding: 50px;
    }

    .y2k-video-full-content {
        width: 70vh;
        height: 70vh;
        max-width: 70vw;
        max-height: 70vw;
    }
}

@media (max-width: 1024px) {
    .y2k-video-container-full {
        padding: 35px;
    }

    .y2k-video-full-content {
        width: 75vh;
        height: 75vh;
        max-width: 75vw;
        max-height: 75vw;
    }

    .y2k-image-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .y2k-bg-image .bg-image {
        filter: brightness(0.5) contrast(1.1) saturate(0.85);
    }

    .y2k-bg-image::after {
        background:
            radial-gradient(ellipse 80% 60% at 20% 30%,
                rgba(26, 26, 26, 0.25) 0%,
                rgba(0, 0, 0, 0.4) 50%,
                rgba(0, 0, 0, 0.5) 100%),
            linear-gradient(135deg,
                rgba(0, 0, 0, 0.2) 0%,
                rgba(26, 26, 26, 0.3) 50%,
                rgba(0, 0, 0, 0.4) 100%);
    }

    .y2k-main-container {
        width: 100%;
        height: 100%;
    }

    .y2k-header-navbar {
        padding: 10px 15px;
        position: absolute;
        top: 10px;
        left: 0;
        right: 0;
        margin: 0 15px;
        grid-template-columns: 1fr auto 1fr;
        gap: 10px;
        /* Floating header untuk mobile */
    }

    .y2k-navbar-logo {
        max-height: 35px;
        max-width: 100px;
    }

    .y2k-navbar-text {
        max-height: 35px;
        max-width: 200px;
    }

    .y2k-video-container-full {
        padding: 30px;
        padding-bottom: 200px;
        gap: 24px;
    }

    .y2k-video-full-content {
        width: min(92vw, 520px);
        padding: 24px 18px;
    }

    /* Logo image responsive styles removed - using text logo instead */

    .y2k-luma-logo h1 {
        font-size: 22px;
        letter-spacing: 3px;
    }

    .y2k-navbar-content {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .y2k-nav-btn {
        width: 32px;
        height: 32px;
    }

    .y2k-nav-btn i {
        font-size: 12px;
    }

    .y2k-video-container-full {
        height: auto;
        width: 100vw;
        padding: 20px 16px 160px;
        margin-top: -60px;
        padding-top: 60px;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        /* Memastikan lebar penuh untuk mobile */
    }

    .y2k-video-full-content {
        width: min(94vw, 480px);
        padding: 20px 16px;
        font-size: 14px;
    }

    .y2k-video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 15px;
        max-width: 100%;
    }

    .y2k-video-box {
        max-width: 350px;
        width: 350px;
        height: 350px;
        border-radius: 8px;
        padding: 15px;
    }

    .y2k-video-header {
        padding: 12px 15px;
    }

    .y2k-video-title span {
        font-size: 14px;
    }



    .y2k-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 15px;
    }

    .y2k-meme-img {
        padding: 8px;
        transform: scale(1.05);
        border-radius: 10px;
    }

    .y2k-hero-model {
        width: min(70vw, 520px);
        height: min(70vw, 520px);
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%) translateY(10%) scale(2) rotateX(var(--rotateX, 0deg)) rotateY(var(--rotateY, 0deg)) rotateZ(var(--rotateZ, 0deg));
        transform-style: preserve-3d;
        will-change: transform;
        z-index: 4;
        pointer-events: none;
    }
}

@media (max-width: 480px) {
    .y2k-bg-image .bg-image {
        filter: brightness(0.45) contrast(1.15) saturate(0.8);
    }

    .y2k-bg-image::after {
        background:
            radial-gradient(ellipse 80% 60% at 20% 30%,
                rgba(26, 26, 26, 0.3) 0%,
                rgba(0, 0, 0, 0.5) 50%,
                rgba(0, 0, 0, 0.6) 100%),
            linear-gradient(135deg,
                rgba(0, 0, 0, 0.25) 0%,
                rgba(26, 26, 26, 0.4) 50%,
                rgba(0, 0, 0, 0.5) 100%);
    }

    .y2k-video-container-full {
        padding: 10px;
    }

    .y2k-video-full-content {
        width: 80vh;
        height: 80vh;
        max-width: 80vw;
        max-height: 80vw;
    }

    .y2k-image-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 10px;
    }

    .y2k-meme-img {
        transform: scale(1.02);
        padding: 6px;
    }

    .meme-image {
        border-radius: 2px;
    }

    .y2k-single-meme {
        padding: 30px 15px;
    }

    .y2k-single-meme-content {
        padding: 15px;
    }

    .single-meme-image {
        max-width: 100%;
    }

    .y2k-marquee-text {
        font-size: 14px;
    }

    /* Modal Responsive */
    .y2k-modal-window {
        width: 95vw;
        height: 80vh;
        max-width: none;
        max-height: none;
    }

    .y2k-modal-header {
        padding: 10px 15px;
    }

    .y2k-modal-title {
        font-size: 12px;
    }

    .y2k-modal-content {
        padding: 15px;
    }

    .y2k-modal-footer {
        padding: 12px 15px;
        flex-direction: column;
        gap: 10px;
    }

    .y2k-modal-actions {
        width: 100%;
        justify-content: center;
    }

    .y2k-modal-action-btn {
        padding: 6px 12px;
        font-size: 10px;
    }

    /* DexScreener Modal Responsive */
    .y2k-dex-modal {
        width: 95%;
        max-width: 95%;
        max-height: 90vh;
    }

    .y2k-dex-content {
        min-height: 400px;
    }

    .y2k-dex-chart-container {
        min-height: 400px;
    }

    .y2k-dex-iframe {
        min-height: 400px;
    }

    /* Footer Task Bar Responsive */
    .y2k-footer-taskbar {
        height: 50px;
        padding: 0 15px;
        bottom: 5px;
        width: calc(100% - 2px);
        max-width: none;
        border: 2px solid rgba(0, 255, 65, 0.6);
        margin: 0 1px;
    }

    .y2k-social-media {
        gap: 12px;
    }

    .y2k-social-item {
        width: 36px;
        height: 36px;
        padding: 8px;
        font-size: 14px;
    }

    /* Desktop Large Footer Responsive */
    @media (min-width: 1200px) {
        .y2k-footer-taskbar {
            width: calc(100% - 2px);
            padding: 0 30px;
            margin: 0 1px;
        }
    }

    /* Tablet Footer Responsive */
    @media (max-width: 768px) {
        .y2k-footer-taskbar {
            width: calc(100% - 2px);
            padding: 0 20px;
            border: 2px solid rgba(0, 255, 65, 0.6);
            margin: 0 1px;
        }
    }

    /* Responsive Font Sizes for GROG Character */
    .y2k-marquee-text {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .y2k-navbar-logo {
        max-height: 30px;
        max-width: 80px;
    }

    .y2k-navbar-text {
        max-height: 30px;
        max-width: 150px;
    }

    body {
        font-size: 14px;
    }

    body {
        margin-bottom: 60px;
        /* Less space on mobile */
    }

    .y2k-main-container {
        padding-bottom: 20px;
        /* Reduced since taskbar is outside */
    }

    .y2k-buy-button {
        padding: 6px 12px;
    }

    .y2k-buy-button span {
        font-size: 10px;
    }

    .y2k-taskbar-center {
        display: none;
    }

    .y2k-ca-text {
        max-width: 80px;
        font-size: 9px;
        letter-spacing: 0.2px;
    }

    .y2k-ca-label {
        font-size: 10px;
        letter-spacing: 0.3px;
    }

    .y2k-ca-section {
        max-width: 120px;
        padding: 6px 10px;
    }

    .y2k-ca-section {
        padding: 6px 10px;
    }

    .y2k-ca-label span {
        display: none;
    }

    .y2k-taskbar-app {
        padding: 4px 8px;
    }

    .y2k-taskbar-app span {
        font-size: 10px;
        letter-spacing: 0.3px;
    }

    .y2k-tray-item {
        padding: 3px 6px;
    }

    .y2k-tray-item span {
        font-size: 8px;
    }

    /* Preloader responsive */

}

.y2k-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 4;
    text-align: center;
}

.y2k-hero-title {
    font-family: 'Press Start 2P', 'VT323', 'Retro', 'Space Mono', monospace;
    font-size: clamp(28px, 6vw, 48px);
    letter-spacing: 6px;
    color: #00f400;
    text-transform: uppercase;
    text-shadow:
        0 0 12px rgba(0, 244, 0, 0.6),
        0 0 24px rgba(0, 244, 0, 0.3);
}

.y2k-hero-subtitle {
    font-family: 'Share Tech Mono', monospace;
    font-size: clamp(16px, 3vw, 20px);
    color: #d0ffd0;
    text-shadow: 0 0 10px rgba(0, 244, 0, 0.4);
    letter-spacing: 2px;
}

.y2k-hero-model {
    width: min(70vw, 520px);
    height: min(70vw, 520px);
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) translateY(10%) scale(2) rotateX(var(--rotateX, 0deg)) rotateY(var(--rotateY, 0deg)) rotateZ(var(--rotateZ, 0deg));
    transform-style: preserve-3d;
    will-change: transform;
    z-index: 4;
    pointer-events: none;
}

#snorbo-model {
    width: 100%;
    height: 100%;
    --poster-color: transparent;
    background-color: transparent;
    cursor: grab;
}

.y2k-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    margin-top: -40px;
}

@media (max-width: 768px) {
    .y2k-video-container-full {
        padding: 30px;
        padding-bottom: 200px;
        gap: 24px;
    }

    .y2k-hero-model {
        width: min(85vw, 420px);
        height: min(85vw, 420px);
        bottom: 24px;
        transform: translateX(-50%) translateY(10%) scale(1.8);
    }

    .y2k-hero-model {
        width: min(90vw, 400px);
        height: min(90vw, 400px);
        bottom: 20px;
        transform: translateX(-50%) translateY(12%) scale(1.8);
    }

    .y2k-hero-model {
        width: min(80vw, 360px);
        height: min(80vw, 360px);
        bottom: 20px;
        transform: translateX(-50%) translateY(12%) scale(1.8);
    }

    .y2k-hero-model {
        width: min(75vw, 340px);
        height: min(75vw, 340px);
        bottom: 18px;
        transform: translateX(-50%) translateY(12%) scale(1.8);
    }
}

.y2k-debug-panel {
    position: fixed;
    top: 100px;
    right: 24px;
    width: 220px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(0, 255, 65, 0.5);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    padding: 16px;
    z-index: 10010;
    font-family: 'Share Tech Mono', monospace;
    color: #d6f4ff;
    backdrop-filter: blur(8px);
    display: grid;
    gap: 10px;
}

.y2k-debug-panel .debug-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    letter-spacing: 1px;
}

.y2k-debug-panel button {
    background: rgba(0, 255, 65, 0.25);
    border: 1px solid rgba(0, 255, 65, 0.5);
    border-radius: 6px;
    color: #e3f7ff;
    padding: 6px 10px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s ease;
}

#debug-panel-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
}

.y2k-debug-panel button:hover {
    background: rgba(0, 230, 60, 0.35);
    border-color: rgba(0, 230, 60, 0.6);
}

.y2k-debug-panel .debug-control {
    display: grid;
    gap: 6px;
}

.y2k-debug-panel label {
    font-size: 12px;
    text-transform: uppercase;
}

.y2k-debug-panel input[type='range'] {
    width: 100%;
}

.y2k-debug-panel .debug-value {
    font-size: 11px;
    color: #9bd5ff;
}

.y2k-debug-panel .debug-actions {
    display: flex;
    justify-content: flex-end;
}

.y2k-debug-panel.hidden {
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .y2k-debug-panel {
        display: none;
    }
}