/* ============================================
   ★彡 SLOP BOT - WEBCORE CHAOS EDITION 彡★
   Low Quality Content Generation System v3.14
   ✧*。UNDER CONSTRUCTION。*✧
   ============================================ */

/* ============================================
   NO FONT IMPORTS - Using Classic System Fonts Only
   (All fonts pre-2005 for authentic early internet feel)
   ============================================ */

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

/* ============================================
   WEBCORE COLOR SCHEME - Maximum Chaos
   ============================================ */

:root {
    /* Bright, clashing neon colors */
    --hot-pink: #ff00ff;
    --electric-blue: #00ffff;
    --lime-green: #00ff00;
    --laser-yellow: #ffff00;
    --neon-orange: #ff6600;
    --radical-red: #ff0000;
    --cyber-purple: #9933ff;
    --toxic-green: #66ff00;
    --hot-magenta: #ff0080;
    
    /* Retro web backgrounds */
    --bg-black: #000000;
    --bg-gray: #c0c0c0;
    --bg-silver: #e0e0e0;
    --bg-teal: #008080;
    --bg-navy: #000080;
    --bg-maroon: #800000;
    
    /* Primary colors */
    --primary-color: var(--hot-pink);
    --secondary-color: var(--electric-blue);
    --accent-color: var(--lime-green);
    --background-color: var(--bg-silver);
    --text-color: #000000;
}

/* ============================================
   BASE STYLES - CHAOS REIGNS
   ============================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-color);
    background: var(--bg-silver);
    position: relative;
    overflow-x: hidden;
    padding: 0 2%;
}

/* Floating ASCII decorations */
body::before {
    content: '*** <<< >>> *** <<< >>> *** <<< >>> *** <<< >>>';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    font-size: 24px;
    animation: scroll-stars 30s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

/* Animated GIF background */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 1.0;
    z-index: 0;
    /* Repeating flag pattern */
    background-image: url('assets/flag.gif');
    background-size: 80px 80px;
    background-position: 0 0;
    background-repeat: repeat;
}

/* Ensure content is above the background pattern */
header, main, footer {
    position: relative;
    z-index: 1;
}

@keyframes scroll-stars {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--hot-pink);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    font-weight: bold;
}

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

/* ============================================
   TYPOGRAPHY - Intentional Chaos
   ============================================ */

h1 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 3.5rem;
    color: var(--hot-pink);
    text-align: center;
    text-shadow: 3px 3px 0 var(--electric-blue),
                 6px 6px 0 var(--lime-green);
    margin: 20px 0;
    animation: rainbow-text 3s infinite;
    text-transform: uppercase;
    font-style: italic;
}

@keyframes rainbow-text {
    0% { color: var(--hot-pink); }
    25% { color: var(--electric-blue); }
    50% { color: var(--lime-green); }
    75% { color: var(--laser-yellow); }
    100% { color: var(--hot-pink); }
}

h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 2.5rem;
    color: var(--neon-orange);
    text-shadow: 2px 2px 0 black;
    margin: 15px 0;
    text-transform: uppercase;
    font-style: italic;
}

h3 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.8rem;
    color: var(--cyber-purple);
    margin: 12px 0;
    text-decoration: underline;
    font-style: italic;
}

h4 {
    font-family: Verdana, Arial, sans-serif;
    font-size: 1rem;
    color: var(--radical-red);
    margin: 10px 0;
    font-weight: bold;
}

h5, h6 {
    font-family: Courier New, Courier, monospace;
    color: var(--toxic-green);
    margin: 8px 0;
}

p {
    margin-bottom: 15px;
    font-size: 15px;
}

/* Random font chaos - all system fonts pre-2005 */
.random-font-1 { font-family: Courier New, Courier, monospace; font-size: 20px; }
.random-font-2 { font-family: Verdana, Geneva, sans-serif; }
.random-font-3 { font-family: Georgia, 'Times New Roman', Times, serif; letter-spacing: 3px; font-style: italic; }
.random-font-4 { font-family: 'Comic Sans MS', cursive; font-size: 12px; }

/* ============================================
   LINKS - Maximum Geocities
   ============================================ */

