/* 214.icu - Horror Transmission Station - Mobile First */
@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Orbitron:wght@400;700;900&family=Share+Tech+Mono&display=swap');

:root {
  /* Horror Color Palette - More Expressive and Terrifying */
  --blood-crimson: #dc143c;      /* Deep blood red */
  --neon-green: #39ff14;         /* Toxic green */
  --electric-blue: #00ffff;      /* Electric cyan */
  --poison-purple: #800080;      /* Poison purple */
  --sulfur-yellow: #ffff00;      /* Sulfur yellow */
  --acid-orange: #ff4500;        /* Acid orange */
  --shadow-black: #000000;       /* Pure black */
  --dark-gray: #1a1a1a;          /* Dark gray */
  --bone-white: #f5f5dc;         /* Bone white */
  --rust-red: #b7410e;           /* Rust red */
  --toxic-lime: #32cd32;         /* Toxic lime */
  --midnight-blue: #191970;      /* Midnight blue */
  
  /* Background Colors */
  --bg-black: #000000;
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  
  /* Text Colors */
  --text-white: #ffffff;
  --text-dim: #888888;
  --text-dark: #333333;
  
  /* Shadow Colors */
  --shadow-dark: rgba(0, 0, 0, 0.95);
  --shadow-blood: rgba(220, 20, 60, 0.3);
  --shadow-toxic: rgba(57, 255, 20, 0.3);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #000000 0%, #1a0000 25%, #000000 50%, #001a00 75%, #000000 100%);
  color: var(--text-white);
  font-family: 'Creepster', cursive;
  overflow-x: hidden;
  cursor: none;
  position: relative;
  min-height: 100vh;
}

/* Horror Background Elements */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(220, 20, 60, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.9) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(57, 255, 20, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 60% 60%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -2;
  animation: horror-pulse 10s ease-in-out infinite;
}

/* Floating Horror Symbols */
.horror-symbols {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.horror-symbol {
  position: absolute;
  color: var(--blood-crimson);
  font-size: 1.5rem;
  opacity: 0;
  text-shadow: 0 0 8px var(--blood-crimson);
  animation: float-symbol 20s infinite linear;
  font-family: 'Creepster', cursive;
}

.horror-symbol:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; color: var(--blood-crimson); }
.horror-symbol:nth-child(2) { top: 25%; left: 85%; animation-delay: 3s; color: var(--neon-green); }
.horror-symbol:nth-child(3) { top: 60%; left: 10%; animation-delay: 6s; color: var(--electric-blue); }
.horror-symbol:nth-child(4) { top: 80%; left: 80%; animation-delay: 9s; color: var(--poison-purple); }
.horror-symbol:nth-child(5) { top: 40%; left: 50%; animation-delay: 12s; color: var(--sulfur-yellow); }

