/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Lenis Smooth Scrolling Optimization */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: 'Press Start 2P', cursive;
    background: url('assets/vid/bg.gif') center center;
    background-size: cover;
    background-attachment: fixed;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* CRT Effect untuk seluruh body */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 1px,
            rgba(255, 255, 255, 0.08) 1px,
            rgba(255, 255, 255, 0.08) 2px);
    pointer-events: none;
    z-index: 9999;
    animation: globalScanLines 0.1s linear infinite;
}



/* Global Scan Lines Animation */
@keyframes globalScanLines {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(2px);
    }
}

/* Global Flicker Animation */
@keyframes globalFlicker {

    0%,
    100% {
        opacity: 0.2;
    }

    50% {
        opacity: 0.6;
    }
}

/* Additional CRT Effect - More Visible */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        repeating-linear-gradient(90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.02) 2px,
            rgba(255, 255, 255, 0.02) 4px);
    pointer-events: none;
    z-index: 9998;
    animation: verticalScanLines 0.15s linear infinite;
}

/* Vertical Scan Lines Animation */
@keyframes verticalScanLines {
    0% {
        transform: translateX(0);
    }

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

/* Main Layout Container */
.main-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 10px;
    gap: 30px;
    position: relative;
    overflow: hidden;
    /* Memastikan layout tidak miring */
    transform: none;
    transform-origin: center center;
}

/* Parallax Container */
.parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Parallax Layers */
.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.1s ease-out;
}

.parallax-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: brightness(0.8) contrast(1.2);
}

/* Layer specific styling untuk depth effect */
.layer-1 {
    z-index: -5;
    opacity: 0.3;
}

.layer-2 {
    z-index: -4;
    opacity: 0.4;
}

.layer-3 {
    z-index: -3;
    opacity: 0.5;
}

.layer-4 {
    z-index: -2;
    opacity: 0.6;
}

.layer-5 {
    z-index: -1;
    opacity: 0.7;
}

/* Depth effect dengan blur dan scale */
.layer-1 img {
    filter: brightness(0.6) contrast(1.1) blur(2px);
    transform: scale(1.1);
}

.layer-2 img {
    filter: brightness(0.7) contrast(1.15) blur(1.5px);
    transform: scale(1.05);
}

.layer-3 img {
    filter: brightness(0.8) contrast(1.2) blur(1px);
    transform: scale(1.02);
}

.layer-4 img {
    filter: brightness(0.85) contrast(1.25) blur(0.5px);
    transform: scale(1.01);
}

.layer-5 img {
    filter: brightness(0.9) contrast(1.3);
    transform: scale(1);
}

/* Hover effect untuk depth enhancement */
.parallax-layer:hover {
    opacity: 0.8;
}

.parallax-layer:hover img {
    filter: brightness(1) contrast(1.4);
}