a {
    color: #0000EE; /* Classic blue link */
    text-decoration: underline;
    font-weight: bold;
}

a:visited {
    color: #551A8B; /* Classic purple visited */
}

a:hover {
    color: var(--hot-pink);
    background: var(--laser-yellow);
    padding: 2px 4px;
    text-decoration: none;
    animation: link-pulse 0.5s;
}

@keyframes link-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

a:active {
    color: var(--radical-red);
}

/* ============================================
   BUTTONS - Wild & Proud
   ============================================ */

button, .btn {
    font-family: 'Arial', sans-serif;
    font-size: 14px;
    font-weight: bold;
    padding: 8px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #e0e0e0 100%);
    color: #cc0000;
    border: 2px solid #cc0000;
    border-radius: 20px;
    cursor: pointer;
    text-transform: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    transition: all 0.2s;
    position: relative;
}

button:hover, .btn:hover {
    background: linear-gradient(180deg, #f5f5f5 0%, #d0d0d0 100%);
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0,0,0,0.25);
}

button:active, .btn:active {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 rgba(0,0,0,0.3);
}

/* ============================================
   TABLE LAYOUTS - Classic Web
   ============================================ */

table {
    border-collapse: collapse;
    width: 100%;
    border: 3px solid var(--radical-red);
    background: white;
}

th {
    background: var(--bg-teal);
    color: white;
    padding: 10px;
    font-family: Verdana, Geneva, Arial, sans-serif;
    border: 2px solid var(--laser-yellow);
}

td {
    padding: 8px;
    border: 1px solid #999;
}

tr:nth-child(even) {
    background: #f0f0f0;
}

tr:hover {
    background: var(--laser-yellow);
}

/* ============================================
   BOXES & CONTAINERS - Webcore Style
   ============================================ */

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}

.webcore-box {
    background: white;
    border: 5px ridge var(--cyber-purple);
    padding: 18px 22px 19px 21px;
    margin: 17px 2px 23px -1px;
    box-shadow: 8px 8px 0 rgba(0,0,0,0.2);
}

.rainbow-border {
    border: 5px solid;
    border-image: linear-gradient(45deg, 
        var(--radical-red), 
        var(--neon-orange), 
        var(--laser-yellow), 
        var(--lime-green), 
        var(--electric-blue), 
        var(--cyber-purple), 
        var(--hot-pink)
    ) 1;
    padding: 13px 17px 14px 16px;
    margin: 16px 3px 14px -2px;
}

.inset-box {
    border: 3px inset #999;
    background: #e0e0e0;
    padding: 14px 18px 15px 17px;
    margin: 11px 2px 9px -1px;
}

.outset-box {
    border: 3px outset #999;
    background: #f0f0f0;
    padding: 16px 14px 13px 15px;
    margin: 12px -1px 8px 2px;
}

/* ============================================
   RETRO WINDOW STYLE
   ============================================ */

.window {
    background: var(--bg-gray);
    border: 2px outset #fff;
    margin: 18px 3px 22px -1px;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
}

