/* 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;
}

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

/* CSS Variables for Y2K Colors */
:root {
    --bg-metal: #d2d7dd;
    --frame-dark: #444;
    --text-primary: #f0f0f0;
    --text-muted: #999;
    --accent-blue: #0077cc;
    --accent-green: #33ff66;
    --panel-gradient: linear-gradient(to bottom, #c0c0c0, #8ca4c4);
    --y2k-black: #000000;
    --y2k-white: #ffffff;
    --y2k-dark-gray: #333333;
    --y2k-metallic-gray: #c0c0c0;
    --y2k-light-gray: #e0e0e0;
    --y2k-blue: #000080;
    --y2k-cyan: #00ffff;
    --y2k-lime: #00ff00;
    --y2k-magenta: #ff00ff;
    --y2k-yellow: #ffff00;
    --y2k-red: #ff0000;
}

/* 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(--y2k-cyan);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--y2k-blue);
    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: 'Retro', 'MS Sans Serif', 'Microsoft Sans Serif', 'Orbitron', sans-serif;
    background: #000000;
    color: var(--text-primary);
    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 Video */
.y2k-bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.y2k-bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}





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

/* Loading Screen Section */
.y2k-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    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;
}

/* Shimmer Effect for Preloader */
.y2k-preloader::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 191, 255, 0.1) 20%,
            rgba(255, 20, 147, 0.3) 40%,
            rgba(255, 215, 0, 0.4) 50%,
            rgba(255, 20, 147, 0.3) 60%,
            rgba(0, 191, 255, 0.1) 80%,
            transparent 100%);
    animation: shimmer 2.5s infinite;
    z-index: 10002;
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

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

.y2k-preloader.fade-out::before {
    animation: shimmer-fade-out 1s ease-out;
}

@keyframes shimmer-fade-out {
    0% {
        left: -100%;
        opacity: 1;
    }

    50% {
        left: 0%;
        opacity: 0.8;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Preloader Video Container - Full Page */
.y2k-preloader-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.y2k-preloader-video-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Video Container Shimmer Effect */
.y2k-preloader-video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 191, 255, 0.2) 20%,
            rgba(255, 20, 147, 0.4) 50%,
            rgba(0, 191, 255, 0.2) 80%,
            transparent 100%);
    animation: video-shimmer 3s infinite;
    z-index: 10003;
}

@keyframes video-shimmer {
    0% {
        left: -100%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.y2k-preloader-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}





/* ===== 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 */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Main Header Navigation */
.y2k-header-navbar {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 191, 255, 0.95) 0%,
            rgba(135, 206, 250, 0.85) 30%,
            rgba(255, 20, 147, 0.75) 60%,
            rgba(255, 105, 180, 0.65) 80%,
            rgba(255, 182, 193, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(255, 215, 0, 0.3) 0%,
            rgba(255, 165, 0, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00bfff 0%,
            #87ceeb 25%,
            #ff1493 50%,
            #ff69b4 75%,
            #ffb6c1 100%);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    border-radius: 25px;
    box-shadow:
        /* Outer shadow for depth */
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 6px 20px rgba(0, 191, 255, 0.2),
        /* Emboss effect - multiple layers */
        inset 0 8px 16px rgba(255, 255, 255, 0.4),
        inset 0 -8px 16px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4),
        /* Curved surface highlights */
        inset 0 1px 2px rgba(255, 255, 255, 0.8),
        inset 0 -1px 2px rgba(0, 0, 0, 0.5);
    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);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    /* Curved surface effect */
    transform: perspective(1000px) rotateX(2deg);

    /* Initial state - hidden outside page */
    opacity: 0;
    transform: translateY(-100px) scale(0.8) perspective(1000px) rotateX(2deg);
    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) scale(1) perspective(1000px) rotateX(2deg);
}

/* Metallic edge highlights */
.y2k-header-navbar::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: 25px;
    z-index: 1;
    pointer-events: none;
}