/* Hide scrollbar but keep functionality */
html {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

html::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

body {
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

body::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

/* Background pattern untuk efek depth gelap */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        radial-gradient(circle at 20% 80%, rgba(0, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 0, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 255, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* CRT Monitor Effect dengan Border Hero Section - 4:3 Ratio & Side Buttons */
.crt-monitor {
    width: 1000px;
    height: 750px;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 20px auto;
    /* Border super tebal untuk Hero Section - Dark Theme */
    border: 30px outset #404040;
    border-right: 30px solid #202020;
    border-bottom: 30px solid #202020;
    border-radius: 20px;
    box-shadow:
        inset 10px 10px 0px #202020,
        inset -10px -10px 0px #606060,
        0 0 20px rgba(0, 0, 0, 0.8);
    z-index: 10;
    /* Memastikan monitor tidak miring */
    transform: none;
    transform-origin: center center;
}

.crt-screen {
    width: 95%;
    height: 95%;
    background: #000;
    /* Menghilangkan border dalam untuk tampilan clean */
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.8);
    /* Memastikan screen tidak miring */
    transform: none;
    transform-origin: center center;
}



/* Hero Video Container - Fullscreen */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;

}



/* Efek ping pong untuk video hero */
.hero-video.ping-pong {
    animation: pingPongEffect 0.5s ease-in-out;
}

@keyframes pingPongEffect {
    0% {
        transform: scale(1);
        filter: brightness(1) contrast(1);
    }

    25% {
        transform: scale(1.02);
        filter: brightness(1.1) contrast(1.1);
    }

    50% {
        transform: scale(1.05);
        filter: brightness(1.2) contrast(1.2);
    }

    75% {
        transform: scale(1.02);
        filter: brightness(1.1) contrast(1.1);
    }

    100% {
        transform: scale(1);
        filter: brightness(1) contrast(1);
    }
}

/* Efek glitch saat video ping pong */
.hero-video.ping-pong-glitch {
    animation: pingPongGlitch 0.3s ease-in-out;
}

@keyframes pingPongGlitch {
    0% {
        transform: scale(1) translate(0, 0);
        filter: brightness(1) contrast(1) hue-rotate(0deg);
    }

    10% {
        transform: scale(1.02) translate(2px, -2px) skew(1deg);
        filter: brightness(1.1) contrast(1.2) hue-rotate(90deg);
    }

    20% {
        transform: scale(1.05) translate(-2px, 2px) skew(-1deg);
        filter: brightness(1.2) contrast(1.3) hue-rotate(180deg);
    }

    30% {
        transform: scale(1.02) translate(1px, -1px) skew(0.5deg);
        filter: brightness(1.1) contrast(1.2) hue-rotate(270deg);
    }

    40% {
        transform: scale(1.05) translate(-1px, 1px) skew(-0.5deg);
        filter: brightness(1.2) contrast(1.3) hue-rotate(360deg);
    }

    50% {
        transform: scale(1.02) translate(0.5px, -0.5px) skew(0.2deg);
        filter: brightness(1.1) contrast(1.2) hue-rotate(0deg);
    }

    60% {
        transform: scale(1.05) translate(-0.5px, 0.5px) skew(-0.2deg);
        filter: brightness(1.2) contrast(1.3) hue-rotate(180deg);
    }

    70% {
        transform: scale(1.02) translate(0.2px, -0.2px) skew(0.1deg);
        filter: brightness(1.1) contrast(1.2) hue-rotate(0deg);
    }

    80% {
        transform: scale(1.05) translate(-0.2px, 0.2px) skew(-0.1deg);
        filter: brightness(1.2) contrast(1.3) hue-rotate(90deg);
    }

    90% {
        transform: scale(1.02) translate(0.1px, -0.1px) skew(0.05deg);
        filter: brightness(1.1) contrast(1.2) hue-rotate(0deg);
    }

    100% {
        transform: scale(1) translate(0, 0);
        filter: brightness(1) contrast(1) hue-rotate(0deg);
    }
}

/* PFP Container - Dark Theme */
.pfp-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 200;
}

.pfp-image {
    width: 80px;
    height: 80px;
    border: 3px outset #606060;
    border-right: 3px solid #202020;
    border-bottom: 3px solid #202020;
    border-radius: 8px;
    background: #404040;
    box-shadow:
        inset 2px 2px 0px #202020,
        inset -2px -2px 0px #606060,
        0 4px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.pfp-image:hover {
    transform: scale(1.05);
    box-shadow:
        inset 2px 2px 0px #202020,
        inset -2px -2px 0px #606060,
        0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Top Buttons - Dark Theme */
.top-buttons {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.top-button {
    padding: 8px 12px;
    background: #404040;
    border: 2px outset #606060;
    border-right: 2px solid #202020;
    border-bottom: 2px solid #202020;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.5rem;
    color: #00ff00;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    text-shadow: 0 0 5px #00ff00;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 100px;
}

.top-button:hover {
    background: #505050;
    color: #00ffff;
    animation: buttonGlitch 0.3s ease-in-out;
}

.top-button:hover .button-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.top-button:active {
    border: 2px inset #606060;
    border-right: 2px solid #404040;
    border-bottom: 2px solid #404040;
    transform: translateY(0);
}

.top-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.top-button:hover::before {
    left: 100%;
}

/* Side Buttons Container */
.side-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 180px;
    position: relative;
    z-index: 15;
}

.side-button {
    width: 100%;
    padding: 12px 15px;
    background: #404040;
    border: 3px outset #606060;
    border-right: 3px solid #202020;
    border-bottom: 3px solid #202020;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.6rem;
    color: #00ff00;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    text-shadow: 0 0 5px #00ff00;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.button-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
    transition: all 0.2s ease;
}

.side-button:hover {
    background: #505050;
    color: #00ffff;
    animation: buttonGlitch 0.3s ease-in-out;
}

.side-button:hover .button-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.side-button:active {
    border: 3px inset #606060;
    border-right: 3px solid #404040;
    border-bottom: 3px solid #404040;
    transform: translateY(0);
}

.side-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.side-button:hover::before {
    left: 100%;
}

/* Social Buttons Grid - Overlay di atas video */
.social-buttons-grid {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 50;
}

.social-row {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #404040;
    border: 2px outset #606060;
    border-right: 2px solid #202020;
    border-bottom: 2px solid #202020;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.6rem;
    color: #00ff00;
    cursor: pointer;
    transition: all 0.1s ease;
    min-width: 120px;
    justify-content: center;
    text-shadow: 0 0 5px #00ff00;
}

.social-btn:hover {
    background: #505050;
    color: #00ffff;
    animation: buttonGlitch 0.3s ease-in-out;
}

.social-btn:active {
    border: 2px inset #606060;
    border-right: 2px solid #404040;
    border-bottom: 2px solid #404040;
}

.social-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* Container untuk CA dan BUY dengan flex grid */
.ca-buy-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    z-index: 100;
}

/* CA Container dan Box */
.ca-container {
    z-index: 100;
}

.ca-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #404040;
    border: 3px outset #606060;
    border-right: 3px solid #202020;
    border-bottom: 3px solid #202020;
    padding: 12px 15px;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
    box-shadow:
        inset 2px 2px 0px #202020,
        inset -2px -2px 0px #606060;
}

.ca-text {
    white-space: nowrap;
}

.ca-copy-btn {
    background: #404040;
    border: 2px outset #606060;
    border-right: 2px solid #202020;
    border-bottom: 2px solid #202020;
    color: #00ff00;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
}

.ca-copy-btn:hover {
    background: #505050;
    color: #00ffff;
    animation: buttonGlitch 0.3s ease-in-out;
}

.ca-copy-btn:active {
    border: 2px inset #606060;
    border-right: 2px solid #404040;
    border-bottom: 2px solid #404040;
    transform: translateY(0);
}

.ca-copy-btn i {
    font-size: 1rem;
}

/* GUNK MODE Button - Windows 98 Style */
.gunk-mode-button {
    cursor: pointer;
    border: 3px outset #606060;
    border-right: 3px solid #202020;
    border-bottom: 3px solid #202020;
    background-color: #c0c0c0;
    padding: 0;
    transition: 0.1s ease-in-out;
    -webkit-user-select: none;
    user-select: none;
    font-family: 'Press Start 2P', cursive;
    z-index: 50;
}

.gunk-mode-btn {
    background-color: #c0c0c0;
    border: 2px solid #ffffff;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
    padding: 8px 16px;
    display: inline-block;
    transition: 0.1s ease-in-out;
}

.gunk-mode-btn span {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #000;
    font-family: 'Press Start 2P', cursive;
    font-weight: bold;
}

.gunk-mode-button:hover {
    background-color: #d0d0d0;
    animation: buttonGlitch 0.3s ease-in-out;
}

.gunk-mode-button:hover .gunk-mode-btn {
    background-color: #d0d0d0;
    border-color: #e0e0e0;
}

.gunk-mode-button:active {
    border: 3px inset #606060;
    border-right: 3px solid #404040;
    border-bottom: 3px solid #404040;
}

.gunk-mode-button:active .gunk-mode-btn {
    border: 2px inset #808080;
    border-right: 2px solid #c0c0c0;
    border-bottom: 2px solid #c0c0c0;
    transform: translateY(1px);
}

/* BUY Button - Windows 98 Style */
.buy-button {
    cursor: pointer;
    border: 3px outset #606060;
    border-right: 3px solid #202020;
    border-bottom: 3px solid #202020;
    background-color: #c0c0c0;
    padding: 0;
    transition: 0.1s ease-in-out;
    -webkit-user-select: none;
    user-select: none;
    font-family: 'Press Start 2P', cursive;
    z-index: 100;
}

.buy-btn {
    background-color: #c0c0c0;
    border: 2px solid #ffffff;
    border-right: 2px solid #808080;
    border-bottom: 2px solid #808080;
    padding: 8px 16px;
    display: inline-block;
    transition: 0.1s ease-in-out;
}

.buy-btn span {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #000;
    font-family: 'Press Start 2P', cursive;
    font-weight: bold;
}

.buy-button:hover {
    background-color: #d0d0d0;
    animation: buttonGlitch 0.3s ease-in-out;
}

.buy-button:hover .buy-btn {
    background-color: #d0d0d0;
    border-color: #e0e0e0;
}

.buy-button:active {
    border: 3px inset #606060;
    border-right: 3px solid #404040;
    border-bottom: 3px solid #404040;
}

.buy-button:active .buy-btn {
    border: 2px inset #808080;
    border-right: 2px solid #c0c0c0;
    border-bottom: 2px solid #c0c0c0;
    transform: translateY(1px);
}

/* Efek glitch untuk tombol BUY */
.buy-button.button-glitch {
    animation: buyButtonGlitch 0.5s ease-in-out;
}

@keyframes buyButtonGlitch {
    0% {
        transform: translateX(0);
    }

    10% {
        transform: translateX(-2px);
    }

    20% {
        transform: translateX(2px);
    }

    30% {
        transform: translateX(-1px);
    }

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

    50% {
        transform: translateX(-0.5px);
    }

    60% {
        transform: translateX(0.5px);
    }

    70% {
        transform: translateX(-0.2px);
    }

    80% {
        transform: translateX(0.2px);
    }

    90% {
        transform: translateX(-0.1px);
    }

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

/* Efek highlight untuk meme gallery */
.meme-gallery.highlight-section {
    animation: highlightPulse 2s ease-in-out;
    border: 3px solid #00ff00;
    box-shadow: 0 0 20px #00ff00;
}

@keyframes highlightPulse {
    0% {
        border-color: #00ff00;
        box-shadow: 0 0 20px #00ff00;
    }

    50% {
        border-color: #ffff00;
        box-shadow: 0 0 30px #ffff00;
    }

    100% {
        border-color: #00ff00;
        box-shadow: 0 0 20px #00ff00;
    }
}

/* Efek glitch untuk window meme collection */
.meme-collection.window-highlight {
    animation: windowGlitch 0.5s ease-in-out;
    filter: contrast(1.2) brightness(1.1);
}

@keyframes windowGlitch {
    0% {
        transform: translate(-50%, -50%) scale(1);
        filter: contrast(1.2) brightness(1.1);
    }

    10% {
        transform: translate(-50%, -50%) scale(1) translateX(-2px);
        filter: contrast(1.5) brightness(1.3) hue-rotate(5deg);
    }

    20% {
        transform: translate(-50%, -50%) scale(1) translateX(2px);
        filter: contrast(1.3) brightness(1.2) hue-rotate(-5deg);
    }

    30% {
        transform: translate(-50%, -50%) scale(1) translateX(-1px);
        filter: contrast(1.4) brightness(1.1) hue-rotate(3deg);
    }

    40% {
        transform: translate(-50%, -50%) scale(1) translateX(1px);
        filter: contrast(1.2) brightness(1.2) hue-rotate(-3deg);
    }

    50% {
        transform: translate(-50%, -50%) scale(1) translateX(-0.5px);
        filter: contrast(1.3) brightness(1.1) hue-rotate(2deg);
    }

    60% {
        transform: translate(-50%, -50%) scale(1) translateX(0.5px);
        filter: contrast(1.2) brightness(1.2) hue-rotate(-2deg);
    }

    70% {
        transform: translate(-50%, -50%) scale(1) translateX(-0.2px);
        filter: contrast(1.1) brightness(1.1) hue-rotate(1deg);
    }

    80% {
        transform: translate(-50%, -50%) scale(1) translateX(0.2px);
        filter: contrast(1.2) brightness(1.1) hue-rotate(-1deg);
    }

    90% {
        transform: translate(-50%, -50%) scale(1) translateX(-0.1px);
        filter: contrast(1.1) brightness(1.1) hue-rotate(0.5deg);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        filter: contrast(1.2) brightness(1.1);
    }
}

/* CRT Start Game Button - New Style */
.crt-box-button {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    border: 4px solid #000;
    background-color: #808080;
    padding-bottom: 10px;
    transition: 0.1s ease-in-out;
    -webkit-user-select: none;
    user-select: none;
    font-family: 'Press Start 2P', cursive;
    z-index: 50;
}

.crt-button {
    background-color: #dddddd;
    border: 4px solid #fff;
    padding: 3px 8px;
    display: inline-block;
    transition: 0.1s ease-in-out;
}

.crt-button span {
    font-size: 1.2em;
    letter-spacing: 1px;
    color: #000;
    font-family: 'Press Start 2P', cursive;
}

.crt-box-button:hover {
    background-color: #909090;
    border-color: #333;
}

.crt-box-button:hover .crt-button {
    background-color: #eeeeee;
    border-color: #ccc;
}

.crt-box-button:active {
    padding: 0;
    margin-bottom: 10px;
    transform: translateX(-50%) translateY(10px);
}

.crt-box-button:active .crt-button {
    transform: translateY(0);
}

/* Error Windows - Dark Theme */
.error-window {
    width: 300px;
    height: 400px;
    background: #404040;
    border: 2px outset #606060;
    border-right: 2px solid #202020;
    border-bottom: 2px solid #202020;
    z-index: 1000;
    cursor: move;
    -webkit-user-select: none;
    user-select: none;
}

.error-window .title-bar {
    background: #000080;
    color: #00ff00;
    padding: 4px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    text-shadow: 0 0 5px #00ff00;
}

.error-window .window-body {
    padding: 10px;
    height: calc(100% - 30px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 1px solid #808080;
}

/* Section Divider dengan Border Windows 98 Style - Dark Theme */
.section-divider {
    position: relative;
    width: 100%;
    height: 80px;
    background: #404040;
    border: 3px outset #606060;
    border-right: 3px solid #202020;
    border-bottom: 3px solid #202020;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 2px 2px 0px #202020,
        inset -2px -2px 0px #606060;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* Internet Explorer 10+ */
}

.section-divider::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.marquee-border {
    width: 100%;
    height: 100%;
    background: #404040;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
    background: #202020;
    border: 2px inset #202020;
    border-right: 2px solid #606060;
    border-bottom: 2px solid #606060;
    padding: 8px 16px;
    box-shadow:
        inset 1px 1px 0px #202020,
        inset -1px -1px 0px #606060;
}

.marquee-content span {
    color: #00ff00;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.7rem;
    text-shadow: 0 0 5px #00ff00;
    padding: 0 10px;
    background: #202020;
    flex-shrink: 0;
}

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

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

/* Meme Collection - Dark Theme */
.meme-collection {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    height: 70%;
    max-height: 600px;
    z-index: 1000;
    display: none;
    background: #404040;
    border: 3px outset #606060;
    border-right: 3px solid #202020;
    border-bottom: 3px solid #202020;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    /* Memastikan window selalu di tengah */
    margin: 0;
    padding: 0;
    /* Mencegah scroll di background */
    overflow: hidden;
}

.meme-collection .window {
    width: 100%;
    height: 100%;
    background: #404040;
    border: 2px outset #606060;
    border-right: 2px solid #202020;
    border-bottom: 2px solid #202020;
}

.meme-collection .title-bar {
    background: #000080;
    color: #00ff00;
    padding: 4px 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    text-shadow: 0 0 5px #00ff00;
}

.meme-collection .window-body {
    padding: 20px;
    height: calc(100% - 30px);
    overflow-y: auto;
    overflow-x: hidden;
    /* Custom scrollbar untuk meme collection */
    scrollbar-width: thin;
    /* Firefox */
    scrollbar-color: #00ff00 #202020;
    /* Firefox */
    /* Mencegah scroll event bubble */
    position: relative;
    z-index: 1;
}

.meme-collection .window-body::-webkit-scrollbar {
    width: 8px;
    /* Safari and Chrome */
}

.meme-collection .window-body::-webkit-scrollbar-track {
    background: #202020;
    /* Track color */
    border-radius: 4px;
}

.meme-collection .window-body::-webkit-scrollbar-thumb {
    background: #00ff00;
    /* Thumb color */
    border-radius: 4px;
    box-shadow: 0 0 5px #00ff00;
}

.meme-collection .window-body::-webkit-scrollbar-thumb:hover {
    background: #00ffff;
    /* Hover color */
    box-shadow: 0 0 8px #00ffff;
}

.meme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    padding: 10px;
}

.meme-item {
    background: #202020;
    border: 2px outset #606060;
    border-right: 2px solid #202020;
    border-bottom: 2px solid #202020;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.1s ease;
}

.meme-item:hover {
    background: #303030;
}

.meme-item:active {
    border: 2px inset #606060;
    border-right: 2px solid #404040;
    border-bottom: 2px solid #404040;
}

.meme-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 3px;
    transition: transform 0.2s ease;
}

.meme-item:hover img {
    transform: scale(1.05);
}

/* Span styling removed as requested - only images are shown */

/* Responsive Design */
@media (max-width: 768px) {
    .main-layout {
        flex-direction: column;
        gap: 15px;
        padding: 5px;
    }

    .crt-monitor {
        width: calc(100vw - 20px);
        height: calc((100vw - 20px) * 0.75);
        /* 4:3 ratio */
        margin: 10px auto;
        border-width: 15px;
        border-radius: 12px;
        box-shadow:
            inset 5px 5px 0px #202020,
            inset -5px -5px 0px #606060,
            0 0 25px rgba(0, 255, 255, 0.3),
            0 8px 15px rgba(255, 0, 255, 0.2);
    }

    .side-buttons {
        width: 100%;
        max-width: 280px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .side-button {
        width: calc(50% - 8px);
        font-size: 0.5rem;
        padding: 10px 12px;
        gap: 6px;
    }

    .button-icon {
        width: 14px;
        height: 14px;
    }

    .social-btn {
        min-width: 100px;
        font-size: 0.5rem;
    }

    .start-game-btn {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .crt-box-button {
        padding-bottom: 8px;
    }

    .crt-button {
        padding: 2px 6px;
    }

    .crt-button span {
        font-size: 0.8em;
    }

    .error-window {
        width: 250px;
        height: 150px;
    }

    .marquee-content span {
        font-size: 0.5rem;
    }

    .section-divider {
        height: 60px;
    }

    /* Responsive untuk meme collection window */
    .meme-collection {
        width: 95%;
        height: 80%;
        max-width: none;
        max-height: none;
    }

    .meme-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }

    .meme-item img {
        height: 80px;
    }
}

/* CRT Monitor Details */
.crt-monitor::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid #404040;
    border-radius: 15px;
    pointer-events: none;
    z-index: 1;
}

/* Classic CRT Monitor Details */
.crt-monitor::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid #404040;
    border-radius: 15px;
    pointer-events: none;
    z-index: 1;
}