.window-titlebar {
    background: linear-gradient(to bottom, #0000ff, #0000a0);
    color: white;
    padding: 3px 5px;
    font-family: Courier New, Courier, monospace;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.window-buttons {
    display: flex;
    gap: 3px;
}

.window-btn {
    width: 16px;
    height: 16px;
    background: var(--bg-gray);
    border: 1px outset #fff;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.window-content {
    background: white;
    padding: 13px 17px 16px 14px;
    border: 2px inset #999;
}

/* ============================================
   MARQUEE MADNESS
   ============================================ */

marquee, .marquee {
    background: var(--bg-navy);
    color: var(--laser-yellow);
    padding: 10px;
    font-family: Courier New, Courier, monospace;
    font-size: 24px;
    font-weight: bold;
    border-top: 3px solid var(--hot-pink);
    border-bottom: 3px solid var(--electric-blue);
    margin: 10px 0;
}

/* CSS marquee for modern browsers */
.css-marquee {
    overflow: hidden;
    white-space: nowrap;
}

.css-marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

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

/* ============================================
   BLINKING TEXT - Web 1.0 Classic
   ============================================ */

.blink {
    animation: blink-animation 1s steps(2, start) infinite;
}

@keyframes blink-animation {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

.glow-text {
    animation: glow-pulse 2s ease-in-out infinite;
    font-weight: bold;
}

@keyframes glow-pulse {
    0%, 100% {
        text-shadow: 0 0 5px var(--lime-green),
                     0 0 10px var(--lime-green);
    }
    50% {
        text-shadow: 0 0 20px var(--hot-pink),
                     0 0 30px var(--hot-pink),
                     0 0 40px var(--hot-pink);
    }
}

/* ============================================
   UNDER CONSTRUCTION
   ============================================ */

.under-construction {
    background: var(--laser-yellow);
    background-image: repeating-linear-gradient(
        45deg,
        var(--laser-yellow),
        var(--laser-yellow) 20px,
        #000 20px,
        #000 40px
    );
    padding: 15px;
    border: 5px solid var(--radical-red);
    text-align: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 24px;
    font-style: italic;
    color: var(--radical-red);
    margin: 20px 0;
}

/* ============================================
   VISITOR COUNTER - Classic
   ============================================ */

.visitor-counter {
    background: #000;
    color: var(--lime-green);
    padding: 10px 20px;
    font-family: Courier New, Courier, monospace;
    font-size: 14px;
    border: 3px outset var(--bg-gray);
    display: inline-block;
    margin: 10px 0;
}

.counter-digit {
    display: inline-block;
    background: #000;
    color: var(--electric-blue);
    border: 2px inset #333;
    padding: 5px 8px;
    margin: 0 2px;
    font-family: Courier New, Courier, monospace;
    font-size: 20px;
}

/* ============================================
   FORMS - Retro Style
   ============================================ */

input[type="text"],
input[type="email"],
input[type="password"],
textarea,
select {
    font-family: 'Comic Sans MS', Arial, sans-serif;
    font-size: 14px;
    padding: 8px;
    border: 2px inset #999;
    background: white;
    width: 100%;
    max-width: 400px;
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--hot-pink);
    background: #ffffcc;
}

label {
    font-family: Verdana, Arial, sans-serif;
    font-weight: bold;
    color: var(--bg-navy);
    display: block;
    margin-bottom: 5px;
}

/* ============================================
   ANIMATIONS - Chaos
   ============================================ */

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.spin {
    animation: spin 3s linear infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.bounce {
    animation: bounce 1s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s;
}

@keyframes rainbow-bg {
    0% { background-color: var(--radical-red); }
    16% { background-color: var(--neon-orange); }
    33% { background-color: var(--laser-yellow); }
    50% { background-color: var(--lime-green); }
    66% { background-color: var(--electric-blue); }
    83% { background-color: var(--cyber-purple); }
    100% { background-color: var(--hot-pink); }
}

.rainbow-bg {
    animation: rainbow-bg 5s linear infinite;
    color: white;
    padding: 10px;
}

/* ============================================
   DIVIDERS & DECORATIONS
   ============================================ */

hr {
    border: none;
    height: 5px;
    background: linear-gradient(to right,
        var(--radical-red),
        var(--neon-orange),
        var(--laser-yellow),
        var(--lime-green),
        var(--electric-blue),
        var(--cyber-purple),
        var(--hot-pink)
    );
    margin: 20px 0;
}

.star-divider {
    text-align: center;
    font-size: 24px;
    margin: 15px 0;
}

.star-divider::before {
    content: '★ ✧ ✦ ✧ ★ ✧ ✦ ✧ ★';
    color: var(--hot-pink);
    animation: rainbow-text 3s infinite;
}

/* ============================================
   GIF-STYLE LOADING
   ============================================ */

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--bg-gray);
    border-top: 5px solid var(--hot-pink);
    border-right: 5px solid var(--electric-blue);
    border-bottom: 5px solid var(--lime-green);
    border-left: 5px solid var(--laser-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.progress-bar {
    width: 100%;
    background: var(--bg-gray);
    border: 2px inset #999;
    height: 30px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right,
        var(--lime-green),
        var(--electric-blue),
        var(--hot-pink)
    );
    background-size: 200% 100%;
    animation: progress-shimmer 2s linear infinite;
    transition: width 0.3s;
}

@keyframes progress-shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* ============================================
   TEXT STYLES - Maximum Variety
   ============================================ */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.huge-text {
    font-size: 4rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1;
    font-style: italic;
}

.tiny-text {
    font-size: 10px;
    font-family: Courier New, Courier, monospace;
}

.shadow-text {
    text-shadow: 3px 3px 0 rgba(0,0,0,0.5);
}

.outline-text {
    color: white;
    text-shadow:
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000;
}

/* ============================================
   IMAGE EFFECTS
   ============================================ */

img {
    max-width: 100%;
    height: auto;
}

.retro-img {
    border: 5px ridge var(--bg-gray);
    box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
}

.spinning-img {
    animation: spin 5s linear infinite;
    display: inline-block;
}

.hover-grow {
    transition: transform 0.3s;
}

.hover-grow:hover {
    transform: scale(1.2);
}

/* ============================================
   LISTS - Styled
   ============================================ */

ul {
    list-style: none;
    padding-left: 20px;
}

ul li::before {
    content: '★ ';
    color: var(--hot-pink);
    font-size: 18px;
}

ol {
    padding-left: 20px;
}

ol li {
    padding-left: 10px;
}

/* ============================================
   GRID LAYOUTS - 90s Style (Float-based)
   ============================================ */

.grid-2 {
    width: 101%;
    margin-left: -3px;
    margin-right: 2px;
}

.grid-2 > * {
    float: left;
    width: 48.5%;
    margin-right: 2.3%;
    margin-bottom: 17px;
}

.grid-2 > *:nth-child(2n) {
    margin-right: 0;
    width: 48.7%;
}

.grid-3 {
    width: 100.5%;
    margin-left: 2px;
}

.grid-3 > * {
    float: left;
    width: 32.1%;
    margin-right: 1.8%;
    margin-bottom: 19px;
}

.grid-3 > *:nth-child(3n) {
    margin-right: 0;
    width: 32.4%;
}

.grid-4 {
    width: 99.8%;
    margin-left: -1px;
}

.grid-4 > * {
    float: left;
    width: 23.7%;
    margin-right: 1.6%;
    margin-bottom: 21px;
}

.grid-4 > *:nth-child(4n) {
    margin-right: 0;
    width: 24.1%;
}

/* Clearfix for old-school floats */
.grid-2:after,
.grid-3:after,
.grid-4:after {
    content: "";
    display: table;
    clear: both;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.float-left { float: left; margin-right: 15px; }
.float-right { float: right; margin-left: 15px; }
.clear { clear: both; }

.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }

.m-0 { margin: 0; }
.m-1 { margin: 11px; }
.m-2 { margin: 19px; }
.m-3 { margin: 32px; }

.p-0 { padding: 0; }
.p-1 { padding: 9px; }
.p-2 { padding: 21px; }
.p-3 { padding: 28px; }

/* ============================================
   COLOR UTILITIES
   ============================================ */

.bg-pink { background-color: var(--hot-pink); color: white; }
.bg-blue { background-color: var(--electric-blue); color: black; }
.bg-green { background-color: var(--lime-green); color: black; }
.bg-yellow { background-color: var(--laser-yellow); color: black; }
.bg-orange { background-color: var(--neon-orange); color: white; }
.bg-purple { background-color: var(--cyber-purple); color: white; }
.bg-red { background-color: var(--radical-red); color: white; }

.text-pink { color: var(--hot-pink); }
.text-blue { color: var(--electric-blue); }
.text-green { color: var(--lime-green); }
.text-yellow { color: var(--laser-yellow); }
.text-orange { color: var(--neon-orange); }
.text-purple { color: var(--cyber-purple); }
.text-red { color: var(--radical-red); }

/* ============================================
   RESPONSIVE - Basic
   ============================================ */

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 10px;
    }
    
    /* Sidebar stacks below content on mobile */
    main > div {
        flex-direction: column !important;
    }
    
    aside {
        width: 100% !important;
    }
}