/* Metallic surface reflections - will be controlled by JavaScript */
.y2k-header-navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        /* Main light reflection - will be dynamic */
        radial-gradient(circle 100px at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.1) 30%,
            transparent 60%),
        /* Secondary reflection - will be dynamic */
        radial-gradient(circle 80px at var(--mouse-x2, 30%) var(--mouse-y2, 30%),
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.05) 40%,
            transparent 70%);
    border-radius: 25px;
    z-index: 2;
    pointer-events: none;
    transition: background 0.1s ease-out;
}

/* LUMA Logo */
.y2k-luma-logo {
    display: flex;
    align-items: center;
}

.y2k-luma-logo h1 {
    font-family: 'Retro', 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    color: var(--text-primary);
    text-shadow:
        2px 2px 0 rgba(0, 123, 255, 0.8),
        4px 4px 0 rgba(0, 0, 0, 0.5);
    margin: 0;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #007bff, #409eff, #6495ed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 123, 255, 0.3));
}

/* Curved Metal/Plastic Emboss Hover Effect with Enhanced Light */
.y2k-header-navbar:hover {
    background:
        radial-gradient(ellipse 90% 70% at 25% 25%,
            rgba(0, 191, 255, 1) 0%,
            rgba(135, 206, 250, 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(255, 215, 0, 0.4) 0%,
            rgba(255, 165, 0, 0.3) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00bfff 0%,
            #87ceeb 25%,
            #ff1493 50%,
            #ff69b4 75%,
            #ffb6c1 100%);
    box-shadow:
        /* Enhanced outer shadow */
        0 16px 50px rgba(0, 0, 0, 0.4),
        0 8px 25px rgba(0, 191, 255, 0.3),
        0 4px 12px rgba(255, 20, 147, 0.2),
        /* Intensified emboss effect */
        inset 0 10px 20px rgba(255, 255, 255, 0.5),
        inset 0 -10px 20px rgba(0, 0, 0, 0.4),
        inset 0 3px 6px rgba(255, 255, 255, 0.7),
        inset 0 -3px 6px rgba(0, 0, 0, 0.5),
        /* Enhanced curved surface highlights */
        inset 0 2px 3px rgba(255, 255, 255, 0.9),
        inset 0 -2px 3px rgba(0, 0, 0, 0.6);
    transform: perspective(1000px) rotateX(3deg) translateY(-3px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced metallic highlights on hover */
.y2k-header-navbar:hover::before {
    background:
        /* Intensified top edge highlight */
        linear-gradient(180deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.6) 1%,
            rgba(255, 255, 255, 0.3) 3%,
            transparent 8%),
        /* Intensified left edge highlight */
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.4) 2%,
            rgba(255, 255, 255, 0.1) 5%,
            transparent 10%),
        /* Enhanced corner highlights */
        radial-gradient(ellipse 25px 25px at 8% 8%,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.5) 40%,
            transparent 100%),
        radial-gradient(ellipse 25px 25px at 92% 8%,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.5) 40%,
            transparent 100%);
}

.y2k-header-navbar:hover::after {
    background:
        /* Intensified main reflection - dynamic */
        radial-gradient(circle 120px at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(255, 255, 255, 0.5) 0%,
            rgba(255, 255, 255, 0.2) 25%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%),
        /* Intensified secondary reflection - dynamic */
        radial-gradient(circle 100px at var(--mouse-x2, 30%) var(--mouse-y2, 30%),
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.1) 35%,
            rgba(255, 255, 255, 0.05) 60%,
            transparent 80%);
}

.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: 'Retro', 'Orbitron', 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: 8px;
    flex-shrink: 0;
}