/* Section 2: Meme Gallery with Card Style */
.meme-gallery {
    padding: 40px 20px;
    min-height: 100vh;
}

.meme-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.meme-gallery-title {
    text-align: center;
    font-size: 2.5rem;
    color: #00ff00;
    text-shadow: 0 0 10px #00ff00;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 900;
}

.meme-masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.meme-card {
    width: 100%;
    padding: 20px;
    background: #404040;
    border: 6px solid #202020;
    box-shadow: 12px 12px 0 #202020;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.meme-card:hover {
    transform: translate(-5px, -5px);
    box-shadow: 17px 17px 0 #202020;
    animation: glitchEffect 0.3s ease-in-out;
}

/* Glitch Effect dengan skema warna cyberpunk */
@keyframes glitchEffect {
    0% {
        box-shadow:
            12px 12px 0 #202020,
            0 0 20px rgba(255, 0, 255, 0.3),
            0 0 40px rgba(0, 255, 255, 0.2);
    }

    10% {
        box-shadow:
            12px 12px 0 #202020,
            2px 0 0 rgba(255, 0, 255, 0.8),
            -2px 0 0 rgba(0, 255, 255, 0.8),
            0 0 20px rgba(255, 0, 255, 0.5);
        transform: translate(-5px, -5px) skew(1deg);
    }

    20% {
        box-shadow:
            12px 12px 0 #202020,
            -2px 0 0 rgba(0, 255, 255, 0.8),
            2px 0 0 rgba(255, 0, 255, 0.8),
            0 0 30px rgba(0, 255, 255, 0.5);
        transform: translate(-5px, -5px) skew(-1deg);
    }

    30% {
        box-shadow:
            12px 12px 0 #202020,
            1px 0 0 rgba(255, 0, 255, 0.6),
            -1px 0 0 rgba(0, 255, 255, 0.6),
            0 0 25px rgba(255, 0, 255, 0.4);
        transform: translate(-5px, -5px) skew(0.5deg);
    }

    40% {
        box-shadow:
            12px 12px 0 #202020,
            -1px 0 0 rgba(0, 255, 255, 0.6),
            1px 0 0 rgba(255, 0, 255, 0.6),
            0 0 35px rgba(0, 255, 255, 0.4);
        transform: translate(-5px, -5px) skew(-0.5deg);
    }

    50% {
        box-shadow:
            12px 12px 0 #202020,
            0.5px 0 0 rgba(255, 0, 255, 0.4),
            -0.5px 0 0 rgba(0, 255, 255, 0.4),
            0 0 20px rgba(255, 0, 255, 0.3);
        transform: translate(-5px, -5px) skew(0.2deg);
    }

    60% {
        box-shadow:
            12px 12px 0 #202020,
            -0.5px 0 0 rgba(0, 255, 255, 0.4),
            0.5px 0 0 rgba(255, 0, 255, 0.4),
            0 0 30px rgba(0, 255, 255, 0.3);
        transform: translate(-5px, -5px) skew(-0.2deg);
    }

    70% {
        box-shadow:
            12px 12px 0 #202020,
            0.2px 0 0 rgba(255, 0, 255, 0.3),
            -0.2px 0 0 rgba(0, 255, 255, 0.3),
            0 0 15px rgba(255, 0, 255, 0.2);
        transform: translate(-5px, -5px) skew(0.1deg);
    }

    80% {
        box-shadow:
            12px 12px 0 #202020,
            -0.2px 0 0 rgba(0, 255, 255, 0.3),
            0.2px 0 0 rgba(255, 0, 255, 0.3),
            0 0 25px rgba(0, 255, 255, 0.2);
        transform: translate(-5px, -5px) skew(-0.1deg);
    }

    90% {
        box-shadow:
            12px 12px 0 #202020,
            0.1px 0 0 rgba(255, 0, 255, 0.2),
            -0.1px 0 0 rgba(0, 255, 255, 0.2),
            0 0 10px rgba(255, 0, 255, 0.1);
        transform: translate(-5px, -5px) skew(0.05deg);
    }

    100% {
        box-shadow:
            17px 17px 0 #202020,
            0 0 15px rgba(255, 0, 255, 0.2),
            0 0 30px rgba(0, 255, 255, 0.1);
        transform: translate(-5px, -5px);
    }
}