/* ============================================
   SPECIAL EFFECTS
   ============================================ */

/* Cybernetic glitch */
.glitch {
    position: relative;
    display: inline-block;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: var(--electric-blue);
    animation: glitch-1 0.3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.glitch::after {
    color: var(--hot-pink);
    animation: glitch-2 0.3s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

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

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

/* ============================================
   SCROLLBARS - Custom
   ============================================ */

::-webkit-scrollbar {
    width: 16px;
}

::-webkit-scrollbar-track {
    background: var(--bg-gray);
    border: 2px inset #999;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom,
        var(--hot-pink),
        var(--electric-blue),
        var(--lime-green)
    );
    border: 2px outset #fff;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom,
        var(--lime-green),
        var(--electric-blue),
        var(--hot-pink)
    );
}

/* ============================================
   CURSOR EFFECTS
   ============================================ */

.pointer-cursor { cursor: pointer; }
.help-cursor { cursor: help; }
.wait-cursor { cursor: wait; }
.crosshair-cursor { cursor: crosshair; }

/* ============================================
   NEON GLOW BOXES
   ============================================ */

.neon-box {
    background: #000;
    color: var(--lime-green);
    border: 3px solid var(--lime-green);
    padding: 18px 23px 19px 22px;
    margin: 14px -2px 16px 3px;
    box-shadow:
        0 0 10px var(--lime-green),
        inset 0 0 10px var(--lime-green);
    font-family: Courier New, Courier, monospace;
}