.y2k-nav-btn {
    width: 50px;
    height: 50px;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 191, 255, 0.95) 0%,
            rgba(135, 206, 250, 0.85) 30%,
            rgba(255, 20, 147, 0.75) 60%,
            rgba(255, 105, 180, 0.65) 80%,
            rgba(255, 182, 193, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(255, 215, 0, 0.3) 0%,
            rgba(255, 165, 0, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00bfff 0%,
            #87ceeb 25%,
            #ff1493 50%,
            #ff69b4 75%,
            #ffb6c1 100%);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    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.4),
        0 2px 8px rgba(0, 191, 255, 0.3),
        /* Emboss effect */
        inset 0 3px 6px rgba(255, 255, 255, 0.5),
        inset 0 -3px 6px 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);
    font-family: 'Retro', 'Orbitron', monospace;
    font-size: 12px;
    color: var(--text-primary);
    text-shadow: 1px 1px 0 var(--text-primary);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.y2k-nav-btn:hover {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 191, 255, 1) 0%,
            rgba(135, 206, 250, 0.95) 30%,
            rgba(255, 20, 147, 0.85) 60%,
            rgba(255, 105, 180, 0.75) 80%,
            rgba(255, 182, 193, 0.65) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(255, 215, 0, 0.4) 0%,
            rgba(255, 165, 0, 0.3) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00bfff 0%,
            #87ceeb 25%,
            #ff1493 50%,
            #ff69b4 75%,
            #ffb6c1 100%);
    transform: scale(1.05) translateY(-2px);
    border-color: rgba(255, 255, 255, 1);
    box-shadow:
        /* Enhanced outer shadow */
        0 6px 24px rgba(0, 0, 0, 0.5),
        0 3px 12px rgba(0, 191, 255, 0.4),
        /* Enhanced emboss effect */
        inset 0 4px 8px rgba(255, 255, 255, 0.6),
        inset 0 -4px 8px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.5);
}

.y2k-nav-btn:active {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 150, 200, 0.9) 0%,
            rgba(100, 150, 200, 0.8) 30%,
            rgba(200, 15, 120, 0.7) 60%,
            rgba(200, 80, 150, 0.6) 80%,
            rgba(200, 150, 180, 0.5) 100%),
        linear-gradient(135deg,
            #0099cc 0%,
            #6699cc 25%,
            #cc0f99 50%,
            #cc5099 75%,
            #cc96b4 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, 191, 255, 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-nav-btn i {
    font-size: 18px;
    color: #ffffff;
    text-shadow:
        1px 1px 0 rgba(0, 0, 0, 0.5),
        0 0 10px rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Hero Video Section */
.y2k-video-container-full {
    background: #000000;
    padding: 0;
    text-align: center;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin-top: -80px;
    /* Mengurangi margin lebih banyak */
    padding-top: 60px;
    /* Menambah padding atas untuk kompensasi */
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    /* Memastikan lebar penuh melewati container */
    overflow: hidden;
    /* Mencegah scrollbar horizontal */
}

.y2k-video-full-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.y2k-video-full-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    /* Menghilangkan border radius agar video memenuhi penuh */
}



/* Marquee Section - Token Ticker */
.y2k-marquee-section {
    align-items: center;
    background: radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 191, 255, 0.95) 0%,
            rgba(135, 206, 250, 0.85) 30%,
            rgba(255, 20, 147, 0.75) 60%,
            rgba(255, 105, 180, 0.65) 80%,
            rgba(255, 182, 193, 0.55) 100%), radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(255, 215, 0, 0.3) 0%,
            rgba(255, 165, 0, 0.2) 50%,
            transparent 100%), linear-gradient(135deg, #00bfff 0%, #87ceeb 25%, #ff1493 50%, #ff69b4 75%, #ffb6c1 100%);
    padding: 20px 0;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    z-index: 1000;
    border-radius: 0;
    /* Menghilangkan border radius */
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.3),
        0 3px 10px rgba(0, 191, 255, 0.2),
        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);
    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(0, 191, 255, 1) 0%,
            rgba(135, 206, 250, 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(255, 215, 0, 0.4) 0%,
            rgba(255, 165, 0, 0.3) 50%,
            transparent 100%), linear-gradient(135deg, #00bfff 0%, #87ceeb 25%, #ff1493 50%, #ff69b4 75%, #ffb6c1 100%);
    transform: scale(1.02) translateY(-2px);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(0, 191, 255, 0.3),
        inset 0 5px 10px rgba(255, 255, 255, 0.5),
        inset 0 -5px 10px rgba(0, 0, 0, 0.4),
        inset 0 2px 3px rgba(255, 255, 255, 0.7),
        inset 0 -2px 3px rgba(0, 0, 0, 0.5);
}

