/* ============================================
   FONT IMPORTS - STOLEN BRAND FONTS (I'M #1 AT STEALING)
   ============================================ */

/* POKEMON FONT - THE MAIN STOLEN LOGO (YELLOW TEXT, BLUE OUTLINE) */
@import url('https://fonts.cdnfonts.com/css/pokemon-solid');

/* BRAND LOGO FONTS - ALL STOLEN FROM MAJOR CORPORATIONS */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap'); /* NIKE STYLE */
@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&display=swap'); /* MCDONALDS STYLE */
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap'); /* COCA-COLA STYLE */
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap'); /* DISNEY/NINTENDO STYLE */
@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap'); /* MILITARY/COD STYLE */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@900&display=swap'); /* SONY/TECH STYLE */
@import url('https://fonts.googleapis.com/css2?family=Rubik+Glitch&display=swap'); /* GLITCH EFFECT */

/* CHAOTIC GOBLIN FONTS - FOR THE SCHIZO TEXT */
@import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap'); /* RETRO GAMING */
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap'); /* TERMINAL/MICROSOFT */
@import url('https://fonts.googleapis.com/css2?family=Monoton&display=swap'); /* APPLE STYLE */
@import url('https://fonts.googleapis.com/css2?family=Barrio&display=swap'); /* GOOGLE STYLE */
@import url('https://fonts.googleapis.com/css2?family=Butcherman&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Eater&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fascinate+Inline&display=swap'); /* TESLA STYLE */
@import url('https://fonts.googleapis.com/css2?family=Fontdiner+Swanky&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gravitas+One&display=swap'); /* NETFLIX STYLE */
@import url('https://fonts.googleapis.com/css2?family=Knewave&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nosifer&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pirata+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plaster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ribeye+Marrow&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Stalinist+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&display=swap'); /* META STYLE */
@import url('https://fonts.googleapis.com/css2?family=Wendy+One&display=swap');

/* Import utility classes */
@import url('css/utilities.css');

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

/* Accessibility: Skip link for keyboard navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* Accessibility: Focus indicators */
*:focus-visible {
    outline: 3px solid #FFCC00;
    outline-offset: 2px;
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Accessibility: High contrast mode support */
@media (prefers-contrast: high) {
    * {
        border-color: currentColor !important;
    }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes glitch {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitch-text {
    0%, 100% { 
        text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff;
        transform: translate(0);
    }
    25% { 
        text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff;
        transform: translate(1px, 0);
    }
    50% { 
        text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff;
        transform: translate(-1px, 0);
    }
    75% { 
        text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff;
        transform: translate(1px, 0);
    }
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

@keyframes crypto-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Disabled to prevent screen shake */
@keyframes popup-appear {
    /* 0% {
        opacity: 0;
        transform: scale(0.8) translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    } */
    /* Animation disabled - uses transform which causes screen shake */
    0%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%); /* Keep centered position */
    }
}

@keyframes popup-shake {
    /* 0%, 100% { transform: translateX(0); } */
    /* 25% { transform: translateX(-5px); } */
    /* 75% { transform: translateX(5px); } */
    /* Animation disabled - uses transform: translateX which causes screen shake */
    0%, 100%, 25%, 75% { transform: translate(-50%, -50%); } /* Keep centered, no shake */
}

/* Polyfill for deprecated <blink> tag - keeps retro aesthetic working in modern browsers */
blink {
    animation: blink 1s step-end infinite;
}

body {
    font-family: 'MS Sans Serif', 'Courier New', 'SimSun', '宋体', Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.4;
    color: #000000;
    background-color: #C0C0C0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px),
        url('data:image/svg+xml,%3Csvg width="100" height="100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"%3E%3Cpath d="M 20 0 L 0 0 0 20" fill="none" stroke="%23A0A0A0" stroke-width="0.5" opacity="0.3"/%3E%3C/pattern%3E%3Crect width="100" height="100" fill="url(%23grid)"/%3E%3C/svg%3E');
    position: relative;
    overflow-x: hidden;
    cursor: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="32" height="32"%3E%3Ccircle cx="16" cy="16" r="14" fill="%23000" opacity="0.8"/%3E%3Ccircle cx="16" cy="16" r="8" fill="%23fff"/%3E%3C/svg%3E'), auto;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

.glitch-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 0, 255, 0.03) 2px,
        rgba(255, 0, 255, 0.03) 4px
    );
    animation: scanline 8s linear infinite;
}

.top-banner {
    background: linear-gradient(to bottom, #C0C0C0, #808080);
    padding: 8px;
    text-align: center;
    border: 2px outset #C0C0C0;
    border-bottom: 3px inset #808080;
    position: relative;
    box-shadow: inset 0 0 0 1px #FFFFFF, inset 0 0 0 2px #000000;
    font-family: 'MS Sans Serif', 'Courier New', Arial, sans-serif;
    overflow: hidden;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('https://media.tenor.com/images/anime-dance.gif'),
        url('https://media.tenor.com/images/anime-girl-dance.gif'),
        url('https://media.tenor.com/images/anime-character-dance.gif');
    background-size: 120px 80px, 100px 70px, 150px 90px;
    background-position: 10% 20%, 80% 60%, 50% 80%;
    background-repeat: no-repeat;
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
    animation: animeFloat 8s ease-in-out infinite;
}

@keyframes animeFloat {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-10px) translateX(10px); }
    50% { transform: translateY(5px) translateX(-5px); }
    75% { transform: translateY(-5px) translateX(5px); }
}