.neon-box:hover {
    box-shadow:
        0 0 20px var(--hot-pink),
        0 0 30px var(--hot-pink),
        inset 0 0 20px var(--electric-blue);
    border-color: var(--hot-pink);
    color: var(--electric-blue);
}

/* ============================================
   RETRO GIF STYLING
   ============================================ */

/* Make all images retro by default */
img {
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
}

/* Retro border effects for GIFs */
img[src$=".gif"] {
    display: inline-block;
    border: 3px ridge #999;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.3);
}

/* Wiggle animation for interactive GIFs */
@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
    75% { transform: rotate(-3deg); }
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float {
    animation: float 3s ease-in-out infinite;
}

/* Pulse glow for special GIFs */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px currentColor,
                    0 0 10px currentColor;
    }
    50% {
        box-shadow: 0 0 20px currentColor,
                    0 0 30px currentColor,
                    0 0 40px currentColor;
    }
}

.pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Retro computer screen effect */
.crt-effect {
    position: relative;
    overflow: hidden;
}

.crt-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.1) 0px,
        transparent 1px,
        transparent 2px,
        rgba(0, 0, 0, 0.1) 3px
    );
    pointer-events: none;
    z-index: 1;
}

/* Spinning with different speeds */
.spin-slow {
    animation: spin 8s linear infinite;
}

.spin-fast {
    animation: spin 1s linear infinite;
}

/* Reverse spin */
.spin-reverse {
    animation: spin-reverse 5s linear infinite;
}

@keyframes spin-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* Multiple shake intensities */
.shake-intense {
    animation: shake-intense 0.3s infinite;
}

@keyframes shake-intense {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-10px); }
    20%, 40%, 60%, 80% { transform: translateX(10px); }
}

/* Color cycle for borders */
@keyframes rainbow-border {
    0% { border-color: var(--radical-red); }
    16% { border-color: var(--neon-orange); }
    33% { border-color: var(--laser-yellow); }
    50% { border-color: var(--lime-green); }
    66% { border-color: var(--electric-blue); }
    83% { border-color: var(--cyber-purple); }
    100% { border-color: var(--hot-pink); }
}

.rainbow-border-animated {
    animation: rainbow-border 3s linear infinite;
    border-width: 3px;
    border-style: solid;
}

/* Pixelated zoom effect */
.pixel-zoom:hover {
    transform: scale(1.5);
    image-rendering: pixelated;
    transition: transform 0.1s steps(3);
}

/* Retro TV static effect overlay */
.tv-static {
    position: relative;
}

.tv-static::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAFElEQVQYV2NkYGD4z8DAwMgABQAABQABsXf+PQAAAABJRU5ErkJggg==');
    opacity: 0.05;
    animation: tv-static-anim 0.5s infinite;
    pointer-events: none;
}

@keyframes tv-static-anim {
    0% { opacity: 0.05; }
    50% { opacity: 0.1; }
    100% { opacity: 0.05; }
}