.y2k-marquee-text {
    font-family: 'Retro', 'Orbitron', monospace;
    font-size: 18px;
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    display: inline-block;
    white-space: nowrap;
    letter-spacing: 2px;
    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 */

/* Featured Video Section */
.y2k-video-row {
    background: transparent;
    padding: 40px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.y2k-video-box {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 191, 255, 0.95) 0%,
            rgba(135, 206, 250, 0.85) 30%,
            rgba(255, 20, 147, 0.75) 60%,
            rgba(255, 105, 180, 0.65) 80%,
            rgba(255, 182, 193, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(255, 215, 0, 0.3) 0%,
            rgba(255, 165, 0, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00bfff 0%,
            #87ceeb 25%,
            #ff1493 50%,
            #ff69b4 75%,
            #ffb6c1 100%);
    border-radius: 20px;
    box-shadow:
        /* Outer shadow for depth */
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 191, 255, 0.3),
        /* Emboss effect - multiple layers */
        inset 0 6px 12px rgba(255, 255, 255, 0.4),
        inset 0 -6px 12px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4),
        /* Curved surface highlights */
        inset 0 1px 2px rgba(255, 255, 255, 0.8),
        inset 0 -1px 2px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    max-width: 500px;
    width: 500px;
    height: 500px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    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);
    backdrop-filter: blur(5px);
    -webkit-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(0, 191, 255, 1) 0%,
            rgba(135, 206, 250, 0.95) 30%,
            rgba(255, 20, 147, 0.85) 60%,
            rgba(255, 105, 180, 0.75) 80%,
            rgba(255, 182, 193, 0.65) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(255, 215, 0, 0.4) 0%,
            rgba(255, 165, 0, 0.3) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00bfff 0%,
            #87ceeb 25%,
            #ff1493 50%,
            #ff69b4 75%,
            #ffb6c1 100%);
    transform: scale(1.02) translateY(-3px);
    border-color: rgba(255, 255, 255, 1);
    box-shadow:
        /* Enhanced outer shadow */
        0 12px 48px rgba(0, 0, 0, 0.5),
        0 6px 24px rgba(0, 191, 255, 0.4),
        /* Enhanced emboss effect */
        inset 0 8px 16px rgba(255, 255, 255, 0.5),
        inset 0 -8px 16px rgba(0, 0, 0, 0.4),
        inset 0 3px 6px rgba(255, 255, 255, 0.7),
        inset 0 -3px 6px rgba(0, 0, 0, 0.5),
        /* Enhanced surface highlights */
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
    transform: translateY(-2px);
}



/* Meme Gallery Section */
.y2k-image-grid-section {
    background: transparent;
    padding: 60px 20px;
    margin-bottom: 100px;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.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(0, 191, 255, 0.95) 0%,
            rgba(135, 206, 250, 0.85) 30%,
            rgba(255, 20, 147, 0.75) 60%,
            rgba(255, 105, 180, 0.65) 80%,
            rgba(255, 182, 193, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(255, 215, 0, 0.3) 0%,
            rgba(255, 165, 0, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00bfff 0%,
            #87ceeb 25%,
            #ff1493 50%,
            #ff69b4 75%,
            #ffb6c1 100%);
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    border: none;
    border-radius: 20px;
    box-shadow:
        /* Outer shadow for depth */
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 4px 16px rgba(0, 191, 255, 0.3),
        /* Emboss effect - multiple layers */
        inset 0 6px 12px rgba(255, 255, 255, 0.4),
        inset 0 -6px 12px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4),
        /* Curved surface highlights */
        inset 0 1px 2px rgba(255, 255, 255, 0.8),
        inset 0 -1px 2px rgba(0, 0, 0, 0.5);
    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);
    backdrop-filter: blur(10px);
    -webkit-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: 20px;
}