.marquee-banner {
    background: linear-gradient(to bottom, #000080, #0000C0);
    color: #FFFFFF;
    padding: 4px;
    font-weight: normal;
    font-size: 11px;
    margin-bottom: 8px;
    border: 1px inset #808080;
    font-family: 'MS Sans Serif', 'SimSun', '宋体', Arial, sans-serif;
}

.header-main {
    display: block;
    margin: 10px 0;
}

.glitch-text {
    font-family: 'Pokemon Solid', 'Fredoka One', cursive;
    font-size: 48px;
    font-weight: 400;
    color: #FFCC00;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    animation: glitch-text 0.3s infinite;
    letter-spacing: 3px;
    will-change: transform;
    transform: translateZ(0);
    text-shadow: 
        -3px -3px 0 #3B5BA7,
        3px -3px 0 #3B5BA7,
        -3px 3px 0 #3B5BA7,
        3px 3px 0 #3B5BA7,
        -2px -2px 0 #3B5BA7,
        2px -2px 0 #3B5BA7,
        -2px 2px 0 #3B5BA7,
        2px 2px 0 #3B5BA7,
        -1px -1px 0 #3B5BA7,
        1px -1px 0 #3B5BA7,
        -1px 1px 0 #3B5BA7,
        1px 1px 0 #3B5BA7,
        0 0 0 #3B5BA7,
        0 0 10px rgba(59, 91, 167, 0.3);
}

.header-sub {
    font-family: 'Pokemon Solid', 'Fredoka One', cursive;
    font-size: 24px;
    font-weight: 400;
    color: #FFCC00;
    display: block;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        -2px -2px 0 #3B5BA7,
        2px -2px 0 #3B5BA7,
        -2px 2px 0 #3B5BA7,
        2px 2px 0 #3B5BA7,
        -1px -1px 0 #3B5BA7,
        1px -1px 0 #3B5BA7,
        -1px 1px 0 #3B5BA7,
        1px 1px 0 #3B5BA7,
        0 0 0 #3B5BA7,
        0 0 8px rgba(59, 91, 167, 0.3);
}

.crypto-badge {
    display: inline-block;
    background-color: #000000;
    color: #00FF00;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: bold;
    margin-top: 10px;
    border: 2px solid #00FF00;
    animation: crypto-pulse 2s infinite;
}

.banner-text {
    text-align: center;
    padding: 8px;
    font-size: 11px;
    color: #000000;
    background: linear-gradient(to bottom, #FFFF00, #CCCC00);
    border: 2px outset #FFFF00;
    margin: 8px 0;
    font-weight: bold;
    box-shadow: inset 1px 1px 0 #FFFFFF, inset -1px -1px 0 #808080;
}

.sub-banner {
    text-align: center;
    padding: 5px;
}

.schizo-box {
    background: linear-gradient(to bottom, #000080, #0000C0);
    color: #FFFFFF;
    padding: 8px;
    border: 2px inset #808080;
    font-weight: normal;
    font-size: 11px;
    font-family: 'MS Sans Serif', 'SimSun', '宋体', Arial, sans-serif;
    box-shadow: inset 1px 1px 0 #808080;
}

.main-container {
    width: 100%;
    background-color: #C0C0C0;
    padding: 8px;
    position: relative;
    border: 2px inset #808080;
    overflow: hidden;
}

.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('https://media.tenor.com/images/anime-wink.gif'),
        url('https://media.tenor.com/images/anime-happy.gif'),
        url('https://media.tenor.com/images/anime-excited.gif');
    background-size: 100px 75px, 110px 80px, 95px 70px;
    background-position: 2% 10%, 98% 30%, 50% 5%;
    background-repeat: no-repeat;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    animation: animeDrift 10s ease-in-out infinite;
}

@keyframes animeDrift {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(15px) rotate(2deg); }
    66% { transform: translateY(-10px) rotate(-2deg); }
}

.main-content-cell {
    width: 70%;
    padding: 12px;
    background-color: #C0C0C0;
    vertical-align: top;
    border: 1px inset #808080;
}

.sidebar-cell {
    width: 30%;
    padding: 8px;
    background: linear-gradient(to bottom, #E0E0E0, #C0C0C0);
    vertical-align: top;
    border-left: 2px inset #808080;
    border-right: 2px outset #C0C0C0;
    position: relative;
    overflow: hidden;
}

.sidebar-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('https://media.tenor.com/images/anime-smile.gif'),
        url('https://media.tenor.com/images/anime-love.gif');
    background-size: 70px 50px, 85px 60px;
    background-position: 10% 20%, 90% 70%;
    background-repeat: no-repeat;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
    animation: animeBounce 7s ease-in-out infinite;
}

@keyframes animeBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

.content-wrapper {
    background-color: #E6F3FF;
    padding: 15px;
    border: 2px inset #808080;
    font-family: 'MS Sans Serif', 'Courier New', Arial, sans-serif;
}

/* Brand logo font classes */
.brand-pokemon {
    font-family: 'Pokemon Solid', 'Fredoka One', cursive;
    color: #FFCC00;
    text-shadow: 
        -2px -2px 0 #3B5BA7,
        2px -2px 0 #3B5BA7,
        -2px 2px 0 #3B5BA7,
        2px 2px 0 #3B5BA7;
    letter-spacing: 2px;
}

.brand-cocacola {
    font-family: 'Lobster', cursive;
    color: #F40009;
    text-shadow: 2px 2px 0 #FFFFFF, -2px -2px 0 #000000;
    font-weight: 400;
    letter-spacing: 1px;
}

.brand-disney {
    font-family: 'Righteous', cursive;
    color: #113CCF;
    text-shadow: 3px 3px 0 #FFD700, -1px -1px 0 #000000;
    letter-spacing: 3px;
}

.brand-nike {
    font-family: 'Bebas Neue', cursive;
    color: #000000;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.brand-mcdonalds {
    font-family: 'Fredoka One', cursive;
    color: #FFC72C;
    text-shadow: 3px 3px 0 #DA020E, -1px -1px 0 #000000;
    letter-spacing: 2px;
}

.brand-microsoft {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #00A4EF;
    font-weight: 300;
    letter-spacing: 1px;
}

.brand-apple {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    color: #000000;
    font-weight: 300;
    letter-spacing: -1px;
}

.brand-google {
    font-family: 'Product Sans', Arial, sans-serif;
    background: linear-gradient(45deg, #4285F4, #EA4335, #FBBC05, #34A853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 400;
}

.brand-nintendo {
    font-family: 'Righteous', cursive;
    color: #E60012;
    text-shadow: 2px 2px 0 #FFFFFF, -1px -1px 0 #000000;
    letter-spacing: 2px;
}

.brand-sony {
    font-family: 'Orbitron', sans-serif;
    color: #000000;
    font-weight: 900;
    letter-spacing: 3px;
}

.brand-glitch {
    font-family: 'Rubik Glitch', cursive;
    color: #FF00FF;
    text-shadow: 2px 2px 0 #00FFFF, -2px -2px 0 #FFFF00;
    letter-spacing: 2px;
}

.brand-horror {
    font-family: 'Creepster', cursive;
    color: #8B0000;
    text-shadow: 3px 3px 0 #000000, 0 0 10px #FF0000;
    letter-spacing: 3px;
}

.brand-military {
    font-family: 'Black Ops One', cursive;
    color: #00FF00;
    text-shadow: 2px 2px 0 #000000, 0 0 5px #00FF00;
    letter-spacing: 2px;
}

h1 {
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    margin: 15px 0;
    text-align: center;
    text-transform: uppercase;
}

h1.brand-header {
    font-size: 28px;
    margin: 20px 0;
}

h2 {
    font-size: 18px;
    font-weight: bold;
    color: #000000;
    margin: 20px 0 10px 0;
    border-bottom: 2px solid #000000;
    padding-bottom: 5px;
    text-transform: uppercase;
}

h2.brand-header {
    font-size: 22px;
    border-bottom: 3px solid;
    padding-bottom: 8px;
}

h2.brand-header.brand-pokemon {
    border-bottom-color: #3B5BA7;
}

h2.brand-header.brand-cocacola {
    border-bottom-color: #F40009;
}

h2.brand-header.brand-disney {
    border-bottom-color: #113CCF;
}

h2.brand-header.brand-nike {
    border-bottom-color: #000000;
}

h2.brand-header.brand-mcdonalds {
    border-bottom-color: #DA020E;
}

h2.brand-header.brand-microsoft {
    border-bottom-color: #00A4EF;
}

h2.brand-header.brand-apple {
    border-bottom-color: #000000;
}

h2.brand-header.brand-google {
    border-bottom-color: #4285F4;
}

h2.brand-header.brand-nintendo {
    border-bottom-color: #E60012;
}

h2.brand-header.brand-sony {
    border-bottom-color: #000000;
}

h2.brand-header.brand-glitch {
    border-bottom-color: #FF00FF;
}

h2.brand-header.brand-horror {
    border-bottom-color: #8B0000;
}

h2.brand-header.brand-military {
    border-bottom-color: #00FF00;
}

.disclaimer {
    background: linear-gradient(to bottom, #FF0000, #CC0000);
    color: #FFFFFF;
    padding: 8px;
    text-align: center;
    font-weight: normal;
    margin: 8px 0;
    border: 2px inset #808080;
    font-family: 'MS Sans Serif', 'Courier New', 'SimSun', '宋体', Arial, sans-serif;
    font-size: 11px;
    box-shadow: inset 1px 1px 0 #808080;
}

.disclaimer.terminal-text {
    background: #000000;
    color: #00FF00;
    border: 2px inset #808080;
    font-family: 'Courier New', 'Consolas', monospace;
    text-shadow: 0 0 5px #00FF00;
}

.stream-of-consciousness {
    background: linear-gradient(to bottom, #FFFF00, #CCCC00);
    border: 2px outset #FFFF00;
    padding: 12px;
    margin: 12px 0;
    font-family: 'MS Sans Serif', 'Courier New', Arial, sans-serif;
    box-shadow: inset 1px 1px 0 #FFFFFF, inset -1px -1px 0 #808080;
}

.stream-of-consciousness p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.8;
}

.schizo-text {
    background: linear-gradient(to bottom, #F8F8F8, #E8E8E8);
    border: 2px inset #808080;
    padding: 12px;
    margin: 12px 0;
    box-shadow: inset 1px 1px 0 #808080, inset -1px -1px 0 #FFFFFF;
    font-family: 'MS Sans Serif', 'Courier New', Arial, sans-serif;
}

.schizo-text p {
    margin: 10px 0;
    text-align: justify;
    text-transform: uppercase;
    font-size: 13px;
    line-height: 1.6;
}

p {
    margin: 10px 0;
    text-align: justify;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

.brand-name {
    font-weight: bold;
    color: #FF0000;
    text-transform: uppercase;
    font-size: 18px;
}

.glitch-number {
    animation: glitch-text 0.5s infinite;
    color: #FF0000;
    font-weight: bold;
}

.nav-section {
    background: linear-gradient(to bottom, #C0C0C0, #A0A0A0);
    border-top: 2px inset #808080;
    border-bottom: 2px outset #C0C0C0;
    padding: 4px;
    box-shadow: inset 0 1px 0 #FFFFFF;
    font-family: 'MS Sans Serif', Arial, sans-serif;
    position: relative;
    overflow: hidden;
}

.nav-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        url('https://media.tenor.com/images/anime-cute.gif'),
        url('https://media.tenor.com/images/anime-kawaii.gif');
    background-size: 80px 60px, 90px 65px;
    background-position: 5% 50%, 95% 50%;
    background-repeat: no-repeat;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
    animation: animeSlide 6s ease-in-out infinite;
}

@keyframes animeSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(20px); }
}

.nav-section table {
    width: 100%;
}

.nav-link {
    color: #0000FF;
    text-decoration: underline;
    font-weight: normal;
    padding: 4px 8px;
    display: inline-block;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #E0E0E0, #C0C0C0);
    border: 1px outset #C0C0C0;
    margin: 2px;
    cursor: pointer;
}

.nav-link:hover {
    color: #0000FF;
    background: linear-gradient(to bottom, #D0D0D0, #B0B0B0);
    border: 1px inset #808080;
}

.nav-link:active {
    border: 1px inset #808080;
    background: linear-gradient(to bottom, #A0A0A0, #808080);
}

.image-container {
    text-align: center;
    margin: 15px 0;
}

.promo-image {
    background: repeating-linear-gradient(45deg, #FFD700, #FFA500, #FF00FF, #00FFFF);
    border: 3px solid #000000;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #000000;
    display: inline-block;
    text-align: center;
    min-width: 200px;
    animation: glitch 2s infinite;
}

.schizo-image {
    background: repeating-linear-gradient(45deg, #FF00FF, #00FFFF, #FFFF00, #FF0000);
}

.small-text {
    font-size: 12px;
    font-style: italic;
}

.meme-gallery {
    margin: 30px 0;
    padding: 15px;
    background-color: #FFFFFF;
    border: 3px inset #808080;
    font-family: 'MS Sans Serif', 'Courier New', Arial, sans-serif;
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.2);
}

.meme-gallery h2 {
    text-align: center;
    background-color: #FF0000;
    color: #FFFFFF;
    padding: 10px;
    margin: -15px -15px 15px -15px;
    border: none;
}

.meme-grid {
    display: table;
    width: 100%;
    border-collapse: separate;
    border-spacing: 10px;
}

.meme-item {
    display: table-cell;
    vertical-align: top;
    width: 25%;
    background-color: #FFFFFF;
    border: 2px solid #000000;
    padding: 10px;
    text-align: center;
}

.meme-image-box {
    width: 100%;
    height: 150px;
    background: repeating-linear-gradient(45deg, #FF00FF, #00FFFF, #FFFF00, #FF00FF);
    border: 2px solid #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
    animation: crypto-pulse 3s infinite;
}

.crypto-tag {
    font-size: 12px;
    background-color: #000000;
    color: #00FF00;
    padding: 2px 5px;
    margin-top: 5px;
    border: 1px solid #00FF00;
}

.meme-info {
    font-size: 12px;
    line-height: 1.4;
}

.price {
    color: #FF0000;
    font-weight: bold;
    font-size: 14px;
}

.sidebar {
    background-color: #FFFFFF;
    padding: 10px;
    border: 1px inset #808080;
    font-family: 'MS Sans Serif', 'Courier New', Arial, sans-serif;
}

.sidebar-section {
    margin-bottom: 15px;
}

.info-table {
    width: 100%;
    border: 2px inset #808080;
    border-collapse: collapse;
    background-color: #FFFFFF;
    font-size: 11px;
    font-family: 'Courier New', 'MS Sans Serif', monospace;
    box-shadow: inset 1px 1px 0 #808080, inset -1px -1px 0 #FFFFFF;
}

.info-table td {
    padding: 4px;
    border: 1px inset #808080;
    background: linear-gradient(to bottom, #F8F8F8, #E8E8E8);
}

.crypto-address {
    font-family: 'Courier New', monospace;
    color: #00FF00;
    background-color: #000000;
    padding: 2px 5px;
    font-size: 10px;
}

.vertical-border {
    width: 100%;
    height: 20px;
    background-image: repeating-linear-gradient(to bottom, 
        transparent 0px, 
        transparent 4px, 
        #000000 4px, 
        #000000 5px);
    margin: 10px 0;
}

.top-5-header {
    border: 3px solid #000000;
    background-color: #FFFFFF;
    padding: 0;
    margin: 0;
}

.top-5-banner {
    background-color: #FF0000;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    padding: 5px;
    border-bottom: 2px solid #000000;
}

.filmstrip-top {
    height: 15px;
    background: repeating-linear-gradient(to right,
        #000000 0px,
        #000000 8px,
        #FFFFFF 8px,
        #FFFFFF 16px);
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;
}

.filmstrip-bottom {
    height: 15px;
    background: repeating-linear-gradient(to right,
        #000000 0px,
        #000000 8px,
        #FFFFFF 8px,
        #FFFFFF 16px);
    border-top: 2px solid #000000;
    border-bottom: 2px solid #000000;
}

.meme-display-box {
    padding: 10px;
    text-align: center;
}

.meme-display-image {
    width: 100%;
    height: 120px;
    background: repeating-linear-gradient(135deg, #FF00FF, #00FFFF, #FFFF00, #FF00FF);
    border: 2px solid #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    color: #000000;
    margin-bottom: 10px;
    animation: crypto-pulse 3s infinite;
}

.crypto-tag-small {
    font-size: 10px;
    background-color: #000000;
    color: #00FF00;
    padding: 2px 5px;
    margin-top: 5px;
    border: 1px solid #00FF00;
}

.meme-display-info {
    font-size: 12px;
    line-height: 1.4;
    text-align: left;
}

.click-button {
    background: linear-gradient(to bottom, #E0E0E0, #C0C0C0);
    color: #000000;
    font-weight: normal;
    padding: 4px 12px;
    border: 2px outset #C0C0C0;
    display: inline-block;
    margin: 4px 0;
    cursor: pointer;
    text-align: center;
    text-transform: uppercase;
    font-size: 11px;
    box-shadow: inset 1px 1px 0 #FFFFFF, inset -1px -1px 0 #808080;
}

.click-button:hover {
    background: linear-gradient(to bottom, #F0F0F0, #D0D0D0);
    border: 2px outset #D0D0D0;
}

.click-button:active {
    border: 2px inset #808080;
    background: linear-gradient(to bottom, #A0A0A0, #808080);
    box-shadow: inset -1px -1px 0 #FFFFFF, inset 1px 1px 0 #808080;
}

.price-large {
    color: #FF0000;
    font-weight: bold;
    font-size: 14px;
    display: block;
    margin-top: 5px;
}

.stats-box {
    background-color: #FFFF00;
    border: 2px solid #000000;
    padding: 10px;
    font-size: 12px;
    text-align: center;
}

.schizo-stats {
    background-color: #000000;
    color: #00FF00;
    font-family: 'Courier New', monospace;
}

.contact-box {
    background-color: #FFFFFF;
    border: 2px inset #808080;
    padding: 10px;
    font-size: 12px;
    font-family: 'Courier New', 'MS Sans Serif', monospace;
    line-height: 1.6;
    box-shadow: inset 1px 1px 0 #808080, inset -1px -1px 0 #FFFFFF;
}

.brand-box {
    background-color: #FFD700;
    border: 3px outset #C0C0C0;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    font-family: 'MS Sans Serif', Arial, sans-serif;
    box-shadow: inset 1px 1px 0 #FFFFFF, inset -1px -1px 0 #808080;
}

.schizo-brand {
    background: repeating-linear-gradient(45deg, #FFD700, #FF00FF, #00FFFF, #FFD700);
    animation: crypto-pulse 4s infinite;
}

.affiliation-box {
    background-color: #000000;
    color: #00FF00;
    border: 2px solid #00FF00;
    padding: 10px;
    font-size: 12px;
    text-align: center;
}

.affiliate {
    display: block;
    margin: 5px 0;
    font-weight: bold;
}

.kol-warning {
    color: #FF0000;
    font-weight: bold;
    font-size: 10px;
    display: block;
    margin-top: 5px;
    text-transform: uppercase;
}

/* Fake eBay Section */
.fake-ebay-section {
    background: linear-gradient(to bottom, #F8F8F8, #E8E8E8);
    border: 2px inset #808080;
    padding: 12px;
    margin: 20px 0;
    font-family: 'MS Sans Serif', 'Courier New', Arial, sans-serif;
    box-shadow: inset 1px 1px 0 #808080, inset -1px -1px 0 #FFFFFF;
}

.ebay-listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.ebay-listing {
    background: linear-gradient(to bottom, #FFFFFF, #F0F0F0);
    border: 2px outset #C0C0C0;
    padding: 8px;
    font-size: 11px;
    font-family: 'MS Sans Serif', 'Courier New', Arial, sans-serif;
    cursor: pointer;
    transition: all 0.1s;
    box-shadow: inset 1px 1px 0 #FFFFFF, inset -1px -1px 0 #808080;
}

.ebay-listing:hover {
    background: linear-gradient(to bottom, #F0F0F0, #E0E0E0);
    border: 2px inset #808080;
}

.ebay-listing:active {
    border: 2px inset #808080;
    background: linear-gradient(to bottom, #E0E0E0, #D0D0D0);
}

.ebay-image {
    width: 100%;
    height: 120px;
    background: repeating-linear-gradient(135deg, #FF00FF, #00FFFF, #FFFF00, #FF00FF);
    border: 1px inset #808080;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #000000;
}

.ebay-title {
    font-weight: bold;
    color: #0000FF;
    text-decoration: underline;
    margin-bottom: 3px;
    font-size: 10px;
    line-height: 1.2;
}

.ebay-price {
    color: #CC0000;
    font-weight: bold;
    font-size: 12px;
    margin: 3px 0;
}

.ebay-shipping {
    color: #006600;
    font-size: 9px;
    margin: 2px 0;
}

.ebay-condition {
    color: #666666;
    font-size: 9px;
    font-style: italic;
    margin: 2px 0;
}

.ebay-seller {
    color: #0000FF;
    font-size: 9px;
    text-decoration: underline;
    margin-top: 3px;
}

.ebay-stolen-badge {
    background: #FF0000;
    color: #FFFFFF;
    font-size: 8px;
    padding: 2px 4px;
    display: inline-block;
    margin-top: 3px;
    font-weight: bold;
}

.manifesto-section {
    background-color: #000000;
    color: #00FF00;
    border: 3px inset #808080;
    padding: 20px;
    margin: 30px 0;
    font-family: 'Courier New', 'Consolas', monospace;
    box-shadow: inset 2px 2px 4px rgba(0,255,0,0.1);
    text-shadow: 0 0 3px #00FF00;
}

.manifesto-text {
    text-align: center;
    line-height: 2;
}

.manifesto-text p {
    margin: 10px 0;
    font-size: 16px;
    text-transform: uppercase;
}

.footer {
    background-color: #CCCCCC;
    border-top: 2px solid #000000;
    padding: 15px;
    text-align: center;
    font-size: 12px;
    font-family: 'Courier New', 'MS Sans Serif', monospace;
}

.footer table {
    width: 100%;
}

.footer td {
    text-align: center;
}

a {
    color: #0000FF;
    text-decoration: underline;
}

a:visited {
    color: #800080;
}

a:hover {
    color: #FF0000;
    background-color: #FFFF00;
}

/* Windows-style pop-up */
.windows-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background: linear-gradient(to bottom, #C0C0C0, #808080);
    border: 2px outset #C0C0C0;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.5), inset 1px 1px 0 #FFFFFF, inset -1px -1px 0 #808080;
    z-index: 10000;
    font-family: 'MS Sans Serif', 'SimSun', '宋体', Arial, sans-serif;
    font-size: 11px;
    /* animation: popup-appear 0.3s ease-out, popup-shake 0.5s ease-in-out; */
    /* Disabled popup-shake to prevent screen shake - popup-appear also disabled */
    animation: none; /* No animations to prevent screen shake */
    min-width: 350px;
    max-width: 450px;
}

.windows-popup-header {
    background: linear-gradient(to bottom, #000080, #0000C0);
    color: #FFFFFF;
    padding: 4px 8px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #000000;
}

.windows-popup-title {
    font-size: 11px;
    font-weight: bold;
}

.windows-popup-close {
    background: #C0C0C0;
    border: 1px outset #C0C0C0;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
}

.windows-popup-close:active {
    border: 1px inset #C0C0C0;
}

.windows-popup-content {
    padding: 15px;
    background: #C0C0C0;
    color: #000000;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    line-height: 1.4;
}

.windows-popup-icon {
    width: 32px;
    height: 32px;
    margin-right: 15px;
    flex-shrink: 0;
}

.windows-popup-message {
    flex: 1;
}

.windows-popup-buttons {
    padding: 8px;
    background: #C0C0C0;
    border-top: 1px solid #808080;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.windows-popup-button {
    background: linear-gradient(to bottom, #E0E0E0, #C0C0C0);
    border: 2px outset #C0C0C0;
    padding: 4px 20px;
    font-size: 11px;
    font-weight: normal;
    cursor: pointer;
    color: #000000;
    min-width: 75px;
    text-align: center;
    box-shadow: inset 1px 1px 0 #FFFFFF, inset -1px -1px 0 #808080;
    font-family: 'MS Sans Serif', 'SimSun', '宋体', Arial, sans-serif;
}

.windows-popup-button:active {
    border: 2px inset #808080;
    background: linear-gradient(to bottom, #A0A0A0, #808080);
    box-shadow: inset -1px -1px 0 #FFFFFF, inset 1px 1px 0 #808080;
}

.windows-popup-button:hover {
    background: linear-gradient(to bottom, #F0F0F0, #D0D0D0);
}

/* AI Terminal */
/* IRC Terminal Styles */
.irc-terminal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 700px;
    height: 500px;
    background: linear-gradient(135deg, #1a0000, #000000);
    border: 5px outset #C0C0C0;
    z-index: 10000;
    font-family: 'VT323', monospace;
    box-shadow: 0 0 20px #FF00FF, 4px 4px 8px rgba(0, 0, 0, 0.8);
    display: none;
    resize: both;
    overflow: hidden;
    min-width: 500px;
    min-height: 300px;
}

.irc-terminal.active {
    display: flex;
    flex-direction: column;
}

.irc-header {
    background: linear-gradient(to right, #8B0000, #FF0000, #8B0000);
    color: #FFFFFF;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid #FFD700;
    font-size: 11px;
    flex-shrink: 0;
    font-family: 'VT323', monospace;
}

.irc-channel {
    font-weight: bold;
    color: #00FFFF;
    font-size: 14px;
    text-shadow: 1px 1px 0 #000000;
}

.irc-topic {
    flex: 1;
    color: #FFFF00;
    font-size: 11px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: bold;
}

.irc-close {
    background: #C0C0C0;
    border: 1px outset #C0C0C0;
    width: 18px;
    height: 18px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.irc-close:active {
    border: 1px inset #C0C0C0;
}

.irc-body-container {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.irc-userlist {
    width: 150px;
    background: #1a1a1a;
    border-right: 1px solid #333333;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.irc-userlist-header {
    background: #000080;
    color: #FFFFFF;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: bold;
    border-bottom: 1px solid #000000;
}

.irc-userlist-content {
    flex: 1;
    overflow-y: auto;
    padding: 4px;
    font-size: 11px;
}

.irc-user {
    padding: 2px 4px;
    color: #CCCCCC;
    word-break: break-all;
}

.irc-user.op {
    color: #FF0000;
    font-weight: bold;
}

.irc-chat-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.irc-chat {
    flex: 1;
    padding: 8px;
    overflow-y: auto;
    background: #000000;
    color: #CCCCCC;
    font-size: 12px;
    line-height: 1.5;
}

.irc-chat::-webkit-scrollbar {
    width: 12px;
}

.irc-chat::-webkit-scrollbar-track {
    background: #000000;
}

.irc-chat::-webkit-scrollbar-thumb {
    background: #333333;
    border: 1px solid #000000;
}

.irc-line {
    margin-bottom: 2px;
    word-wrap: break-word;
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

.irc-timestamp {
    color: #666666;
    font-size: 10px;
    flex-shrink: 0;
    min-width: 70px;
}

.irc-nick {
    color: #00FF00;
    font-weight: bold;
    flex-shrink: 0;
}

.irc-text {
    color: #CCCCCC;
    flex: 1;
}

.irc-system {
    color: #888888;
    font-style: italic;
}

.irc-system-msg {
    color: #888888;
}

.irc-action {
    color: #FF00FF;
    font-style: italic;
}

.irc-input-container {
    border-top: 1px solid #333333;
    padding: 4px;
    background: #1a1a1a;
    flex-shrink: 0;
}

.irc-input {
    width: 100%;
    background: #000000;
    border: 1px inset #333333;
    color: #00FF00;
    padding: 4px 8px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    outline: none;
}

.irc-input:focus {
    border-color: #00FF00;
}

.irc-input::placeholder {
    color: #666666;
}

/* Meme text with random capitalization */
.meme-text {
    font-variant: normal;
}

.meme-text strong {
    font-variant: normal;
}

/* Terminal toggle button - WINDOWS 95 STYLE */
.terminal-toggle {
    position: fixed;
    bottom: 540px;
    right: 20px;
    width: 100px;
    height: 80px;
    background: #C0C0C0;
    border-width: 2px;
    border-style: solid;
    border-color: #FFFFFF #808080 #808080 #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    z-index: 9999;
    box-shadow: 1px 1px 0 #000000;
    font-family: 'VT323', monospace;
    padding: 4px;
    text-align: center;
    line-height: 1.2;
}

.terminal-toggle:hover {
    background: #D0D0D0;
}

.terminal-toggle:active {
    border-color: #808080 #FFFFFF #FFFFFF #808080;
    padding: 5px 3px 3px 5px;
    box-shadow: inset 1px 1px 0 #000000;
}

.terminal-toggle div {
    pointer-events: none;
}

/* Comical UI animations - DISABLED to prevent screen shake */
@keyframes wiggle {
    /* 0%, 100% { transform: rotate(0deg); } */
    /* 25% { transform: rotate(-1deg); } */
    /* 75% { transform: rotate(1deg); } */
    /* Animation disabled - uses transform: rotate which causes screen shake */
    0%, 100%, 25%, 75% { transform: rotate(0deg); } /* Keep transform but no animation */
}

@keyframes colorFlash {
    0%, 100% { background-color: transparent; }
    50% { background-color: #FFFF00; }
}

/* Disabled to prevent screen shake */
@keyframes sizePulse {
    /* 0%, 100% { transform: scale(1); } */
    /* 50% { transform: scale(1.05); } */
    /* Animation disabled - uses transform: scale which causes screen shake */
    0%, 100%, 50% { transform: scale(1); } /* Keep transform but no animation */
}

@keyframes borderFlash {
    0%, 100% { border-color: inherit; }
    50% { border-color: #FF00FF; }
}

/* Disabled to prevent screen shake */
.comical-wiggle {
    /* animation: wiggle 0.3s ease-in-out; */
    /* Animation disabled - uses transform: rotate */
}

.comical-flash {
    animation: colorFlash 0.5s ease-in-out;
    /* This one is OK - only changes background color */
}

.comical-pulse {
    /* animation: sizePulse 0.4s ease-in-out; */
    /* Animation disabled - uses transform: scale */
}

.comical-border {
    animation: borderFlash 0.6s ease-in-out;
}

/* Cameron's World inspired chaotic elements */
@keyframes rainbow {
    0% { color: #FF0000; }
    16% { color: #FF7F00; }
    33% { color: #FFFF00; }
    50% { color: #00FF00; }
    66% { color: #0000FF; }
    83% { color: #4B0082; }
    100% { color: #9400D3; }
}

/* Disabled to prevent screen shake */
@keyframes spin {
    /* from { transform: rotate(0deg); } */
    /* to { transform: rotate(360deg); } */
    /* Animation disabled - uses transform: rotate */
    from, to { transform: rotate(0deg); } /* Keep transform but no animation */
}

@keyframes bounce {
    /* 0%, 100% { transform: translateY(0); } */
    /* 50% { transform: translateY(-10px); } */
    /* Animation disabled - uses transform: translateY */
    0%, 100%, 50% { transform: translateY(0); } /* Keep transform but no animation */
}

@keyframes shake {
    /* 0%, 100% { transform: translateX(0); } */
    /* 25% { transform: translateX(-5px); } */
    /* 75% { transform: translateX(5px); } */
    /* Animation disabled - uses transform: translateX */
    0%, 100%, 25%, 75% { transform: translateX(0); } /* Keep transform but no animation */
}

/* EXTREME CHAOS ANIMATIONS - 5X MORE ABSURD */
/* @keyframes extremeShake - DISABLED to prevent screen shaking
@keyframes extremeShake {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    10% { transform: translateX(-10px) translateY(-5px) rotate(-2deg); }
    20% { transform: translateX(10px) translateY(5px) rotate(2deg); }
    30% { transform: translateX(-8px) translateY(8px) rotate(-1deg); }
    40% { transform: translateX(8px) translateY(-8px) rotate(1deg); }
    50% { transform: translateX(-5px) translateY(-5px) rotate(-2deg); }
    60% { transform: translateX(5px) translateY(5px) rotate(2deg); }
    70% { transform: translateX(-7px) translateY(7px) rotate(-1deg); }
    80% { transform: translateX(7px) translateY(-7px) rotate(1deg); }
    90% { transform: translateX(-3px) translateY(3px) rotate(-1deg); }
}
*/

@keyframes extremeGlitch {
    0%, 100% { 
        transform: translate(0);
        filter: hue-rotate(0deg);
    }
    10% { 
        transform: translate(-5px, 3px);
        filter: hue-rotate(90deg);
    }
    20% { 
        transform: translate(5px, -3px);
        filter: hue-rotate(180deg);
    }
    30% { 
        transform: translate(-3px, 5px);
        filter: hue-rotate(270deg);
    }
    40% { 
        transform: translate(3px, -5px);
        filter: hue-rotate(360deg);
    }
    50% { 
        transform: translate(-4px, 2px);
        filter: hue-rotate(45deg);
    }
    60% { 
        transform: translate(4px, -2px);
        filter: hue-rotate(135deg);
    }
    70% { 
        transform: translate(-2px, 4px);
        filter: hue-rotate(225deg);
    }
    80% { 
        transform: translate(2px, -4px);
        filter: hue-rotate(315deg);
    }
    90% { 
        transform: translate(-1px, 1px);
        filter: hue-rotate(0deg);
    }
}

@keyframes extremePulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 1;
    }
    25% { 
        transform: scale(1.3);
        opacity: 0.8;
    }
    50% { 
        transform: scale(0.8);
        opacity: 0.9;
    }
    75% { 
        transform: scale(1.2);
        opacity: 0.7;
    }
}

@keyframes extremeColorCycle {
    0% { color: #FF0000; background-color: #00FFFF; }
    16% { color: #00FF00; background-color: #FF00FF; }
    33% { color: #0000FF; background-color: #FFFF00; }
    50% { color: #FFFF00; background-color: #FF0000; }
    66% { color: #FF00FF; background-color: #00FF00; }
    83% { color: #00FFFF; background-color: #0000FF; }
    100% { color: #FF0000; background-color: #00FFFF; }
}

@keyframes extremeRotation {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.2); }
    50% { transform: rotate(180deg) scale(0.8); }
    75% { transform: rotate(270deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes extremeWobble {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(-20px) rotate(-10deg); }
    50% { transform: translateX(20px) rotate(10deg); }
    75% { transform: translateX(-15px) rotate(-5deg); }
}

@keyframes seizureWarning {
    0%, 100% { 
        background-color: #FFFFFF;
        color: #000000;
    }
    50% { 
        background-color: #000000;
        color: #FFFFFF;
    }
}

/* .extreme-shake - DISABLED to prevent screen shaking
.extreme-shake {
    animation: extremeShake 0.3s ease-in-out;
}
*/

/* Disabled to prevent screen shake */
.extreme-glitch {
    /* animation: extremeGlitch 0.5s infinite; */
    /* Animation disabled - uses transform */
}

.extreme-pulse {
    /* animation: extremePulse 0.8s infinite; */
    /* Animation disabled - uses transform: scale */
}

.extreme-color-cycle {
    animation: extremeColorCycle 1s infinite;
    /* This one is OK - only changes colors */
}

.extreme-rotation {
    /* animation: extremeRotation 2s infinite; */
    /* Animation disabled - uses transform: rotate */
}

.extreme-wobble {
    /* animation: extremeWobble 0.5s infinite; */
    /* Animation disabled - uses transform: translateX and rotate */
}

.seizure-warning {
    animation: seizureWarning 0.1s infinite;
}

.rainbow-text {
    animation: rainbow 3s infinite;
}

/* Disabled animations to prevent screen shake */
.spinning {
    /* animation: spin 2s linear infinite; */
    /* Animation disabled to prevent screen shake */
}

.bouncing {
    /* animation: bounce 1s ease-in-out infinite; */
    /* Animation disabled to prevent screen shake */
}

.wiggle {
    /* animation: wiggle 0.3s ease-in-out infinite; */
    /* Animation disabled to prevent screen shake */
}

.shaking {
    /* animation: shake 0.5s ease-in-out infinite; */
    /* Animation disabled to prevent screen shake */
}

/* Random floating elements - Cameron's World style */
.floating-gif {
    position: relative;
    /* animation: float 3s ease-in-out infinite; */
    /* Animation disabled to prevent screen shake */
}

/* Disabled to prevent screen shake */
@keyframes float {
    /* 0%, 100% { transform: translateY(0px) rotate(0deg); } */
    /* 50% { transform: translateY(-20px) rotate(5deg); } */
    /* Animation disabled - uses transform: translateY and rotate */
    0%, 100%, 50% { transform: translateY(0px) rotate(0deg); } /* Keep transform but no animation */
}

/* Chaotic background patterns */
.chaos-bg {
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,0,0,0.1) 10px, rgba(255,0,0,0.1) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0,255,0,0.1) 10px, rgba(0,255,0,0.1) 20px);
}

/* Blinking text - classic web */
.blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Marquee effect - class version */
.marquee {
    white-space: nowrap;
    overflow: hidden;
    animation: marquee 10s linear infinite;
}

/* Polyfill for deprecated <marquee> tag - keeps retro aesthetic working in modern browsers */
marquee {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
}

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

/* Windows 97 Taskbar */
.win97-taskbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, #C0C0C0, #808080);
    border-top: 2px outset #C0C0C0;
    display: flex;
    align-items: center;
    padding: 2px;
    z-index: 10001;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.3);
}

.win97-start-button {
    background: linear-gradient(to bottom, #C0C0C0, #808080);
    border: 2px outset #C0C0C0;
    padding: 4px 12px;
    font-family: 'MS Sans Serif', Arial, sans-serif;
    font-size: 11px;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: inset 1px 1px 0 #FFFFFF, inset -1px -1px 0 #808080;
}

.win97-start-button:active {
    border: 2px inset #808080;
    box-shadow: inset -1px -1px 0 #FFFFFF, inset 1px 1px 0 #808080;
}

.win97-start-button::before {
    content: '🪟';
    font-size: 14px;
}

.win97-tray {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 4px;
    background: linear-gradient(to bottom, #C0C0C0, #808080);
    border: 1px inset #808080;
    height: 24px;
    font-size: 10px;
    font-family: 'Courier New', monospace;
    color: #00FF00;
    text-shadow: 0 0 3px #00FF00;
}

/* Terminal-style text elements */
.terminal-text {
    font-family: 'Courier New', 'Consolas', monospace;
    background-color: #000000;
    color: #00FF00;
    padding: 2px 4px;
    border: 1px inset #808080;
    text-shadow: 0 0 5px #00FF00;
}


.terminal-prompt-line {
    color: #00FF00;
    font-family: 'Courier New', 'Consolas', monospace;
    text-shadow: 0 0 3px #00FF00;
}

.terminal-error {
    color: #FF0000;
    text-shadow: 0 0 5px #FF0000;
}

.terminal-success {
    color: #00FF00;
    text-shadow: 0 0 5px #00FF00;
}

.terminal-warning {
    color: #FFFF00;
    text-shadow: 0 0 5px #FFFF00;
}

/* Windows 97 Window Controls */
.win97-window-controls {
    display: flex;
    gap: 2px;
    margin-left: auto;
}

.win97-control-button {
    width: 16px;
    height: 14px;
    border: 1px outset #C0C0C0;
    background: linear-gradient(to bottom, #C0C0C0, #808080);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: bold;
    color: #000000;
    box-shadow: inset 1px 1px 0 #FFFFFF;
}

.win97-control-button:active {
    border: 1px inset #808080;
    box-shadow: inset -1px -1px 0 #FFFFFF, inset 1px 1px 0 #808080;
}

.win97-control-button.minimize::before {
    content: '_';
}

.win97-control-button.maximize::before {
    content: '□';
}

.win97-control-button.close::before {
    content: '×';
    color: #000000;
}

.win97-control-button.close {
    background: linear-gradient(to bottom, #FF8080, #CC0000);
}

/* Classic Windows 97 Scrollbar */
::-webkit-scrollbar {
    width: 16px;
    height: 16px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, #C0C0C0, #808080);
    border: 1px inset #808080;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #E0E0E0, #C0C0C0);
    border: 1px outset #C0C0C0;
    box-shadow: inset 1px 1px 0 #FFFFFF;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #F0F0F0, #D0D0D0);
}

::-webkit-scrollbar-thumb:active {
    border: 1px inset #808080;
    box-shadow: inset -1px -1px 0 #FFFFFF, inset 1px 1px 0 #808080;
}

::-webkit-scrollbar-button {
    background: linear-gradient(to bottom, #C0C0C0, #808080);
    border: 1px outset #C0C0C0;
    width: 16px;
    height: 16px;
}

::-webkit-scrollbar-button:active {
    border: 1px inset #808080;
}

::-webkit-scrollbar-button:vertical:start:decrement::before {
    content: '▲';
    display: block;
    text-align: center;
    font-size: 10px;
    color: #000000;
}

::-webkit-scrollbar-button:vertical:end:increment::before {
    content: '▼';
    display: block;
    text-align: center;
    font-size: 10px;
    color: #000000;
}

/* Windows 97 Status Bar */
.win97-status-bar {
    background: linear-gradient(to bottom, #C0C0C0, #808080);
    border-top: 1px inset #808080;
    padding: 2px 4px;
    font-size: 10px;
    font-family: 'MS Sans Serif', Arial, sans-serif;
    display: flex;
    align-items: center;
    height: 20px;
}

/* Terminal ASCII Art Box */
.terminal-ascii-box {
    font-family: 'Courier New', 'Consolas', monospace;
    background-color: #000000;
    color: #00FF00;
    border: 2px inset #808080;
    padding: 8px;
    white-space: pre;
    font-size: 10px;
    line-height: 1.2;
    text-shadow: 0 0 3px #00FF00;
}


/* Terminal Command Line Style */
.cmd-line {
    font-family: 'Courier New', 'Consolas', monospace;
    background-color: #000000;
    color: #00FF00;
    border: none;
    outline: none;
    padding: 4px;
    font-size: 12px;
    width: 100%;
    text-shadow: 0 0 3px #00FF00;
}

.cmd-line::before {
    content: 'C:\\> ';
    color: #00FF00;
}

/* Windows 97 Toolbar */
.win97-toolbar {
    background: linear-gradient(to bottom, #C0C0C0, #808080);
    border-bottom: 1px inset #808080;
    padding: 4px;
    display: flex;
    gap: 2px;
    align-items: center;
}

.win97-toolbar-button {
    background: linear-gradient(to bottom, #E0E0E0, #C0C0C0);
    border: 1px outset #C0C0C0;
    padding: 4px 8px;
    font-size: 10px;
    cursor: pointer;
    font-family: 'MS Sans Serif', Arial, sans-serif;
    box-shadow: inset 1px 1px 0 #FFFFFF;
}

.win97-toolbar-button:hover {
    background: linear-gradient(to bottom, #F0F0F0, #D0D0D0);
}

.win97-toolbar-button:active {
    border: 1px inset #808080;
    box-shadow: inset -1px -1px 0 #FFFFFF, inset 1px 1px 0 #808080;
}

/* Terminal-style borders for all boxes */
.terminal-border {
    border: 2px inset #808080;
    box-shadow: inset 2px 2px 4px rgba(0,0,0,0.3);
}

/* Windows 97 Beveled Effect */
.beveled {
    border: 2px outset #C0C0C0;
    box-shadow: inset 1px 1px 0 #FFFFFF, inset -1px -1px 0 #808080;
}

.beveled-inset {
    border: 2px inset #808080;
    box-shadow: inset -1px -1px 0 #FFFFFF, inset 1px 1px 0 #808080;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-content-cell,
    .sidebar-cell {
        width: 100%;
        display: block;
    }
    
    .sidebar-cell {
        border-left: none;
        border-top: 2px dotted #000000;
    }
    
    .meme-item {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .glitch-text {
        font-size: 32px;
    }
    
}