/* Title styling removed as requested */

.meme-card__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border: 3px solid #202020;
    margin-bottom: 20px;
    transition: transform 0.3s;
    border-radius: 5px;
    position: relative;
}

.meme-card:hover .meme-card__image {
    transform: scale(1.05);
    animation: imageGlitch 0.4s ease-in-out;
}

/* Glitch effect untuk gambar */
@keyframes imageGlitch {
    0% {
        filter: hue-rotate(0deg) brightness(1);
    }

    10% {
        filter: hue-rotate(90deg) brightness(1.2) contrast(1.3);
        transform: scale(1.05) translateX(2px);
    }

    20% {
        filter: hue-rotate(180deg) brightness(0.8) contrast(1.5);
        transform: scale(1.05) translateX(-2px);
    }

    30% {
        filter: hue-rotate(270deg) brightness(1.1) contrast(1.2);
        transform: scale(1.05) translateX(1px);
    }

    40% {
        filter: hue-rotate(360deg) brightness(0.9) contrast(1.4);
        transform: scale(1.05) translateX(-1px);
    }

    50% {
        filter: hue-rotate(0deg) brightness(1) contrast(1.1);
        transform: scale(1.05) translateX(0.5px);
    }

    60% {
        filter: hue-rotate(180deg) brightness(1.05) contrast(1.2);
        transform: scale(1.05) translateX(-0.5px);
    }

    70% {
        filter: hue-rotate(0deg) brightness(1) contrast(1.05);
        transform: scale(1.05) translateX(0.2px);
    }

    80% {
        filter: hue-rotate(90deg) brightness(1.02) contrast(1.1);
        transform: scale(1.05) translateX(-0.2px);
    }

    90% {
        filter: hue-rotate(0deg) brightness(1) contrast(1.02);
        transform: scale(1.05) translateX(0.1px);
    }

    100% {
        filter: hue-rotate(0deg) brightness(1) contrast(1);
        transform: scale(1.05);
    }
}