.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: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 8px 15px;
    backdrop-filter: blur(10px);
    -webkit-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: 'Retro', 'Orbitron', monospace;
    font-size: 11px;
    font-weight: 600;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

/* 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: 'Retro', 'Orbitron', monospace;
    font-size: 10px;
    font-weight: 500;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
    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, 191, 255, 0.3);
    border: 1px solid rgba(0, 191, 255, 0.5);
    border-radius: 6px;
    padding: 4px 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-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, 191, 255, 0.5);
    border-color: rgba(0, 191, 255, 0.8);
    transform: scale(1.1);
}

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

/* Taskbar hover effects */
.y2k-footer-taskbar:hover {
    transform: translateX(-50%) perspective(1000px) rotateX(-1deg) scale(1.02);
    box-shadow:
        /* Enhanced outer shadow */
        0 12px 48px rgba(0, 0, 0, 0.5),
        0 6px 24px rgba(0, 191, 255, 0.4),
        /* Enhanced emboss effect */
        inset 0 8px 16px rgba(255, 255, 255, 0.5),
        inset 0 -8px 16px rgba(0, 0, 0, 0.4),
        inset 0 3px 6px rgba(255, 255, 255, 0.7),
        inset 0 -3px 6px rgba(0, 0, 0, 0.5),
        /* Enhanced surface highlights */
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(0, 0, 0, 0.6);
}

.y2k-footer-taskbar:hover::before {
    background:
        /* Enhanced top edge highlight */
        linear-gradient(180deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(255, 255, 255, 0.5) 3%,
            transparent 10%),
        /* Enhanced left edge highlight */
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.7) 0%,
            rgba(255, 255, 255, 0.3) 4%,
            transparent 12%),
        /* Enhanced corner highlights */
        radial-gradient(ellipse 25px 25px at 10% 10%,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%),
        radial-gradient(ellipse 25px 25px at 90% 10%,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            transparent 100%);
}

.y2k-buy-button {
    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(255, 255, 255, 0.8);
    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.4),
        0 2px 8px rgba(0, 255, 0, 0.3),
        /* Emboss effect */
        inset 0 3px 6px rgba(255, 255, 255, 0.5),
        inset 0 -3px 6px 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);
    backdrop-filter: blur(5px);
    -webkit-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.5),
        0 3px 12px rgba(0, 255, 0, 0.4),
        /* Enhanced emboss effect */
        inset 0 4px 8px rgba(255, 255, 255, 0.6),
        inset 0 -4px 8px rgba(0, 0, 0, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.8),
        inset 0 -2px 4px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 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(255, 255, 255, 0.8);
    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);
    backdrop-filter: blur(10px);
    -webkit-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: 'Retro', 'Orbitron', 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: 'Retro', 'Orbitron', monospace;
    font-size: 12px;
    font-weight: 700;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

.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(255, 255, 255, 0.3);
    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);
    backdrop-filter: blur(10px);
    -webkit-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: 'Retro', 'Orbitron', monospace;
    font-size: 11px;
    font-weight: 600;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

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

.y2k-system-tray {
    display: flex;
    align-items: center;
    gap: 15px;
}

