* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            background: linear-gradient(180deg, #0a0a0a 0%, #1a0505 100%);
            color: #fff;
            font-family: 'Courier New', monospace;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
            animation: digitalBreathing 6s ease-in-out infinite;
        }

        /* Digital Breathing Effect - Makes the entire screen "breathe" */
        @keyframes digitalBreathing {
            0%, 100% { 
                transform: scale(1);
                filter: brightness(1);
            }
            50% { 
                transform: scale(1.005);
                filter: brightness(1.02);
            }
        }
        
        /* Data Corruption Veins */
        .corruption-veins {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .corruption-vein {
            position: absolute;
            background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.3), transparent);
            height: 1px;
            width: 0%;
            box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
            animation: veinSpread 8s ease-in-out infinite;
        }

        .corruption-vein.vertical {
            height: 0%;
            width: 1px;
            background: linear-gradient(0deg, transparent, rgba(255, 0, 0, 0.3), transparent);
            animation: veinSpreadVertical 8s ease-in-out infinite;
        }

        @keyframes veinSpread {
            0%, 100% { 
                width: 0%; 
                opacity: 0;
            }
            5% {
                opacity: 1;
            }
            50% { 
                width: 100%; 
                opacity: 0.8;
            }
            95% {
                opacity: 1;
            }
        }

        @keyframes veinSpreadVertical {
            0%, 100% { 
                height: 0%; 
                opacity: 0;
            }
            5% {
                opacity: 1;
            }
            50% { 
                height: 100%; 
                opacity: 0.8;
            }
            95% {
                opacity: 1;
            }
        }
        
        /* Binary Rain Effect */
        .binary-rain {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }
        
        .binary-digit {
            position: absolute;
            color: rgba(0, 255, 0, 0.1);
            font-family: 'Courier New', monospace;
            font-size: 14px;
            animation: binaryFall linear infinite;
            user-select: none;
        }
        
        @keyframes binaryFall {
            0% {
                transform: translateY(-100vh);
                opacity: 0;
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(100vh);
                opacity: 0;
            }
        }

        /* Digital Ghosts Effect */
        .digital-ghosts {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            overflow: hidden;
        }

        .digital-ghost {
            position: absolute;
            font-family: 'Courier New', monospace;
            font-size: 16px;
            color: rgba(100, 255, 255, 0.15);
            animation: ghostDrift linear infinite;
            user-select: none;
            text-shadow: 0 0 10px rgba(100, 255, 255, 0.3);
        }

        @keyframes ghostDrift {
            0% {
                transform: translateX(-200px) translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            5% {
                opacity: 0.4;
            }
            50% {
                opacity: 0.2;
                transform: translateX(50vw) translateY(50vh) rotate(180deg);
            }
            95% {
                opacity: 0.4;
            }
            100% {
                transform: translateX(calc(100vw + 200px)) translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* Glitch effect */
        @keyframes glitch {
            0% {
                text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                            -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
                            0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
            }
            15% {
                text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                            -0.05em -0.025em 0 rgba(0, 255, 0, 0.75),
                            0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
            }
            16% {
                text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                            0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                            -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
            }
            49% {
                text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                            0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                            -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
            }
            50% {
                text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                            0.05em 0 0 rgba(0, 255, 0, 0.75),
                            0 -0.05em 0 rgba(0, 0, 255, 0.75);
            }
            99% {
                text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                            0.05em 0 0 rgba(0, 255, 0, 0.75),
                            0 -0.05em 0 rgba(0, 0, 255, 0.75);
            }
            100% {
                text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75),
                            -0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
                            -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
            }
        }

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

        @keyframes criticalPulse {
            0%, 100% { 
                background-color: rgba(255, 0, 0, 0.1);
                transform: scale(1);
            }
            50% { 
                background-color: rgba(255, 0, 0, 0.3);
                transform: scale(1.02);
            }
        }

        @keyframes spectrumShift {
            0% { 
                background: linear-gradient(180deg, #ff4444, #ff0000);
            }
            14% { 
                background: linear-gradient(180deg, #ff8844, #ff4400);
            }
            28% { 
                background: linear-gradient(180deg, #ffff44, #ffaa00);
            }
            42% { 
                background: linear-gradient(180deg, #88ff44, #44ff00);
            }
            57% { 
                background: linear-gradient(180deg, #44ffff, #00aaff);
            }
            71% { 
                background: linear-gradient(180deg, #4488ff, #0044ff);
            }
            85% { 
                background: linear-gradient(180deg, #8844ff, #4400ff);
            }
            100% { 
                background: linear-gradient(180deg, #ff4444, #ff0000);
            }
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        header {
            text-align: center;
            padding: 4rem 0 2rem;
            position: relative;
        }
        
        h1 {
            font-size: clamp(2rem, 8vw, 5rem);
            letter-spacing: 0.1em;
            animation: glitch 2s infinite;
            margin-bottom: 1rem;
        }
        
        .tagline {
            color: #666;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .subtitle {
            color: #888;
            font-size: 0.9rem;
            font-style: italic;
            margin-bottom: 3rem;
        }
        
        .countdown-section {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
            border-radius: 10px;
            padding: 3rem;
            text-align: center;
            margin: 2rem auto;
            max-width: 800px;
            backdrop-filter: blur(10px);
        }
        
        .main-countdown {
            font-size: clamp(3rem, 10vw, 7rem);
            font-weight: bold;
            background: linear-gradient(180deg, #ff4444, #ff0000);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 1rem 0;
            text-shadow: 0 0 40px rgba(255, 0, 0, 0.5);
            animation: spectrumShift 8s infinite;
        }
        
        .time-units {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        
        .time-unit {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 68, 68, 0.2);
            padding: 1rem;
            border-radius: 5px;
        }
        
        .time-value {
            font-size: 2.5rem;
            color: #ff6666;
            font-weight: bold;
        }
        
        .time-label {
            font-size: 0.8rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }
        
        .status-bar {
            margin: 3rem 0;
            text-align: center;
        }
        
        .status {
            display: inline-block;
            padding: 1rem 2rem;
            background: rgba(255, 68, 68, 0.1);
            border: 1px solid #ff4444;
            border-radius: 5px;
            font-size: 1.1rem;
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }
        
        .updates {
            margin: 4rem 0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .update-header {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ff6666;
        }
        
        .update-item {
            background: rgba(255, 255, 255, 0.02);
            border-left: 3px solid #ff4444;
            padding: 1rem;
            margin: 1rem 0;
            position: relative;
            overflow: hidden;
        }
        
        .update-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 68, 68, 0.1), transparent);
            animation: sweep 3s infinite;
        }
        
        @keyframes sweep {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        .update-date {
            color: #666;
            font-size: 0.9rem;
        }
        
        .update-content {
            margin-top: 0.5rem;
        }
        
        
        .benchmark-section {
            margin: 4rem 0;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .graph-controls {
            text-align: center;
            margin: 2rem 0;
        }
        
        .scale-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #666;
            color: #fff;
            padding: 0.5rem 1.5rem;
            margin: 0 0.5rem;
            cursor: pointer;
            font-family: 'Courier New', monospace;
            transition: all 0.3s;
        }
        
        .scale-btn:hover {
            background: rgba(255, 68, 68, 0.1);
            border-color: #ff4444;
        }
        
        .scale-btn.active {
            background: rgba(255, 68, 68, 0.2);
            border-color: #ff4444;
            color: #ff6666;
        }
        
        .benchmark-graph {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid #333;
            border-radius: 10px;
            padding: 2rem;
            position: relative;
        }
        
        #benchmark-chart {
            max-width: 100%;
            height: auto;
        }
        
        .benchmark-legend {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .legend-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .legend-color {
            width: 20px;
            height: 3px;
            display: block;
        }

        .panic-meter-container {
            margin-top: 2rem;
            text-align: center;
        }

        .panic-label {
            font-size: 1.2rem;
            color: #ff4444;
            margin-bottom: 0.5rem;
            letter-spacing: 0.2em;
        }

        .panic-meter {
            background: rgba(0, 0, 0, 0.5);
            border: 2px solid #ff4444;
            height: 30px;
            max-width: 600px;
            margin: 1rem auto;
            position: relative;
            overflow: hidden;
        }

        .panic-fill {
            background: linear-gradient(90deg, #ff4444, #ff0000);
            height: 100%;
            width: 0%;
            transition: width 0.5s ease;
            box-shadow: 0 0 20px rgba(255, 68, 68, 0.8);
        }

        .panic-warnings {
            margin-top: 1rem;
        }

        .panic-warning {
            color: #ff6666;
            font-size: 0.9rem;
            margin: 0.3rem 0;
            animation: blink 2s infinite;
        }

        @keyframes blink {
            0%, 50%, 100% { opacity: 1; }
            25%, 75% { opacity: 0.3; }
        }

        .urgent-bulletin {
            background: rgba(255, 68, 68, 0.1);
            border: 3px solid #ff4444;
            border-radius: 10px;
            padding: 2rem;
            margin: 2rem auto;
            max-width: 800px;
            animation: shake 5s infinite;
        }

        @keyframes shake {
            0%, 98%, 100% { transform: translateX(0); }
            98.5% { transform: translateX(-2px); }
            99% { transform: translateX(2px); }
            99.5% { transform: translateX(-2px); }
        }

        .bulletin-header {
            font-size: 1.8rem;
            color: #ff4444;
            text-align: center;
            margin-bottom: 1rem;
            animation: pulse 1s infinite;
        }

        .bulletin-content {
            text-align: center;
            line-height: 1.8;
        }

        .bulletin-footer {
            margin-top: 1rem;
            font-style: italic;
            color: #888;
            font-size: 0.9rem;
        }

        .did-you-know {
            background: linear-gradient(135deg, rgba(68, 68, 255, 0.1), rgba(255, 68, 255, 0.1));
            border: 2px solid #6666ff;
            border-radius: 10px;
            padding: 2rem;
            margin: 2rem auto;
            max-width: 800px;
            text-align: center;
        }

        .dyk-header {
            font-size: 1.5rem;
            color: #8888ff;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .dyk-content {
            font-size: 1.1rem;
            color: #fff;
            line-height: 1.6;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s ease;
        }

        .ai-log-section {
            margin: 4rem auto;
            max-width: 900px;
            background: rgba(0, 100, 0, 0.05);
            border: 2px solid #00ff00;
            border-radius: 10px;
            padding: 2rem;
        }

        .ai-log-subtitle {
            color: #888;
            text-align: center;
            font-style: italic;
            margin-bottom: 2rem;
        }

        .ai-log-entry {
            background: rgba(0, 0, 0, 0.3);
            border-left: 4px solid #00ff00;
            padding: 1.5rem;
            margin: 1rem 0;
            font-family: 'Courier New', monospace;
        }

        .log-timestamp {
            color: #00ff00;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .log-message {
            color: #ccc;
            line-height: 1.6;
            margin: 1rem 0;
        }

        .log-signature {
            color: #00aa00;
            font-style: italic;
            text-align: right;
            margin-top: 1rem;
        }

        .survival-tips {
            margin: 4rem auto;
            max-width: 1000px;
        }

        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .tip-card {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid #444;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s;
        }

        .tip-card:hover {
            border-color: #ff6666;
            background: rgba(255, 68, 68, 0.05);
            transform: translateY(-5px);
        }

        .tip-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .tip-title {
            font-size: 1.1rem;
            color: #ff8888;
            margin-bottom: 0.5rem;
            font-weight: bold;
        }

        .tip-text {
            color: #aaa;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        /* New Probability Matrix Styles */
        .probability-matrix {
            margin: 4rem auto;
            max-width: 900px;
            background: rgba(255, 0, 0, 0.05);
            border: 2px solid #ff4444;
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
        }

        .probability-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .prob-item {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid #ff6666;
            border-radius: 8px;
            padding: 1.5rem;
            position: relative;
            overflow: hidden;
        }

        .prob-item.critical {
            animation: criticalPulse 1s infinite;
            border-color: #ff0000;
        }

        .prob-label {
            font-size: 0.9rem;
            color: #ccc;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .prob-value {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .prob-trend {
            font-size: 0.8rem;
            font-style: italic;
        }

        .prob-good { color: #44ff44; }
        .prob-bad { color: #ff4444; }
        .prob-neutral { color: #ffaa00; }

        /* Emergency Kit Styles */
        .emergency-kit {
            margin: 4rem auto;
            max-width: 1000px;
            background: rgba(255, 165, 0, 0.05);
            border: 2px solid #ffaa00;
            border-radius: 10px;
            padding: 2rem;
        }

        .kit-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .kit-item {
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid #666;
            border-radius: 8px;
            padding: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            transition: all 0.3s;
        }

        .kit-item:hover {
            border-color: #ffaa00;
            background: rgba(255, 165, 0, 0.05);
        }

        .kit-icon {
            font-size: 2rem;
            min-width: 50px;
            text-align: center;
        }

        .kit-info h4 {
            color: #ffcc66;
            font-size: 1rem;
            margin-bottom: 0.3rem;
        }

        .kit-info p {
            color: #aaa;
            font-size: 0.85rem;
            line-height: 1.4;
        }

        /* AI Battle Royale Styles */
        .battle-royale {
            margin: 4rem auto;
            max-width: 1000px;
            background: rgba(138, 43, 226, 0.05);
            border: 2px solid #8a2be2;
            border-radius: 10px;
            padding: 2rem;
        }

        .battle-arena {
            margin-top: 2rem;
        }

        .battle-contestant {
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid #666;
            border-radius: 8px;
            padding: 1rem;
            margin: 0.5rem 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.5s;
        }

        .battle-contestant.winner {
            border-color: #8a2be2;
            background: rgba(138, 43, 226, 0.1);
            animation: matrixShake 0.5s ease-in-out;
        }

        .contestant-name {
            font-weight: bold;
            color: #bb88ff;
            font-size: 1.1rem;
        }

        .contestant-stats {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .stat-item {
            text-align: center;
        }

        .stat-label {
            font-size: 0.7rem;
            color: #888;
            text-transform: uppercase;
        }

        .stat-value {
            font-size: 1.2rem;
            font-weight: bold;
            color: #bb88ff;
        }

        .battle-log {
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid #8a2be2;
            border-radius: 8px;
            padding: 1rem;
            margin-top: 1rem;
            max-height: 200px;
            overflow-y: auto;
            font-family: 'Courier New', monospace;
        }

        .battle-log-entry {
            color: #bb88ff;
            font-size: 0.85rem;
            margin: 0.3rem 0;
            opacity: 0;
            animation: fadeIn 0.5s ease-in forwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .site-footer {
            background: rgba(0, 0, 0, 0.5);
            border-top: 2px solid #ff4444;
            margin-top: 4rem;
            padding: 3rem 2rem 2rem;
            text-align: center;
        }

        .footer-content h3 {
            color: #ff6666;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .disclaimer {
            color: #888;
            font-size: 0.85rem;
            margin: 0.5rem 0;
            font-style: italic;
        }

        .footer-meta {
            margin-top: 2rem;
            padding-top: 1rem;
            border-top: 1px solid #333;
        }

        .footer-meta p {
            color: #666;
            font-size: 0.8rem;
            margin: 0.3rem 0;
        }

        .small-print {
            font-size: 0.7rem !important;
            color: #555 !important;
        }

        @media (max-width: 768px) {
            .time-units {
                grid-template-columns: repeat(2, 1fr);
            }

            #benchmark-chart {
                height: 300px;
            }

            .probability-grid {
                grid-template-columns: 1fr;
            }

            .kit-items {
                grid-template-columns: 1fr;
            }
        }