/* Content styling removed as requested */

.meme-card__button {
    border: 3px solid #00ff00;
    background: #202020;
    color: #00ff00;
    padding: 12px 25px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
    width: 100%;
    font-family: 'Press Start 2P', cursive;
    border-radius: 5px;
}

.meme-card:hover .meme-card__button {
    animation: buttonGlitch 0.3s ease-in-out;
}

.meme-card__button::before {
    content: "GUNK!";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105%;
    background-color: #00ff00;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.meme-card__button:hover::before {
    transform: translateY(0);
}

.meme-card__button:active {
    transform: scale(0.95);
}

/* Glitch effect untuk tombol */
@keyframes buttonGlitch {
    0% {
        text-shadow: 0 0 5px #00ff00;
        border-color: #00ff00;
    }

    10% {
        text-shadow: 2px 0 0 rgba(255, 0, 255, 0.8), -2px 0 0 rgba(0, 255, 255, 0.8);
        border-color: #ff00ff;
        color: #ff00ff;
    }

    20% {
        text-shadow: -2px 0 0 rgba(0, 255, 255, 0.8), 2px 0 0 rgba(255, 0, 255, 0.8);
        border-color: #00ffff;
        color: #00ffff;
    }

    30% {
        text-shadow: 1px 0 0 rgba(255, 0, 255, 0.6), -1px 0 0 rgba(0, 255, 255, 0.6);
        border-color: #ff00ff;
        color: #ff00ff;
    }

    40% {
        text-shadow: -1px 0 0 rgba(0, 255, 255, 0.6), 1px 0 0 rgba(255, 0, 255, 0.6);
        border-color: #00ffff;
        color: #00ffff;
    }

    50% {
        text-shadow: 0.5px 0 0 rgba(255, 0, 255, 0.4), -0.5px 0 0 rgba(0, 255, 255, 0.4);
        border-color: #ff00ff;
        color: #ff00ff;
    }

    60% {
        text-shadow: -0.5px 0 0 rgba(0, 255, 255, 0.4), 0.5px 0 0 rgba(255, 0, 255, 0.4);
        border-color: #00ffff;
        color: #00ffff;
    }

    70% {
        text-shadow: 0.2px 0 0 rgba(255, 0, 255, 0.3), -0.2px 0 0 rgba(0, 255, 255, 0.3);
        border-color: #ff00ff;
        color: #ff00ff;
    }

    80% {
        text-shadow: -0.2px 0 0 rgba(0, 255, 255, 0.3), 0.2px 0 0 rgba(255, 0, 255, 0.3);
        border-color: #00ffff;
        color: #00ffff;
    }

    90% {
        text-shadow: 0.1px 0 0 rgba(255, 0, 255, 0.2), -0.1px 0 0 rgba(0, 255, 255, 0.2);
        border-color: #ff00ff;
        color: #ff00ff;
    }

    100% {
        text-shadow: 0 0 5px #00ff00;
        border-color: #00ff00;
        color: #00ff00;
    }
}