.y2k-tray-item {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(255, 255, 255, 0.15) 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.12) 0%,
            rgba(255, 255, 255, 0.08) 25%,
            rgba(255, 255, 255, 0.04) 50%,
            rgba(255, 255, 255, 0.02) 75%,
            transparent 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow:
        /* Subtle emboss effect */
        inset 0 1px 3px rgba(255, 255, 255, 0.3),
        inset 0 -1px 3px 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-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: 'Retro', 'Orbitron', 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(0, 191, 255, 0.95) 0%,
            rgba(135, 206, 250, 0.85) 30%,
            rgba(255, 20, 147, 0.75) 60%,
            rgba(255, 105, 180, 0.65) 80%,
            rgba(255, 182, 193, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(255, 215, 0, 0.3) 0%,
            rgba(255, 165, 0, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00bfff 0%,
            #87ceeb 25%,
            #ff1493 50%,
            #ff69b4 75%,
            #ffb6c1 100%);
    border: 3px solid rgba(255, 255, 255, 0.8);
    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.4),
        0 3px 12px rgba(0, 191, 255, 0.3),
        /* Emboss effect - multiple layers */
        inset 0 4px 8px rgba(255, 255, 255, 0.4),
        inset 0 -4px 8px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.4),
        /* Curved surface highlights */
        inset 0 1px 2px rgba(255, 255, 255, 0.8),
        inset 0 -1px 2px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.y2k-meme-img:hover {
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 191, 255, 1) 0%,
            rgba(135, 206, 250, 0.95) 30%,
            rgba(255, 20, 147, 0.85) 60%,
            rgba(255, 105, 180, 0.75) 80%,
            rgba(255, 182, 193, 0.65) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(255, 215, 0, 0.4) 0%,
            rgba(255, 165, 0, 0.3) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00bfff 0%,
            #87ceeb 25%,
            #ff1493 50%,
            #ff69b4 75%,
            #ffb6c1 100%);
    transform: scale(1.05) translateY(-3px);
    border-color: rgba(255, 255, 255, 1);
    box-shadow:
        /* Enhanced outer shadow */
        0 12px 36px rgba(0, 0, 0, 0.5),
        0 6px 18px rgba(0, 191, 255, 0.4),
        /* Enhanced emboss effect */
        inset 0 6px 12px rgba(255, 255, 255, 0.5),
        inset 0 -6px 12px rgba(0, 0, 0, 0.4),
        inset 0 3px 6px rgba(255, 255, 255, 0.7),
        inset 0 -3px 6px rgba(0, 0, 0, 0.5),
        /* Enhanced surface highlights */
        inset 0 2px 4px rgba(255, 255, 255, 0.9),
        inset 0 -2px 4px rgba(0, 0, 0, 0.6);
}

.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: 90%;
    max-width: 800px;
    max-height: 80vh;
    background: radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 191, 255, 0.95) 0%,
            rgba(135, 206, 250, 0.85) 30%,
            rgba(255, 20, 147, 0.75) 60%,
            rgba(255, 105, 180, 0.65) 80%,
            rgba(255, 182, 193, 0.55) 100%), radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(255, 215, 0, 0.3) 0%,
            rgba(255, 165, 0, 0.2) 50%,
            transparent 100%), linear-gradient(135deg, #00bfff 0%, #87ceeb 25%, #ff1493 50%, #ff69b4 75%, #ffb6c1 100%);
    border-radius: 16px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 10px 30px rgba(0, 191, 255, 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;
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

/* 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: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.y2k-modal-btn {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.8);
}

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

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

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

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

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

.y2k-modal-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-family: 'Retro', 'Orbitron', monospace;
    font-size: 14px;
    font-weight: 600;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.5);
}

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

.y2k-modal-content {
    flex: 1;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.y2k-modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 191, 255, 0.2);
    transition: all 0.3s ease;
}

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

.y2k-modal-footer {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.y2k-modal-info {
    color: #ffffff;
    font-family: 'Retro', 'Orbitron', monospace;
    font-size: 12px;
    opacity: 0.8;
}

.y2k-modal-actions {
    display: flex;
    gap: 10px;
}

.y2k-modal-action-btn {
    background: radial-gradient(ellipse 80% 60% at 20% 30%,
            rgba(0, 191, 255, 0.95) 0%,
            rgba(135, 206, 250, 0.85) 30%,
            rgba(255, 20, 147, 0.75) 60%,
            rgba(255, 105, 180, 0.65) 80%,
            rgba(255, 182, 193, 0.55) 100%);
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    color: #ffffff;
    font-family: 'Retro', 'Orbitron', monospace;
    font-size: 11px;
    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, 191, 255, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3);
}

.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, 191, 255, 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);
}

/* 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: 'Retro', 'Orbitron', 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;
}





/* Custom Scrollbar for Main Container */
.y2k-main-container::-webkit-scrollbar {
    width: 16px;
}

.y2k-main-container::-webkit-scrollbar-track {
    background: var(--frame-dark);
    border: 2px solid var(--text-primary);
    box-shadow: inset 1px 1px 0 var(--text-primary), inset -1px -1px 0 var(--frame-dark);
}

.y2k-main-container::-webkit-scrollbar-thumb {
    background: var(--panel-gradient);
    border: 2px solid var(--text-primary);
    box-shadow: inset 1px 1px 0 var(--text-primary), inset -1px -1px 0 var(--frame-dark);
    border-radius: 4px;
}

.y2k-main-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--text-muted) 0%, var(--text-primary) 100%);
}