/* Custom 214 Cursor */
.cursor {
  width: 25px;
  height: 25px;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: all 0.1s ease;
  font-family: 'Creepster', cursive;
  font-size: 1.2rem;
  color: var(--blood-crimson);
  text-shadow: 0 0 8px var(--blood-crimson);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor::before {
  content: '214';
  animation: cursor-glitch 0.5s infinite;
}

.cursor.hover {
  transform: scale(1.6);
  color: var(--neon-green);
  text-shadow: 0 0 15px var(--neon-green);
}

/* Hidden Symbols that appear on mouse movement */
.hidden-symbol {
  position: absolute;
  color: var(--poison-purple);
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  font-family: 'Creepster', cursive;
  text-shadow: 0 0 6px var(--poison-purple);
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.hidden-symbol.visible {
  opacity: 1;
  animation: symbol-flicker 2s infinite;
}

/* Main container with horror styling - Mobile First */
.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid var(--blood-crimson);
  border-radius: 15px;
  box-shadow: 
    0 0 40px rgba(220, 20, 60, 0.6),
    inset 0 0 40px rgba(0, 0, 0, 0.9);
  margin: 0.5rem;
}

/* 214 Sigil with horror effects - Mobile First */
.sigil {
  font-family: 'Creepster', cursive;
  font-size: 5rem;
  font-weight: 900;
  color: var(--blood-crimson);
  text-shadow: 
    0 0 20px var(--blood-crimson),
    0 0 40px var(--blood-crimson),
    0 0 60px var(--blood-crimson),
    0 0 80px var(--blood-crimson);
  margin-bottom: 2rem;
  animation: horror-glow 4s ease-in-out infinite alternate, horror-glitch 3s infinite;
  position: relative;
  filter: drop-shadow(0 0 15px var(--blood-crimson));
  text-align: center;
}

.sigil::before {
  content: '214';
  position: absolute;
  top: 0;
  left: 0;
  color: var(--neon-green);
  animation: horror-glitch-green 2s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  text-shadow: 0 0 15px var(--neon-green);
}

.sigil::after {
  content: '214';
  position: absolute;
  top: 0;
  left: 0;
  color: var(--poison-purple);
  animation: horror-glitch-purple 3s infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  text-shadow: 0 0 15px var(--poison-purple);
}



/* Countdown with horror effects - Mobile First */
.countdown {
  text-align: center;
  margin-bottom: 2rem;
  background: rgba(0, 0, 0, 0.95);
  padding: 1.5rem;
  border: 2px solid var(--electric-blue);
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
  width: 100%;
  max-width: 350px;
}

.countdown-bar {
  width: 100%;
  max-width: 280px;
  height: 6px;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 3px;
  overflow: hidden;
  margin: 1rem auto;
  border: 1px solid var(--electric-blue);
}

.countdown-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--electric-blue), var(--poison-purple), var(--blood-crimson));
  transition: width 1s ease;
  animation: horror-pulse 3s infinite;
  box-shadow: 0 0 15px var(--electric-blue);
}

.countdown-timer {
  font-size: 1rem;
  color: var(--electric-blue);
  margin-top: 0.8rem;
  text-shadow: 0 0 8px var(--electric-blue);
  font-family: 'Share Tech Mono', monospace;
}

