        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            image-rendering: pixelated;
            image-rendering: -moz-crisp-edges;
        }

        body {
            background-color: #000000;
            color: #cccccc;
            font-family: "Comic Sans MS", "Arial", sans-serif;
            font-size: 16px;
            line-height: 1.4;
            overflow-x: hidden;
            cursor: default;
            min-height: 100vh;
            background-image: 
                repeating-linear-gradient(
                    0deg,
                    transparent,
                    transparent 2px,
                    rgba(0, 20, 0, 0.1) 2px,
                    rgba(0, 20, 0, 0.1) 4px
                );
        }

        .container {
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            position: relative;
            border: 1px dashed #336633;
            /*background-color: rgba(10, 15, 10, 0.9);*/
            background-image: url('./medien/eyes.gif');
  background-size: cover;          /* Resizes to fill entire container */
  background-position: center;     /* Centers the animation */
  background-repeat: no-repeat;    /* Prevents tiling */
  background-attachment: fixed;    /* Keeps background static while scrolling */
            
            box-shadow: 0 0 20px rgba(0, 80, 0, 0.3);
        }
        
        .modal {
  display: none;
  position: fixed;
            z-index:9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,5,9,0);
            
            
}

.modal-inhalt {
  background: blue;
  padding: 20px;
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    
}

.modal-button {
  margin: 10px;
  padding: 8px 16px;
  cursor: pointer;
    background: green;
}
        
        .meinKnopf{
            background-color:blue;
        }
        
        .Vnavigation {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 30px 0;
            padding: 15px;
            background-color: rgba(0, 0, 30, 0.3);
            border-top: 1px solid #333;
            border-bottom: 1px solid #333;
        }

        .Vnav-button {
            background-color: #222;
            color: #ccc;
            border: 2px outset #666;
            padding: 8px 15px;
            margin: 5px;
            font-family: "Comic Sans MS", sans-serif;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
        }

        .Vnav-button:hover {
            background-color: #333;
            color: #ffff99;
            border: 2px inset #666;
        }

        .error-box {
            background-color: #300;
            color: #ff9999;
            border: 3px double #ff0000;
            padding: 12px;
            margin: 20px 0;
            font-family: monospace;
            font-size: 14px;
        }

        /* ROSENKOHL-MANN - ZUFÄLLIGE ERSCHEINUNG */
        .rosenkohl-man {
            position: fixed;
            z-index: 9999;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.1s;
            filter: sepia(0.8) hue-rotate(90deg) contrast(1.4) brightness(0.8);
            border: 3px solid #99ff99;
            box-shadow: 0 0 20px rgba(153, 255, 153, 0.5);
        }
        
        .rosenkohl-man.visible {
            opacity: 0.9;
        }
        
        .rosenkohl-man img {
            width: 1500px;
            height: 2000px;
            object-fit: cover;
            display: block;
        }
        
        .rosenkohl-man::after {
            content: "ROSENKOHL";
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            color: #99ff99;
            font-size: 12px;
            text-shadow: 0 0 5px #000;
            background-color: rgba(0, 0, 0, 0.7);
            padding: 2px 5px;
            white-space: nowrap;
        }

        .header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #336633;
            position: relative;
        }

        h1 {
            font-size: 28px;
            color: #99ff99;
            text-shadow: 2px 2px 0 #003300;
            letter-spacing: 3px;
            margin-bottom: 10px;
            animation: glitch 5s infinite;
        }

        @keyframes glitch {
            0%, 100% { transform: translate(0); }
            1% { transform: translate(-1px, 1px); }
            2% { transform: translate(1px, -1px); }
            3% { transform: translate(0); }
        }

        .subtitle {
            font-size: 14px;
            color: #88aa88;
            font-style: italic;
        }

        .uncanny-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
            margin: 30px 0;
        }

        .uncanny-item {
            border: 8px outset #445544;
            padding: 5px;
            background-color: #1a1a1a;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .uncanny-item:hover {
            transform: scale(1.02);
            border: 8px inset #445544;
        }

        .uncanny-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            filter: contrast(1.4) brightness(0.8) sepia(0.4) hue-rotate(90deg);
            transition: filter 0.5s;
        }

        .uncanny-img:hover {
            filter: contrast(1.6) brightness(1) sepia(0.6) hue-rotate(60deg);
        }

        .obsession-text {
            background-color: rgba(0, 40, 0, 0.8);
            color: #99ff99;
            padding: 12px;
            margin: 25px 0;
            text-align: center;
            border-left: 5px solid #ff6666;
            border-right: 5px solid #ff6666;
            font-size: 20px;
            position: relative;
            overflow: hidden;
        }

        .correct {
            color: #99ff99;
            font-weight: bold;
            text-shadow: 0 0 5px #99ff99;
        }

        .wrong {
            color: #ff6666;
            text-decoration: line-through;
            font-weight: bold;
        }

        .floating-corrections {
            position: fixed;
            pointer-events: none;
            z-index: 100;
            font-size: 16px;
            color: #99ff99;
            opacity: 0.7;
            animation: floatUp 15s linear infinite;
        }

        @keyframes floatUp {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.7;
            }
            90% {
                opacity: 0.7;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        .content {
            margin: 25px 0;
            padding: 20px;
            background-color: rgba(20, 25, 20, 0.6);
            border: 1px dotted #336633;
            position: relative;
        }

        .correction-box {
            background-color: #330000;
            color: #ff9999;
            border: 3px double #ff0000;
            padding: 15px;
            margin: 20px 0;
            font-family: monospace;
            font-size: 16px;
            position: relative;
            overflow: hidden;
        }

        .navigation {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            flex-direction:column;
            margin: 30px 0;
            padding: 15px;
            background-color: rgba(0, 30, 0, 0.3);
            border-top: 1px solid #336633;
            border-bottom: 1px solid #336633;
        }

        .nav-button {
            background-color: #223322;
            color: #aaddaa;
            border: 2px outset #668866;
            padding: 10px 20px;
            margin: 5px;
            font-family: "Comic Sans MS", sans-serif;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .nav-buttonR {
            background-color: #993322;
            color: #aaddaa;
            border: 2px outset #668866;
            padding: 10px 20px;
            margin: 5px;
            font-family: "Comic Sans MS", sans-serif;
            font-size: 18px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s;
        }        

        .nav-button:hover {
            background-color: #335533;
            color: #ccffcc;
            border: 2px inset #668866;
            transform: scale(1.05);
        }
        
        .nav-buttonR:hover {
            background-color: #335533;
            color: #ccffcc;
            border: 2px inset #668866;
            transform: scale(1.05);
        }        

        .footer {
            text-align: center;
            margin-top: 40px;
            padding-top: 15px;
            border-top: 1px solid #336633;
            color: #668866;
            font-size: 12px;
        }

        .counter {
            font-family: monospace;
            font-size: 18px;
            color: #99ff99;
            background-color: #001100;
            padding: 5px 10px;
            display: inline-block;
            border: 1px solid #339933;
            margin: 10px;
        }

        .whisper {
            position: absolute;
            color: #448844;
            font-size: 12px;
            transform: rotate(-5deg);
            opacity: 0.7;
            z-index: 1;
        }

        .blink {
            animation: blink 2s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        .apparition-counter {
            position: fixed;
            bottom: 10px;
            left: 10px;
            background-color: rgba(0, 20, 0, 0.8);
            color: #99ff99;
            padding: 5px 10px;
            font-size: 11px;
            border: 1px solid #336633;
            z-index: 100;
        }
        /* VOLLBILD-BLITZBILD MIT ZITTEREFFEKT */
.fullscreen-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9998;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.95);
    overflow: hidden;
}

.fullscreen-flash.active {
    display: flex;
    animation: fadeInFlash 0.05s forwards;
}

.flash-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: contrast(1.4) brightness(0.8) sepia(0.5) hue-rotate(90deg);
    border: 8px solid #99ff99;
    box-shadow: 0 0 80px rgba(153, 255, 153, 0.7);
}