.y2k-main-container::-webkit-scrollbar-corner {
    background: var(--frame-dark);
    border: 2px solid var(--text-primary);
}

/* Show custom scrollbar only for main container */
.y2k-main-container {
    scrollbar-width: auto;
    /* Firefox */
    -ms-overflow-style: auto;
    /* Internet Explorer 10+ */
}

.y2k-main-container::-webkit-scrollbar {
    display: block;
    /* Chrome, Safari, Opera */
    width: 16px;
}

/* 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: 'Retro', 'Orbitron', 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, 191, 255, 0.95) 0%,
            rgba(135, 206, 250, 0.85) 30%,
            rgba(255, 20, 147, 0.75) 60%,
            rgba(255, 105, 180, 0.65) 80%,
            rgba(255, 182, 193, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(255, 215, 0, 0.3) 0%,
            rgba(255, 165, 0, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00bfff 0%,
            #87ceeb 25%,
            #ff1493 50%,
            #ff69b4 75%,
            #ffb6c1 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, 191, 255, 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, 191, 255, 1) 0%,
            rgba(135, 206, 250, 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(255, 215, 0, 0.4) 0%,
            rgba(255, 165, 0, 0.3) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00bfff 0%,
            #87ceeb 25%,
            #ff1493 50%,
            #ff69b4 75%,
            #ffb6c1 100%);
    transform: scale(1.1) translateY(-1px);
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.4),
        0 3px 8px rgba(0, 191, 255, 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(255, 215, 0, 0.4) 0%,
            rgba(255, 165, 0, 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, 191, 255, 0.8) 0%,
            rgba(135, 206, 250, 0.7) 30%,
            rgba(255, 20, 147, 0.6) 60%,
            rgba(255, 105, 180, 0.5) 80%,
            rgba(255, 182, 193, 0.4) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(255, 215, 0, 0.2) 0%,
            rgba(255, 165, 0, 0.1) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00bfff 0%,
            #87ceeb 25%,
            #ff1493 50%,
            #ff69b4 75%,
            #ffb6c1 100%);
    transform: scale(0.95) translateY(1px);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 1px 4px rgba(0, 191, 255, 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: 'Retro', 'Orbitron', 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, 191, 255, 0.95) 0%,
            rgba(135, 206, 250, 0.85) 30%,
            rgba(255, 20, 147, 0.75) 60%,
            rgba(255, 105, 180, 0.65) 80%,
            rgba(255, 182, 193, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(255, 215, 0, 0.3) 0%,
            rgba(255, 165, 0, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00bfff 0%,
            #87ceeb 25%,
            #ff1493 50%,
            #ff69b4 75%,
            #ffb6c1 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, 191, 255, 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, 191, 255, 1) 0%,
            rgba(135, 206, 250, 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(255, 215, 0, 0.4) 0%,
            rgba(255, 165, 0, 0.3) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00bfff 0%,
            #87ceeb 25%,
            #ff1493 50%,
            #ff69b4 75%,
            #ffb6c1 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.4),
        0 3px 8px rgba(0, 191, 255, 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, 191, 255, 1) 0%,
            rgba(135, 206, 250, 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(255, 215, 0, 0.4) 0%,
            rgba(255, 165, 0, 0.3) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00bfff 0%,
            #87ceeb 25%,
            #ff1493 50%,
            #ff69b4 75%,
            #ffb6c1 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, 191, 255, 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: 'Retro', 'Orbitron', 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, 191, 255, 0.95) 0%,
            rgba(135, 206, 250, 0.85) 30%,
            rgba(255, 20, 147, 0.75) 60%,
            rgba(255, 105, 180, 0.65) 80%,
            rgba(255, 182, 193, 0.55) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(255, 215, 0, 0.3) 0%,
            rgba(255, 165, 0, 0.2) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00bfff 0%,
            #87ceeb 25%,
            #ff1493 50%,
            #ff69b4 75%,
            #ffb6c1 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, 191, 255, 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, 191, 255, 1) 0%,
            rgba(135, 206, 250, 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(255, 215, 0, 0.4) 0%,
            rgba(255, 165, 0, 0.3) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00bfff 0%,
            #87ceeb 25%,
            #ff1493 50%,
            #ff69b4 75%,
            #ffb6c1 100%);
    transform: scale(1.05) translateY(-1px);
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.4),
        0 3px 8px rgba(0, 191, 255, 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, 191, 255, 0.8) 0%,
            rgba(135, 206, 250, 0.7) 30%,
            rgba(255, 20, 147, 0.6) 60%,
            rgba(255, 105, 180, 0.5) 80%,
            rgba(255, 182, 193, 0.4) 100%),
        radial-gradient(ellipse 60% 40% at 80% 70%,
            rgba(255, 215, 0, 0.2) 0%,
            rgba(255, 165, 0, 0.1) 50%,
            transparent 100%),
        linear-gradient(135deg,
            #00bfff 0%,
            #87ceeb 25%,
            #ff1493 50%,
            #ff69b4 75%,
            #ffb6c1 100%);
    transform: scale(0.95) translateY(1px);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 1px 4px rgba(0, 191, 255, 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: 'Retro', 'Orbitron', 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: 'Retro', 'Orbitron', 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: 'Retro', 'Orbitron', 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: 'Retro', 'Orbitron', 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;
    }
}

/* Custom Scrollbar */
.y2k-content-area::-webkit-scrollbar {
    width: 12px;
}