/* Enter Button with horror styling - Mobile First */
.enter-btn {
  background: linear-gradient(45deg, var(--blood-crimson), var(--rust-red), var(--blood-crimson));
  border: 3px solid var(--blood-crimson);
  color: var(--text-white);
  padding: 1.2rem 2rem;
  font-family: 'Creepster', cursive;
  font-size: 1.3rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.4s ease;
  border-radius: 12px;
  text-shadow: 0 0 10px var(--blood-crimson);
  box-shadow: 0 0 25px rgba(220, 20, 60, 0.7);
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.enter-btn:hover {
  background: linear-gradient(45deg, var(--blood-crimson), var(--rust-red), var(--blood-crimson));
  color: var(--text-white);
  box-shadow: 0 0 40px var(--blood-crimson);
  transform: translateY(-3px) scale(1.03);
  text-shadow: 0 0 20px var(--blood-crimson);
  border-color: var(--neon-green);
}

.enter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.enter-btn:hover::before {
  left: 100%;
}

/* Watermark with horror styling - Mobile First */
.watermark {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  color: var(--blood-crimson);
  font-size: 0.9rem;
  opacity: 0.8;
  font-family: 'Creepster', cursive;
  text-shadow: 0 0 8px var(--blood-crimson);
  animation: horror-pulse 4s infinite;
  z-index: 100;
}

/* Navigation with horror styling - Mobile First */
.nav-links {
  position: fixed;
  top: 1rem;
  right: 1rem;
  font-size: 0.9rem;
  z-index: 100;
  background: rgba(0, 0, 0, 0.95);
  padding: 0.8rem;
  border: 2px solid var(--neon-green);
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
  max-width: 200px;
}

.nav-links a {
  color: var(--neon-green);
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Creepster', cursive;
  text-shadow: 0 0 5px var(--neon-green);
  display: block;
  margin: 0.3rem 0;
  text-align: center;
}

.nav-links a:hover {
  color: var(--blood-crimson);
  text-shadow: 0 0 12px var(--blood-crimson);
  transform: scale(1.05);
}

.separator {
  color: var(--neon-green);
  margin: 0 0.3rem;
  opacity: 0.7;
  display: none;
}

/* Horror Animations */
@keyframes horror-glow {
  0% { 
    text-shadow: 0 0 20px var(--blood-crimson), 0 0 40px var(--blood-crimson), 0 0 60px var(--blood-crimson), 0 0 80px var(--blood-crimson);
    filter: drop-shadow(0 0 15px var(--blood-crimson));
  }
  100% { 
    text-shadow: 0 0 30px var(--blood-crimson), 0 0 60px var(--blood-crimson), 0 0 90px var(--blood-crimson), 0 0 120px var(--blood-crimson);
    filter: drop-shadow(0 0 25px var(--blood-crimson));
  }
}

@keyframes horror-glitch {
  0%, 100% { transform: translate(0) rotate(0deg); }
  20% { transform: translate(-2px, 2px) rotate(0.3deg); }
  40% { transform: translate(-2px, -2px) rotate(-0.3deg); }
  60% { transform: translate(2px, 2px) rotate(0.2deg); }
  80% { transform: translate(2px, -2px) rotate(-0.2deg); }
}

@keyframes horror-glitch-green {
  0%, 100% { transform: translate(0); }
  50% { transform: translate(-1px, 1px) rotate(0.5deg); }
}

@keyframes horror-glitch-purple {
  0%, 100% { transform: translate(0); }
  50% { transform: translate(1px, -1px) rotate(-0.5deg); }
}

@keyframes horror-flicker {
  0%, 100% { opacity: 1; transform: scale(1); }
  25% { opacity: 0.7; transform: scale(0.98); }
  50% { opacity: 0.9; transform: scale(1.02); }
  75% { opacity: 0.8; transform: scale(0.99); }
}

@keyframes horror-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes float-symbol {
  0% { transform: translateY(0px) rotate(0deg); opacity: 0; }
  10% { opacity: 0.3; }
  90% { opacity: 0.3; }
  100% { transform: translateY(-80px) rotate(360deg); opacity: 0; }
}

@keyframes symbol-flicker {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes cursor-glitch {
  0%, 100% { transform: translate(0); }
  50% { transform: translate(-1px, 1px); }
}

/* Tablet and Desktop Responsive Design */
@media (min-width: 768px) {
  .container {
    padding: 2rem;
    margin: 1rem;
    border-radius: 20px;
  }
  
  .sigil {
    font-size: 8rem;
    margin-bottom: 3rem;
  }
  
  .daily-message {
    font-size: 1.8rem;
    padding: 1.5rem 2rem;
    max-width: 600px;
  }
  
  .countdown {
    padding: 2rem;
    max-width: 500px;
  }
  
  .countdown-bar {
    max-width: 400px;
    height: 8px;
  }
  
  .countdown-timer {
    font-size: 1.2rem;
  }
  
  .enter-btn {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    max-width: 400px;
  }
  
  .nav-links {
    top: 2rem;
    right: 2rem;
    font-size: 1rem;
    padding: 1rem;
    max-width: none;
  }
  
  .nav-links a {
    display: inline;
    margin: 0 0.5rem;
  }
  
  .separator {
    display: inline;
  }
  
  .watermark {
    bottom: 2rem;
    right: 2rem;
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .sigil {
    font-size: 10rem;
  }
  
  .daily-message {
    font-size: 2rem;
  }
  
  .enter-btn {
    font-size: 1.8rem;
    padding: 2rem 4rem;
  }
}

 

    /* Logo Container and Image Styling - Seamless Integration */
    .logo-container {
        text-align: center;
        margin-bottom: 3rem;
        padding: 0;
        position: relative;
    }
    
    .logo-image {
        width: auto;
        height: auto;
        max-width: 280px;
        max-height: 280px;
        object-fit: contain;
        filter: drop-shadow(0 0 20px var(--neon-green)) 
                drop-shadow(0 0 40px var(--neon-green));
        transition: all 0.8s ease;
        animation: logo-pulse-subtle 10s ease-in-out infinite alternate;
        border-radius: 0;
        outline: none;
        background: transparent;
    }
    
    .logo-container:hover .logo-image {
        filter: drop-shadow(0 0 30px var(--neon-green)) 
                drop-shadow(0 0 60px var(--neon-green));
        transform: scale(1.03);
    }
    
    @keyframes logo-pulse-subtle {
        0% {
            filter: drop-shadow(0 0 20px var(--neon-green)) 
                    drop-shadow(0 0 40px var(--neon-green));
            transform: scale(1);
        }
        100% {
            filter: drop-shadow(0 0 25px var(--neon-green)) 
                    drop-shadow(0 0 50px var(--neon-green));
            transform: scale(1.01);
        }
    }
    
    /* Hero Message System - Core Layout */
    .hero-message-container {
        text-align: center;
        margin-bottom: 3rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    /* Daily Message - Horror Signal Styling - More Mysterious */
    .daily-message {
        font-size: clamp(28px, 4vw, 54px);
        text-align: center;
        color: var(--neon-green);
        text-shadow: 0 0 20px var(--neon-green);
        font-family: 'Creepster', cursive;
        background: transparent;
        padding: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        width: 100%;
        max-width: 70vw;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1.2;
        letter-spacing: 2px;
        position: relative;
        overflow: visible;
        transition: all 0.3s ease;
        min-height: 120px;
        
        /* Subtle horror signal effects - more mysterious */
        animation: horror-signal-subtle 12s ease-in-out infinite;
        filter: contrast(1.1) brightness(1.05);
    }
    
    /* Subtle horror signal animation - mysterious and creepy */
    @keyframes horror-signal-subtle {
        0%, 100% { 
            opacity: 0.9; 
            transform: scale(1) translateY(0);
            text-shadow: 0 0 15px currentColor, 0 0 30px currentColor;
        }
        25% { 
            opacity: 1; 
            transform: scale(1.01) translateY(-1px);
            text-shadow: 0 0 20px currentColor, 0 0 40px currentColor;
        }
        50% { 
            opacity: 0.85; 
            transform: scale(0.99) translateY(1px);
            text-shadow: 0 0 10px currentColor, 0 0 25px currentColor;
        }
        75% { 
            opacity: 0.95; 
            transform: scale(1.005) translateY(-0.5px);
            text-shadow: 0 0 18px currentColor, 0 0 35px currentColor;
        }
    }
    
    /* Day-based accent colors - More Terrifying and Mysterious */
    .daily-message.day-0 {
        color: #00ff00; /* Toxic green - more sinister */
        animation: horror-signal-toxic-green 15s ease-in-out infinite;
    }
    
    .daily-message.day-1 {
        color: #8b0000; /* Dark blood red - more terrifying */
        animation: horror-signal-blood-red 15s ease-in-out infinite;
    }
    
    .daily-message.day-2 {
        color: #4b0082; /* Deep indigo - more mysterious */
        animation: horror-signal-indigo 15s ease-in-out infinite;
    }
    
    .daily-message.day-3 {
        color: #daa520; /* Dark goldenrod - more ominous */
        animation: horror-signal-dark-gold 15s ease-in-out infinite;
    }
    
    .daily-message.day-4 {
        color: #00ff00; /* Toxic green */
        animation: horror-signal-toxic-green 15s ease-in-out infinite;
    }
    
    .daily-message.day-5 {
        color: #8b0000; /* Dark blood red */
        animation: horror-signal-blood-red 15s ease-in-out infinite;
    }
    
    .daily-message.day-6 {
        color: #4b0082; /* Deep indigo */
        animation: horror-signal-indigo 15s ease-in-out infinite;
    }
    
    /* Individual horror signal animations */
    @keyframes horror-signal-green {
        0%, 100% { 
            text-shadow: 0 0 20px #00ff41, 0 0 40px #00ff41, 0 0 60px #00ff41;
            filter: contrast(1.2) brightness(1.1) hue-rotate(0deg);
        }
        50% { 
            text-shadow: 0 0 30px #00ff41, 0 0 60px #00ff41, 0 0 90px #00ff41;
            filter: contrast(1.4) brightness(1.3) hue-rotate(5deg);
        }
    }
    
    @keyframes horror-signal-red {
        0%, 100% { 
            text-shadow: 0 0 20px #ff0040, 0 0 40px #ff0040, 0 0 60px #ff0040;
            filter: contrast(1.2) brightness(1.1) hue-rotate(0deg);
        }
        50% { 
            text-shadow: 0 0 30px #ff0040, 0 0 60px #ff0040, 0 0 90px #ff0040;
            filter: contrast(1.4) brightness(1.3) hue-rotate(-5deg);
        }
    }
    
    @keyframes horror-signal-purple {
        0%, 100% { 
            text-shadow: 0 0 20px #8a2be2, 0 0 40px #8a2be2, 0 0 60px #8a2be2;
            filter: contrast(1.2) brightness(1.1) hue-rotate(0deg);
        }
        50% { 
            text-shadow: 0 0 30px #8a2be2, 0 0 60px #8a2be2, 0 0 90px #8a2be2;
            filter: contrast(1.4) brightness(1.3) hue-rotate(10deg);
        }
    }
    
    @keyframes horror-signal-gold {
        0%, 100% { 
            text-shadow: 0 0 20px #ffd700, 0 0 40px #ffd700, 0 0 60px #ffd700;
            filter: contrast(1.2) brightness(1.1) hue-rotate(0deg);
        }
        50% { 
            text-shadow: 0 0 30px #ffd700, 0 0 60px #ffd700, 0 0 90px #ffd700;
            filter: contrast(1.4) brightness(1.3) hue-rotate(-10deg);
        }
    }
    
    /* Hover effects - Enhanced horror */
    .daily-message:hover {
        transform: scale(1.05);
        filter: contrast(1.5) brightness(1.4) saturate(1.3);
        cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><text x="2" y="16" font-family="monospace" font-size="16" fill="white">👁</text></svg>'), auto;
        animation-play-state: paused;
    }
    
    /* Glitch Effects - Enhanced for horror */
    .daily-message.glitching {
        animation: horror-glitch 0.3s ease-in-out;
    }
    
    .daily-message.glitching::before {
        content: attr(data-text);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #ff0000;
        text-shadow: 2px 0 0 #00ffff, -2px 0 0 #ff00ff;
        animation: horror-glitch-rgb 0.12s ease-in-out;
        z-index: 1;
        filter: contrast(2) brightness(1.5);
    }
    
    .daily-message.glitching::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: repeating-linear-gradient(
            0deg,
            transparent,
            transparent 1px,
            rgba(255, 255, 255, 0.3) 1px,
            rgba(255, 255, 255, 0.3) 2px
        );
        animation: horror-glitch-scanline 0.3s ease-in-out;
        z-index: 2;
        mix-blend-mode: overlay;
    }
    
    @keyframes horror-glitch {
        0% { opacity: 1; transform: scale(1) translateX(0); }
        20% { opacity: 0.7; transform: scale(1.05) translateX(3px); }
        40% { opacity: 0.5; transform: scale(0.95) translateX(-2px); }
        60% { opacity: 0.8; transform: scale(1.02) translateY(2px); }
        80% { opacity: 0.9; transform: scale(0.98) translateY(-1px); }
        100% { opacity: 1; transform: scale(1) translateX(0); }
    }
    
    @keyframes horror-glitch-rgb {
        0% { transform: translateX(0) skew(0deg); }
        25% { transform: translateX(3px) skew(2deg); }
        50% { transform: translateX(-2px) skew(-1deg); }
        75% { transform: translateX(1px) skew(1deg); }
        100% { transform: translateX(0) skew(0deg); }
    }
    
    @keyframes horror-glitch-scanline {
        0% { opacity: 0; transform: translateY(-100%) scaleY(1); }
        50% { opacity: 1; transform: translateY(0) scaleY(2); }
        100% { opacity: 0; transform: translateY(100%) scaleY(1); }
    }
    
    /* Remove idle drift animation for more horror effect */
    .daily-message {
        animation: none; /* Remove the idle drift */
    }
    
    /* Message Caption */
    .message-caption {
        font-size: 0.9rem;
        color: var(--text-dim);
        font-family: 'Share Tech Mono', monospace;
        opacity: 0.7;
        letter-spacing: 3px;
        text-transform: uppercase;
    }
    
    /* Countdown Container */
    .countdown-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
    }
    
    .countdown-text {
        font-size: 1rem;
        color: var(--text-dim);
        font-family: 'Share Tech Mono', monospace;
        opacity: 0.8;
    }
    
    .countdown-timer {
        color: var(--neon-green);
        font-weight: bold;
        text-shadow: 0 0 8px var(--neon-green);
    }
    
    .countdown-progress-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .countdown-progress-bar {
        width: clamp(240px, 320px, 80vw);
        height: 4px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 2px;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .countdown-progress-fill {
        height: 100%;
        background: linear-gradient(90deg, var(--neon-green), var(--electric-blue), var(--poison-purple));
        transition: width 1s ease;
        box-shadow: 0 0 10px var(--neon-green);
        border-radius: 2px;
    }
    
    /* Glitch Effects */
    .daily-message.glitching {
        animation: glitch-fade 0.3s ease-in-out;
    }
    
    .daily-message.glitching::before {
        content: attr(data-text);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: red;
        text-shadow: 2px 0 0 cyan, -2px 0 0 magenta;
        animation: glitch-rgb 0.12s ease-in-out;
        z-index: 1;
    }
    
    .daily-message.glitching::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.1) 2px,
            rgba(255, 255, 255, 0.1) 4px
        );
        animation: glitch-scanline 0.3s ease-in-out;
        z-index: 2;
    }
    
    @keyframes glitch-fade {
        0% { opacity: 1; transform: scale(1); }
        20% { opacity: 0.8; transform: scale(1.02) translateX(2px); }
        40% { opacity: 0.6; transform: scale(0.98) translateX(-1px); }
        60% { opacity: 0.8; transform: scale(1.01) translateY(1px); }
        80% { opacity: 0.9; transform: scale(1); }
        100% { opacity: 1; transform: scale(1); }
    }
    
    @keyframes glitch-rgb {
        0% { transform: translateX(0); }
        25% { transform: translateX(2px); }
        50% { transform: translateX(-1px); }
        75% { transform: translateX(1px); }
        100% { transform: translateX(0); }
    }
    
    @keyframes glitch-scanline {
        0% { opacity: 0; transform: translateY(-100%); }
        50% { opacity: 1; transform: translateY(0); }
        100% { opacity: 0; transform: translateY(100%); }
    }
    
    /* Idle drift animation */
    .daily-message {
        animation: idle-drift 5s ease-in-out infinite;
    }
    
    @keyframes idle-drift {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-2px); }
    }
    
    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .daily-message {
            font-size: clamp(22px, 6vw, 36px);
            max-width: 90vw;
            padding: 1.5rem 2rem;
            min-height: 100px;
            letter-spacing: 1px;
        }
        
        .hero-message-container {
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .message-caption {
            font-size: 0.8rem;
            letter-spacing: 2px;
        }
        
        .countdown-container {
            max-width: 90vw;
        }
        
        .countdown-text {
            font-size: 0.9rem;
        }
        
        .countdown-progress-bar {
            width: clamp(240px, 90vw, 320px);
        }
    }
    
    /* RTL Language Support */
    .daily-message[dir="rtl"] {
        text-align: center;
        letter-spacing: 0;
    }
    
    /* Accessibility */
    .daily-message:focus {
        outline: 2px solid var(--neon-green);
        outline-offset: 4px;
    }
    
    /* Transmissions Page Styling */
    .transmissions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .transmission-file {
        background: linear-gradient(145deg, rgba(0, 0, 0, 0.9), rgba(220, 20, 60, 0.1));
        border: 2px solid var(--blood-crimson);
        border-radius: 15px;
        padding: 1.5rem;
        transition: all 0.4s ease;
        box-shadow: 0 0 30px rgba(220, 20, 60, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    .transmission-file::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(220, 20, 60, 0.1), transparent);
        transition: left 0.6s ease;
    }
    
    .transmission-file:hover::before {
        left: 100%;
    }
    
    .transmission-file:hover {
        border-color: var(--poison-purple);
        box-shadow: 0 0 50px rgba(128, 0, 128, 0.5);
        transform: translateY(-5px) scale(1.02);
        background: linear-gradient(145deg, rgba(0, 0, 0, 0.95), rgba(128, 0, 128, 0.15));
    }
    
    .file-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(220, 20, 60, 0.3);
    }
    
    .file-icon {
        font-size: 1.5rem;
        margin-right: 0.5rem;
    }
    
    .file-name {
        font-family: 'Creepster', cursive;
        color: var(--neon-green);
        font-size: 1.2rem;
        text-shadow: 0 0 10px var(--neon-green);
        flex-grow: 1;
        text-align: center;
    }
    
    .file-status {
        font-family: 'Share Tech Mono', monospace;
        color: var(--electric-blue);
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
        background: rgba(0, 255, 255, 0.1);
        border: 1px solid var(--electric-blue);
        border-radius: 20px;
        text-shadow: 0 0 5px var(--electric-blue);
    }
    
    .file-content {
        text-align: center;
    }
    
    .signal-strength {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        gap: 0.5rem;
    }
    
    .strength-label {
        font-family: 'Share Tech Mono', monospace;
        color: var(--text-dim);
        font-size: 0.8rem;
    }
    
    .strength-bars {
        display: flex;
        gap: 2px;
    }
    
    .bar {
        width: 8px;
        height: 20px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .bar.active {
        background: var(--neon-green);
        border-color: var(--neon-green);
        box-shadow: 0 0 8px var(--neon-green);
        animation: bar-pulse 2s ease-in-out infinite;
    }
    
    @keyframes bar-pulse {
        0%, 100% { opacity: 0.7; }
        50% { opacity: 1; }
    }
    
    .cryptic-note {
        color: var(--sulfur-yellow);
        font-style: italic;
        font-size: 1rem;
        text-shadow: 0 0 8px var(--sulfur-yellow);
        font-family: 'Creepster', cursive;
        background: rgba(0, 0, 0, 0.6);
        padding: 1rem;
        border-radius: 8px;
        border: 1px solid var(--sulfur-yellow);
        transition: all 0.3s ease;
        line-height: 1.4;
    }
    
    .transmission-file:hover .cryptic-note {
        background: rgba(0, 0, 0, 0.8);
        box-shadow: 0 0 20px rgba(255, 255, 0, 0.3);
        transform: scale(1.02);
    }
    
    .footer-message {
        text-align: center;
        margin-top: 3rem;
        padding: 2rem;
        border-top: 2px solid rgba(128, 0, 128, 0.4);
        background: rgba(0, 0, 0, 0.8);
        border-radius: 15px;
        color: var(--poison-purple);
        font-size: 1.5rem;
        text-shadow: 0 0 20px var(--poison-purple);
        animation: horror-flicker 4s infinite;
        font-family: 'Creepster', cursive;
    }
    
    /* Mobile Responsiveness for Transmissions */
    @media (max-width: 768px) {
        .transmissions-grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            padding: 0 0.5rem;
        }
        
        .transmission-file {
            padding: 1rem;
        }
        
        .file-header {
            flex-direction: column;
            gap: 0.5rem;
            text-align: center;
        }
        
        .file-name {
            font-size: 1rem;
        }
        
        .file-status {
            font-size: 0.7rem;
            padding: 0.2rem 0.6rem;
        }
        
        .cryptic-note {
            font-size: 0.9rem;
            padding: 0.8rem;
        }
        
        .footer-message {
            font-size: 1.2rem;
            margin-top: 2rem;
            padding: 1.5rem;
        }
        
        .signal-strength {
            flex-direction: column;
            gap: 0.3rem;
        }
        
        .strength-label {
            font-size: 0.7rem;
        }
        
        .bar {
            width: 6px;
            height: 16px;
        }
    } 

    /* Additional Horror Signal Effects - More Subtle and Mysterious */
    .daily-message::before {
        content: '';
        position: absolute;
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
        background: 
            radial-gradient(circle at 20% 80%, rgba(0, 255, 0, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(139, 0, 0, 0.03) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(75, 0, 130, 0.03) 0%, transparent 50%);
        z-index: -1;
        animation: horror-signal-aura-subtle 20s ease-in-out infinite;
        pointer-events: none;
        opacity: 0.5;
    }
    
    .daily-message::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(255, 255, 255, 0.01) 3px, rgba(255, 255, 255, 0.01) 6px);
        z-index: -1;
        animation: horror-signal-static-subtle 8s linear infinite;
        pointer-events: none;
        opacity: 0.3;
    }
    
    @keyframes horror-signal-aura-subtle {
        0%, 100% { 
            opacity: 0.3; 
            transform: scale(1) rotate(0deg);
        }
        33% { 
            opacity: 0.4; 
            transform: scale(1.05) rotate(60deg);
        }
        66% { 
            opacity: 0.2; 
            transform: scale(0.95) rotate(120deg);
        }
    }
    
    @keyframes horror-signal-static-subtle {
        0% { transform: translateX(0); }
        100% { transform: translateX(50px); }
    }
    
    /* Signal interference effect */
    .daily-message {
        position: relative;
        /* Ensure no dialog box styling */
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 0 !important;
    }
    
    /* Remove duplicate ::before definition */
    /* .daily-message::before is already defined above */
    
    /* Enhanced glitch for horror - More Subtle and Mysterious */
    .daily-message.glitching {
        animation: horror-glitch-subtle 0.6s ease-in-out;
        filter: contrast(1.2) brightness(1.1) saturate(1.1);
    }
    
    @keyframes horror-glitch-subtle {
        0% { 
            opacity: 1; 
            transform: scale(1) translateX(0) skew(0deg);
            filter: contrast(1.1) brightness(1.05);
        }
        15% { 
            opacity: 0.8; 
            transform: scale(1.02) translateX(2px) skew(1deg);
            filter: contrast(1.3) brightness(1.2) hue-rotate(5deg);
        }
        30% { 
            opacity: 0.6; 
            transform: scale(0.98) translateX(-1px) skew(-1deg);
            filter: contrast(1.4) brightness(1.1) hue-rotate(-8deg);
        }
        45% { 
            opacity: 0.9; 
            transform: scale(1.01) translateY(1px) skew(0.5deg);
            filter: contrast(1.2) brightness(1.15) hue-rotate(3deg);
        }
        60% { 
            opacity: 0.7; 
            transform: scale(0.99) translateY(-1px) skew(-0.5deg);
            filter: contrast(1.3) brightness(1.1) hue-rotate(-4deg);
        }
        75% { 
            opacity: 0.95; 
            transform: scale(1.005) translateX(0.5px) skew(0.2deg);
            filter: contrast(1.15) brightness(1.08) hue-rotate(1deg);
        }
        100% { 
            opacity: 1; 
            transform: scale(1) translateX(0) skew(0deg);
            filter: contrast(1.1) brightness(1.05);
        }
    }
    
    /* Mobile Responsiveness for Horror Signal */
    @media (max-width: 768px) {
        .daily-message {
            font-size: clamp(22px, 6vw, 36px);
            max-width: 90vw;
            min-height: 100px;
            letter-spacing: 1px;
        }
        
        .daily-message::before,
        .daily-message::after {
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
        }
    } 

    /* Individual horror signal animations - More Terrifying and Mysterious */
    @keyframes horror-signal-toxic-green {
        0%, 100% { 
            text-shadow: 0 0 15px #00ff00, 0 0 30px #00ff00;
            filter: contrast(1.1) brightness(1.05) hue-rotate(0deg);
        }
        50% { 
            text-shadow: 0 0 25px #00ff00, 0 0 50px #00ff00;
            filter: contrast(1.2) brightness(1.1) hue-rotate(2deg);
        }
    }
    
    @keyframes horror-signal-blood-red {
        0%, 100% { 
            text-shadow: 0 0 15px #8b0000, 0 0 30px #8b0000;
            filter: contrast(1.1) brightness(1.05) hue-rotate(0deg);
        }
        50% { 
            text-shadow: 0 0 25px #8b0000, 0 0 50px #8b0000;
            filter: contrast(1.2) brightness(1.1) hue-rotate(-2deg);
        }
    }
    
    @keyframes horror-signal-indigo {
        0%, 100% { 
            text-shadow: 0 0 15px #4b0082, 0 0 30px #4b0082;
            filter: contrast(1.1) brightness(1.05) hue-rotate(0deg);
        }
        50% { 
            text-shadow: 0 0 25px #4b0082, 0 0 50px #4b0082;
            filter: contrast(1.2) brightness(1.1) hue-rotate(3deg);
        }
    }
    
    @keyframes horror-signal-dark-gold {
        0%, 100% { 
            text-shadow: 0 0 15px #daa520, 0 0 30px #daa520;
            filter: contrast(1.1) brightness(1.05) hue-rotate(0deg);
        }
        50% { 
            text-shadow: 0 0 25px #daa520, 0 0 50px #daa520;
            filter: contrast(1.2) brightness(1.1) hue-rotate(1deg);
        }
    } 