 html {
    cursor: url("cursor/cursor\ 1.png"), default;
  }



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

/* Track */
::-webkit-scrollbar-track {
  background: #b95c5c;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #750303; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #2b0000; 
}
@import url('https://fonts.googleapis.com/css2?family=Creepster&family=VT323&family=Share+Tech+Mono&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #0a0000;
            color: #ff0000;
            font-family: 'VT323', monospace;
            overflow-x: hidden;
            cursor: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20"><circle cx="10" cy="10" r="8" fill="%23ff0000" opacity="0.6"/></svg>'), auto;
        }

        .glitch-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(139, 0, 0, 0.03) 2px, rgba(139, 0, 0, 0.03) 4px),
                radial-gradient(circle at 20% 80%, rgba(139, 0, 0, 0.1), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 0, 0, 0.05), transparent 50%);
            z-index: -1;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }

        .tv-static {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            opacity: 0.15;
            background-image: 
                repeating-linear-gradient(0deg, transparent 0px, rgba(255,255,255,.03) 1px, transparent 2px),
                repeating-linear-gradient(90deg, transparent 0px, rgba(255,255,255,.03) 1px, transparent 2px);
            animation: tv-static-anim 0.2s infinite;
        }

        @keyframes tv-static-anim {
            0% { 
                background-position: 0 0, 0 0;
                filter: contrast(1.2) brightness(0.8);
            }
            25% { 
                background-position: 2px 1px, 1px 2px;
                filter: contrast(1.1) brightness(0.9);
            }
            50% { 
                background-position: 1px 2px, 2px 1px;
                filter: contrast(1.3) brightness(0.7);
            }
            75% { 
                background-position: 3px 1px, 1px 3px;
                filter: contrast(1.0) brightness(1.0);
            }
            100% { 
                background-position: 0 0, 0 0;
                filter: contrast(1.2) brightness(0.8);
            }
        }

        .vhs-lines {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                transparent 0px,
                rgba(255, 0, 0, 0.02) 1px,
                transparent 2px,
                rgba(0, 0, 0, 0.1) 3px,
                transparent 4px
            );
            z-index: 50;
            pointer-events: none;
            animation: vhs-drift 0.5s infinite linear;
        }

        @keyframes vhs-drift {
            0% { transform: translateY(0px); }
            100% { transform: translateY(4px); }
        }

        .signal-interference {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 45;
            pointer-events: none;
            animation: signal-flicker 8s infinite;
            opacity: 0;
        }

        @keyframes signal-flicker {
            0%, 90%, 100% { opacity: 0; }
            91% { 
                opacity: 0.8;
                background: linear-gradient(
                    90deg,
                    transparent 0%,
                    rgba(255, 0, 0, 0.3) 10%,
                    transparent 20%,
                    rgba(139, 0, 0, 0.2) 30%,
                    transparent 40%
                );
            }
            92% { opacity: 0; }
            93% { 
                opacity: 0.6;
                background: linear-gradient(
                    90deg,
                    transparent 40%,
                    rgba(255, 0, 0, 0.4) 50%,
                    transparent 60%
                );
            }
            94% { opacity: 0; }
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
            position: relative;
            animation: vhs-shake 0.3s infinite;
        }

        @keyframes vhs-shake {
            0%, 100% { transform: translateX(0); }
            10% { transform: translateX(-1px); }
            20% { transform: translateX(1px); }
            30% { transform: translateX(-1px); }
            40% { transform: translateX(1px); }
            50% { transform: translateX(0); }
        }

        .eyes-watching {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-around;
            padding: 20px;
            z-index: 10;
            pointer-events: none;
        }

        .eye {
            width: 60px;
            height: 40px;
            background: #1a0000;
            border-radius: 50%;
            position: relative;
            border: 2px solid #8b0000;
            animation: blink 4s infinite;
        }

        .eye::before {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: #ff0000;
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            box-shadow: 0 0 20px #ff0000;
        }

        @keyframes blink {
            0%, 100% { height: 40px; }
            98%, 99% { height: 2px; }
        }

        header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        h1 {
            font-family: initial;
            font-size: 5rem;
            color: #8b0000;
            text-shadow: 
                0 0 10px #ff0000,
                0 0 20px #ff0000,
                0 0 30px #8b0000,
                2px 2px 0 #000;
            animation: glitch-title 2s infinite;
            margin-bottom: 20px;
            position: relative;
        }

        @keyframes glitch-title {
            0%, 100% { 
                transform: translate(0);
                text-shadow: 
                    0 0 10px #ff0000,
                    0 0 20px #ff0000,
                    0 0 30px #8b0000,
                    2px 2px 0 #000;
            }
            5% { 
                transform: translate(-3px, 3px);
                text-shadow: 
                    3px 0 #ff0000,
                    -3px 0 #0000ff,
                    0 0 30px #8b0000;
            }
            10% { 
                transform: translate(3px, -3px);
                text-shadow: 
                    -3px 0 #ff0000,
                    3px 0 #0000ff,
                    0 0 30px #8b0000;
            }
            15% { 
                transform: translate(0);
            }
            20% { 
                transform: translate(2px, -2px);
                text-shadow: 
                    -2px 0 #ff0000,
                    2px 0 #00ff00,
                    0 0 30px #8b0000;
            }
            25%, 90% { 
                transform: translate(0);
                text-shadow: 
                    0 0 10px #ff0000,
                    0 0 20px #ff0000,
                    0 0 30px #8b0000,
                    2px 2px 0 #000;
            }
            91% {
                transform: translate(-2px, 2px) skewX(-2deg);
            }
            92% {
                transform: translate(2px, -2px) skewX(2deg);
            }
            93%, 95% {
                transform: translate(0);
            }
        }

        .music-control {
            background: linear-gradient(135deg, #1a0000, #0a0000);
            border: 2px solid #8b0000;
            padding: 15px 30px;
            display: inline-block;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 0 20px rgba(139, 0, 0, 0.5);
        }

        .music-control:hover {
            background: #1a0000;
            box-shadow: 0 0 30px rgba(255, 0, 0, 0.8);
            transform: scale(1.05);
        }

        .music-control summary {
            font-size: 1.3rem;
            color: #ff0000;
            list-style: none;
            cursor: pointer;
        }

        .featured-image {
            text-align: center;
            margin: 60px 0;
            position: relative;
            filter: contrast(1.1);
        }

        .featured-image img {
            max-width: 100%;
            height: auto;
            border: 4px solid #8b0000;
            box-shadow: 
                0 0 30px rgba(255, 0, 0, 0.5),
                inset 0 0 30px rgba(0, 0, 0, 0.8);
            animation: float 6s ease-in-out infinite, distortion 10s ease-in-out infinite;
        }

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

        @keyframes distortion {
            0%, 100% { 
                filter: hue-rotate(0deg) contrast(1);
            }
            33% { 
                filter: hue-rotate(5deg) contrast(1.1);
            }
            66% { 
                filter: hue-rotate(-5deg) contrast(0.9);
            }
        }

        .content {
            background: linear-gradient(135deg, rgba(26, 0, 0, 0.8), rgba(10, 0, 0, 0.9));
            border: 3px solid #8b0000;
            padding: 40px;
            margin: 40px 0;
            box-shadow: 
                0 0 40px rgba(139, 0, 0, 0.4),
                inset 0 0 40px rgba(0, 0, 0, 0.6);
            position: relative;
            overflow: hidden;
            animation: chromatic-aberration 5s ease-in-out infinite;
        }

        @keyframes chromatic-aberration {
            0%, 100% {
                filter: drop-shadow(0px 0px 0px rgba(255, 0, 0, 0));
            }
            50% {
                filter: drop-shadow(2px 0px 0px rgba(255, 0, 0, 0.3)) drop-shadow(-2px 0px 0px rgba(0, 0, 255, 0.3));
            }
        }

        .content::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, transparent, #8b0000, transparent);
            z-index: -1;
            animation: border-flow 3s linear infinite;
        }

        .content::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                90deg,
                transparent,
                rgba(255, 0, 0, 0.1),
                transparent
            );
            animation: scan-line 8s infinite;
        }

        @keyframes scan-line {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .text-block {
            margin: 40px 0;
            padding: 30px;
            background: rgba(0, 0, 0, 0.5);
            border-left: 4px solid #8b0000;
        }

        p {
            font-size: 1.3rem;
            line-height: 1.8;
            margin: 20px 0;
            color: #ff6666;
            text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
        }

        .inner-voice {
            color: #ff0000;
            font-style: italic;
            background: rgba(139, 0, 0, 0.1);
            padding: 15px;
            border-left: 4px solid #ff0000;
            margin: 30px 0;
            box-shadow: 0 0 20px rgba(255, 0, 0, 0.2);
        }

        .inner-voice::before {
            content: '◆ ';
            color: #8b0000;
        }

        .spacer {
            height: 100px;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 10px,
                rgba(139, 0, 0, 0.1) 10px,
                rgba(139, 0, 0, 0.1) 11px
            );
            margin: 60px 0;
        }

        .revelation {
            text-align: center;
            font-size: 1.5rem;
            color: #ff0000;
            margin: 80px 0;
            animation: intensify 2s ease-in-out infinite;
        }

        @keyframes intensify {
            0%, 100% { 
                opacity: 0.6;
                text-shadow: 0 0 10px #ff0000;
            }
            50% { 
                opacity: 1;
                text-shadow: 0 0 30px #ff0000, 0 0 60px #8b0000;
            }
        }

        hr {
            border: none;
            height: 3px;
            background: linear-gradient(90deg, transparent, #8b0000, transparent);
            margin: 60px 0;
            box-shadow: 0 0 10px rgba(139, 0, 0, 0.5);
        }

        .back-link {
            display: inline-block;
            background: linear-gradient(135deg, #1a0000, #0a0000);
            color: #35cc0f;
            padding: 15px 40px;
            text-decoration: none;
            border: 2px solid #35cc0f;
            font-size: 1.3rem;
            transition: all 0.3s;
            box-shadow: 0 0 20px rgba(53, 204, 15, 0.3);
        }

        .back-link:hover {
            background: #0a0000;
            box-shadow: 0 0 40px rgba(53, 204, 15, 0.6);
            transform: scale(1.1);
        }

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

        @keyframes static-move {
            0% { transform: translateY(0); }
            100% { transform: translateY(2px); }
        }

        @media (max-width: 768px) {
            h1 { font-size: 3rem; }
            .content { padding: 20px; }
            p { font-size: 1.1rem; }
            .eye { width: 40px; height: 30px; }
        }

         .random-texts {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .random-text {
            position: absolute;
            color: #ff0000;
            font-family: 'Share Tech Mono', monospace;
            font-size: 2rem;
            font-weight: bold;
            opacity: 0;
            text-shadow: 
                0 0 20px rgba(255, 0, 0, 1),
                0 0 40px rgba(255, 0, 0, 0.8),
                0 0 60px rgba(139, 0, 0, 0.6),
                2px 2px 4px rgba(0, 0, 0, 0.9);
            animation: static-glitch 3s ease-in-out infinite;
            filter: brightness(1.5);
        }

        @keyframes static-glitch {
            0% {
                opacity: 0.8;
                transform: translate(2px, -1px);
            }
            2% {
                opacity: 0.4;
                transform: translate(-3px, 2px);
            }
            4% {
                opacity: 0.9;
                transform: translate(1px, -2px);
            }
            6% {
                opacity: 0.5;
                transform: translate(-2px, 3px);
            }
            8% {
                opacity: 0.85;
                transform: translate(3px, -1px);
            }
            10% {
                opacity: 0.6;
                transform: translate(-1px, 2px);
            }
            12% {
                opacity: 0.95;
                transform: translate(2px, 1px);
            }
            14% {
                opacity: 0.45;
                transform: translate(-3px, -2px);
            }
            16% {
                opacity: 0.9;
                transform: translate(1px, 3px);
            }
            18% {
                opacity: 0.55;
                transform: translate(-2px, -1px);
            }
            20% {
                opacity: 0.8;
                transform: translate(3px, 2px);
            }
            22% {
                opacity: 0.5;
                transform: translate(-1px, -3px);
            }
            24% {
                opacity: 0.9;
                transform: translate(2px, 1px);
            }
            26% {
                opacity: 0.6;
                transform: translate(-3px, 2px);
            }
            28% {
                opacity: 0.85;
                transform: translate(1px, -2px);
            }
            30% {
                opacity: 0.5;
                transform: translate(-2px, 3px);
            }
            32% {
                opacity: 0.9;
                transform: translate(3px, -1px);
            }
            34% {
                opacity: 0.65;
                transform: translate(-1px, 1px);
            }
            36% {
                opacity: 0.8;
                transform: translate(2px, -3px);
            }
            38% {
                opacity: 0.55;
                transform: translate(-3px, 2px);
            }
            40% {
                opacity: 0.95;
                transform: translate(1px, -1px);
            }
            42% {
                opacity: 0.6;
                transform: translate(-2px, 3px);
            }
            44% {
                opacity: 0.85;
                transform: translate(3px, 1px);
            }
            46% {
                opacity: 0.5;
                transform: translate(-1px, -2px);
            }
            48% {
                opacity: 0.9;
                transform: translate(2px, 2px);
            }
            50% {
                opacity: 0.6;
                transform: translate(-3px, -1px);
            }
            52% {
                opacity: 0.8;
                transform: translate(1px, 3px);
            }
            54% {
                opacity: 0.55;
                transform: translate(-2px, 1px);
            }
            56% {
                opacity: 0.9;
                transform: translate(3px, -2px);
            }
            58% {
                opacity: 0.65;
                transform: translate(-1px, 2px);
            }
            60% {
                opacity: 0.85;
                transform: translate(2px, -1px);
            }
            62% {
                opacity: 0.5;
                transform: translate(-3px, 3px);
            }
            64% {
                opacity: 0.95;
                transform: translate(1px, -2px);
            }
            66% {
                opacity: 0.6;
                transform: translate(-2px, 1px);
            }
            68% {
                opacity: 0.8;
                transform: translate(3px, 2px);
            }
            70% {
                opacity: 0.55;
                transform: translate(-1px, -3px);
            }
            72% {
                opacity: 0.9;
                transform: translate(2px, 1px);
            }
            74% {
                opacity: 0.65;
                transform: translate(-3px, -1px);
            }
            76% {
                opacity: 0.85;
                transform: translate(1px, 3px);
            }
            78% {
                opacity: 0.5;
                transform: translate(-2px, 2px);
            }
            80% {
                opacity: 0.9;
                transform: translate(3px, -2px);
            }
            82% {
                opacity: 0.6;
                transform: translate(-1px, 1px);
            }
            84% {
                opacity: 0.85;
                transform: translate(2px, -3px);
            }
            86% {
                opacity: 0.55;
                transform: translate(-3px, 2px);
            }
            88% {
                opacity: 0.95;
                transform: translate(1px, 1px);
            }
            90% {
                opacity: 0.6;
                transform: translate(-2px, -2px);
            }
            92% {
                opacity: 0.8;
                transform: translate(3px, 3px);
            }
            94% {
                opacity: 0.5;
                transform: translate(-1px, -1px);
            }
            96% {
                opacity: 0.9;
                transform: translate(2px, 2px);
            }
            98% {
                opacity: 0.65;
                transform: translate(-3px, 1px);
            }
            100% {
                opacity: 0.8;
                transform: translate(2px, -1px);
            }
        }

        .random-text:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
            animation-duration: 1s;
        }

        .random-text:nth-child(2) {
            top: 20%;
            right: 8%;
            animation-delay: 2s;
            animation-duration: 1s;
            font-size: 1.8rem;
        }

        .random-text:nth-child(3) {
            bottom: 15%;
            left: 10%;
            animation-delay: 4s;
            animation-duration: 1s;
        }

        .random-text:nth-child(4) {
            top: 60%;
            right: 5%;
            animation-delay: 6s;
            animation-duration: 1s;
            font-size: 2rem;
        }

        .random-text:nth-child(5) {
            top: 40%;
            left: 15%;
            animation-delay: 8s;
            animation-duration: 1s;
        }

        .random-text:nth-child(6) {
            bottom: 30%;
            right: 12%;
            animation-delay: 10s;
            animation-duration: 1s;
            font-size: 1.3rem;
        }

        .random-text:nth-child(7) {
            top: 80%;
            left: 50%;
            animation-delay: 12s;
            animation-duration: 1s;
            transform: translateX(-50%);
        }

        .random-text:nth-child(8) {
            top: 25%;
            left: 30%;
            animation-delay: 14s;
            animation-duration: 1s;
            font-size: 2.5rem;
        }

        .random-text:nth-child(9) {
            bottom: 10%;
            right: 20%;
            animation-delay: 16s;
            animation-duration: 1s;
        }

        .random-text:nth-child(10) {
            top: 60%;
            right: 25%;
            animation-delay: 18s;
            animation-duration: 1s;
            font-size: 1.7rem;
        }

        .random-text:nth-child(11) {
            top: 46%;
            right: 10%;
            animation-delay: 20s;
            animation-duration: 1s;
            font-size: 1.7rem;
        }

        .random-text:nth-child(12) {
            top: 50%;
            right: 55%;
            animation-delay: 22s;
            animation-duration: 1s;
            font-size: 1.7rem;
        }

        .random-text:nth-child(13) {
            top: 60%;
            right: 55%;
            animation-delay: 24s;
            animation-duration: 1s;
            font-size: 1.7rem;
        }

        .random-text:nth-child(14) {
            top: 30%;
            right: 75%;
            animation-delay: 26s;
            animation-duration: 1s;
            font-size: 1.7rem;
        }

        @media (max-width: 768px) {
            h1 { font-size: 3rem; }
            .content { padding: 20px; }
            p { font-size: 1.1rem; }
            .eye { width: 40px; height: 30px; }
        }