.y2k-content-area::-webkit-scrollbar-track {
    background: var(--text-primary);
    border: 1px solid var(--frame-dark);
}

.y2k-content-area::-webkit-scrollbar-thumb {
    background: var(--panel-gradient);
    border: 1px solid var(--frame-dark);
    border-radius: 0;
}

.y2k-content-area::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--text-muted) 0%, var(--text-primary) 100%);
}

.y2k-terminal-window::-webkit-scrollbar {
    width: 12px;
}

.y2k-terminal-window::-webkit-scrollbar-track {
    background: var(--frame-dark);
    border: 1px solid var(--frame-dark);
}

.y2k-terminal-window::-webkit-scrollbar-thumb {
    background: var(--frame-dark);
    border: 1px solid var(--accent-green);
}

.y2k-terminal-window::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .y2k-image-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .y2k-preloader-video-container {
        width: 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;
        /* Floating header untuk mobile */
    }

    .y2k-luma-logo h1 {
        font-size: 20px;
        letter-spacing: 2px;
    }

    .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: 100vh;
        width: 100vw;
        padding: 0;
        margin-top: -60px;
        padding-top: 40px;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        /* Memastikan lebar penuh untuk mobile */
    }

    .y2k-video-full-content {
        font-size: 14px;
    }

    .y2k-video-row {
        padding: 30px 15px;
    }

    .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;
    }
}

@media (max-width: 480px) {
    .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;
    }

    /* Footer Task Bar Responsive */
    .y2k-footer-taskbar {
        height: 40px;
        padding: 0 15px;
        bottom: 5px;
        width: calc(100% - 20px);
    }

    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;
    }

    .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: 9px;
    }

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

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

    /* Preloader responsive */

}