/* ZITTER-ANIMATION FÜR BLITZBILD */
@keyframes shakeFlash {
    0% { transform: translate(0, 0) rotate(0deg); }
    10% { transform: translate(-15px, 10px) rotate(-2deg); }
    20% { transform: translate(12px, -10px) rotate(2deg); }
    30% { transform: translate(-10px, 12px) rotate(0deg); }
    40% { transform: translate(9px, -8px) rotate(2deg); }
    50% { transform: translate(-8px, 9px) rotate(-2deg); }
    60% { transform: translate(6px, -6px) rotate(0deg); }
    70% { transform: translate(-4px, 4px) rotate(2deg); }
    80% { transform: translate(3px, -3px) rotate(-2deg); }
    90% { transform: translate(-2px, 2px) rotate(0deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.shaking-flash {
    animation: shakeFlash 0.3s ease-in-out infinite;
}

@keyframes fadeInFlash {
    from { opacity: 0; }
    to { opacity: 1; }
}
        

        @media (max-width: 600px) {
            .container {
                margin: 10px;
                padding: 10px;
            }
            
            h1 {
                font-size: 22px;
            }
            
            .uncanny-gallery {
                grid-template-columns: 1fr;
            }
            
            .rosenkohl-man img {
                width: 100px;
                height: 150px;
            }
            
            
        }