/* Responsive Masonry Grid */
@media (max-width: 768px) {
    .meme-masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
        padding: 10px;
    }

    .meme-card {
        padding: 15px;
        border-width: 4px;
        box-shadow: 8px 8px 0 #202020;
    }

    .meme-card:hover {
        transform: translate(-3px, -3px);
        box-shadow: 11px 11px 0 #202020;
    }

    .meme-gallery-title {
        font-size: 1.8rem;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out;
}

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

/* Section 3: Wen Billion Video Section */
.wen-billion-section {
    padding: 60px 20px;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.wen-billion-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.wen-billion-title {
    text-align: center;
    font-size: 3rem;
    color: #00ff00;
    text-shadow: 0 0 15px #00ff00;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 900;
    position: relative;
    z-index: 10;
}

/* Wen Video Window - 16:9 Aspect Ratio */
.wen-video-window {
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    margin: 0 auto;
    background: #404040;
    border: 6px outset #606060;
    border-right: 6px solid #202020;
    border-bottom: 6px solid #202020;
    box-shadow:
        12px 12px 0 #202020,
        0 0 30px rgba(0, 255, 255, 0.3);
    position: relative;
    z-index: 10;
}

.wen-video-window .title-bar {
    background: #000080;
    color: #00ff00;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    text-shadow: 0 0 5px #00ff00;
    border-bottom: 2px solid #202020;
}

.wen-video-window .window-body {
    height: calc(100% - 40px);
    padding: 0;
    position: relative;
    overflow: hidden;
}

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

.wen-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 2px solid #202020;
}

/* Parallax Background untuk Wen Million Section */
.wen-million-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 0, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Floating particles effect */
.wen-million-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #00ff00, transparent),
        radial-gradient(2px 2px at 40px 70px, #ff00ff, transparent),
        radial-gradient(1px 1px at 90px 40px, #00ffff, transparent),
        radial-gradient(1px 1px at 130px 80px, #00ff00, transparent),
        radial-gradient(2px 2px at 160px 30px, #ff00ff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: floatParticles 20s linear infinite;
    z-index: 2;
    pointer-events: none;
    opacity: 0.3;
}

@keyframes floatParticles {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-100px);
    }
}

/* Glitch effects untuk video window */
.wen-video-window:hover {
    animation: wenWindowGlitch 0.3s ease-in-out;
}

.wen-video-window:hover .wen-video {
    animation: wenVideoGlitch 0.4s ease-in-out;
}

@keyframes wenWindowGlitch {
    0% {
        transform: translateY(0);
        box-shadow: 12px 12px 0 #202020;
    }

    10% {
        transform: translateY(-2px) skew(1deg);
        box-shadow: 12px 12px 0 #202020, 2px 0 0 rgba(255, 0, 255, 0.8);
    }

    20% {
        transform: translateY(-2px) skew(-1deg);
        box-shadow: 12px 12px 0 #202020, -2px 0 0 rgba(0, 255, 255, 0.8);
    }

    30% {
        transform: translateY(-2px) skew(0.5deg);
        box-shadow: 12px 12px 0 #202020, 1px 0 0 rgba(255, 0, 255, 0.6);
    }

    40% {
        transform: translateY(-2px) skew(-0.5deg);
        box-shadow: 12px 12px 0 #202020, -1px 0 0 rgba(0, 255, 255, 0.6);
    }

    50% {
        transform: translateY(-2px) skew(0.2deg);
        box-shadow: 12px 12px 0 #202020, 0.5px 0 0 rgba(255, 0, 255, 0.4);
    }

    60% {
        transform: translateY(-2px) skew(-0.2deg);
        box-shadow: 12px 12px 0 #202020, -0.5px 0 0 rgba(0, 255, 255, 0.4);
    }

    70% {
        transform: translateY(-2px) skew(0.1deg);
        box-shadow: 12px 12px 0 #202020, 0.2px 0 0 rgba(255, 0, 255, 0.3);
    }

    80% {
        transform: translateY(-2px) skew(-0.1deg);
        box-shadow: 12px 12px 0 #202020, -0.2px 0 0 rgba(0, 255, 255, 0.3);
    }

    90% {
        transform: translateY(-2px) skew(0.05deg);
        box-shadow: 12px 12px 0 #202020, 0.1px 0 0 rgba(255, 0, 255, 0.2);
    }

    100% {
        transform: translateY(-2px);
        box-shadow: 12px 12px 0 #202020;
    }
}

@keyframes wenVideoGlitch {
    0% {
        filter: brightness(1) contrast(1);
    }

    10% {
        filter: hue-rotate(90deg) brightness(1.2) contrast(1.3);
        transform: translateX(2px);
    }

    20% {
        filter: hue-rotate(180deg) brightness(0.8) contrast(1.5);
        transform: translateX(-2px);
    }

    30% {
        filter: hue-rotate(270deg) brightness(1.1) contrast(1.2);
        transform: translateX(1px);
    }

    40% {
        filter: hue-rotate(360deg) brightness(0.9) contrast(1.4);
        transform: translateX(-1px);
    }

    50% {
        filter: hue-rotate(0deg) brightness(1) contrast(1.1);
        transform: translateX(0.5px);
    }

    60% {
        filter: hue-rotate(180deg) brightness(1.05) contrast(1.2);
        transform: translateX(-0.5px);
    }

    70% {
        filter: hue-rotate(0deg) brightness(1) contrast(1.05);
        transform: translateX(0.2px);
    }

    80% {
        filter: hue-rotate(90deg) brightness(1.02) contrast(1.1);
        transform: translateX(-0.2px);
    }

    90% {
        filter: hue-rotate(0deg) brightness(1) contrast(1.02);
        transform: translateX(0.1px);
    }

    100% {
        filter: hue-rotate(0deg) brightness(1) contrast(1);
        transform: translateX(0);
    }
}

/* Responsive design untuk Wen Million */
@media (max-width: 768px) {
    .wen-million-title {
        font-size: 2rem;
    }

    .wen-video-window {
        max-width: 100%;
        border-width: 4px;
        box-shadow: 8px 8px 0 #202020;
    }

    .wen-million-section {
        padding: 40px 10px;
    }
}

/* Scroll to Top Trigger */
.scroll-to-top-trigger {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    z-index: 9999;
    display: none;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translate(0, 0);
    object-fit: cover;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;

    /* Memastikan tidak tertutup */
    pointer-events: auto;
    -webkit-user-select: none;
    user-select: none;
}

.scroll-to-top-trigger:hover {
    transform: scale(1.1);
    animation: triggerGlitch 0.3s ease-in-out;
}

@keyframes triggerGlitch {
    0% {
        transform: scale(1.1);
        filter: brightness(1) contrast(1);
    }

    10% {
        transform: scale(1.1) translate(2px, -2px) skew(1deg);
        filter: hue-rotate(90deg) brightness(1.2) contrast(1.3);
    }

    20% {
        transform: scale(1.1) translate(-2px, 2px) skew(-1deg);
        filter: hue-rotate(180deg) brightness(0.8) contrast(1.5);
    }

    30% {
        transform: scale(1.1) translate(1px, -1px) skew(0.5deg);
        filter: hue-rotate(270deg) brightness(1.1) contrast(1.2);
    }

    40% {
        transform: scale(1.1) translate(-1px, 1px) skew(-0.5deg);
        filter: hue-rotate(360deg) brightness(0.9) contrast(1.4);
    }

    50% {
        transform: scale(1.1) translate(0.5px, -0.5px) skew(0.2deg);
        filter: hue-rotate(0deg) brightness(1) contrast(1.1);
    }

    60% {
        transform: scale(1.1) translate(-0.5px, 0.5px) skew(-0.2deg);
        filter: hue-rotate(180deg) brightness(1.05) contrast(1.2);
    }

    70% {
        transform: scale(1.1) translate(0.2px, -0.2px) skew(0.1deg);
        filter: hue-rotate(0deg) brightness(1) contrast(1.05);
    }

    80% {
        transform: scale(1.1) translate(-0.2px, 0.2px) skew(-0.1deg);
        filter: hue-rotate(90deg) brightness(1.02) contrast(1.1);
    }

    90% {
        transform: scale(1.1) translate(0.1px, -0.1px) skew(0.05deg);
        filter: hue-rotate(0deg) brightness(1) contrast(1.02);
    }

    100% {
        transform: scale(1.1);
        filter: hue-rotate(0deg) brightness(1) contrast(1);
    }
}

/* Footer */
.footer {
    background: #202020;
    border-top: 3px outset #606060;
    border-right: 3px solid #202020;
    border-bottom: 3px solid #202020;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #00ff00;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 0 0 5px #00ff00;
}

.footer-section h4 {
    color: #00ff00;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 5px #00ff00;
}

.footer-section p {
    color: #c0c0c0;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #404040;
}

.footer-bottom p {
    color: #808080;
    font-size: 0.8rem;
}

/* Responsive design untuk Wen Billion */
@media (max-width: 768px) {
    .wen-billion-title {
        font-size: 2rem;
    }

    .wen-video-window {
        max-width: 100%;
        border-width: 4px;
        box-shadow: 8px 8px 0 #202020;
    }

    .wen-billion-section {
        padding: 40px 10px;
    }

    .scroll-to-top-trigger {
        width: 150px;
        height: 150px;
        bottom: 0;
        right: 0;
        margin: 0;
        padding: 0;
        border: none;
        outline: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}