/* Terminal Website CSS - Standalone */
:root {
  /* === UNIFIED COLOR SYSTEM === */

  /* Primary Purple (#6441a5) - Twitch/Gaming Brand Color */
  --primary-color: #fff;
  /* --primary-color: #6441a5; */
  --primary-rgb: 100, 65, 165;

  /* Sophisticated Gradient System: Purple → Electric Blue → Cyan */
  /* --gradient-start: #6441a5; */
  --gradient-start: #000;
  /* --gradient-mid: #3b82f6;  */
  --gradient-mid: #fff;
  --gradient-end: #fff;
  /* --gradient-end: #06b6d4; */
  --primary-gradient: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-mid),
    var(--gradient-end)
  );
  --primary-gradient-hover: linear-gradient(
    135deg,
    var(--gradient-start),
    var(--gradient-mid) 30%,
    var(--gradient-end)
  );

  /* Complementary Accent Colors */
  /* --electric-blue: #06b6d4; */
  --electric-blue: #ffff;
  --electric-blue-rgb: 6, 182, 212;
  --coral-accent: #ff6b9d;
  --coral-accent-rgb: 255, 107, 157;
  --success-green: #10b981;
  --success-green-rgb: 16, 185, 129;

  /* Legacy Color Updates */
  --secondary-color: var(--coral-accent);
  --accent-color: var(--electric-blue);
  --success-color: var(--success-green);

  /* 5-Tier Transparency Depth System */
  --depth-10: rgba(var(--primary-rgb), 0.1);
  --depth-20: rgba(var(--primary-rgb), 0.2);
  --depth-40: rgba(var(--primary-rgb), 0.4);
  --depth-60: rgba(var(--primary-rgb), 0.6);
  --depth-80: rgba(var(--primary-rgb), 0.8);

  /* Electric Blue Depth Layers */
  --blue-depth-10: rgba(var(--electric-blue-rgb), 0.1);
  --blue-depth-20: rgba(var(--electric-blue-rgb), 0.2);
  --blue-depth-40: rgba(var(--electric-blue-rgb), 0.4);
  --blue-depth-60: rgba(var(--electric-blue-rgb), 0.6);
  --blue-depth-80: rgba(var(--electric-blue-rgb), 0.8);

  /* Success Green Depth Layers */
  --green-depth-10: rgba(var(--success-green-rgb), 0.1);
  --green-depth-20: rgba(var(--success-green-rgb), 0.2);
  --green-depth-40: rgba(var(--success-green-rgb), 0.4);
  --green-depth-60: rgba(var(--success-green-rgb), 0.6);
  --green-depth-80: rgba(var(--success-green-rgb), 0.8);

  /* Coral Depth Layers */
  --coral-depth-10: rgba(var(--coral-accent-rgb), 0.1);
  --coral-depth-20: rgba(var(--coral-accent-rgb), 0.2);
  --coral-depth-40: rgba(var(--coral-accent-rgb), 0.4);
  --coral-depth-60: rgba(var(--coral-accent-rgb), 0.6);
  --coral-depth-80: rgba(var(--coral-accent-rgb), 0.8);

  /* Background Colors */
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --text-light: #ffffff;
  --border-color: #333333;
  /* --terminal-bg: rgba(10, 10, 20, 0.95); */
  --terminal-bg: rgba(0, 0, 0, 0.95);

  /* Updated Text Colors */
  --text-purple: var(--primary-color);
  --text-pink: var(--coral-accent);
  --text-cyan: var(--electric-blue);
  --glow-color: var(--primary-color);

  /* Typography */
  --font-mono: "Courier Prime", monospace;
  --font-tech: "Orbitron", monospace;

  /* === STANDARDIZED GLOW HIERARCHY === */

  /* Subtle Glow - For backgrounds and ambient lighting */
  --glow-subtle: 0 0 5px rgba(var(--primary-rgb), 0.3);
  --glow-subtle-blue: 0 0 5px rgba(var(--electric-blue-rgb), 0.3);
  --glow-subtle-coral: 0 0 5px rgba(var(--coral-accent-rgb), 0.3);
  --glow-subtle-green: 0 0 5px rgba(var(--success-green-rgb), 0.3);

  /* Medium Glow - For interactive elements and focus states */
  --glow-medium: 0 0 15px rgba(var(--primary-rgb), 0.5);
  --glow-medium-blue: 0 0 15px rgba(var(--electric-blue-rgb), 0.5);
  --glow-medium-coral: 0 0 15px rgba(var(--coral-accent-rgb), 0.5);
  --glow-medium-green: 0 0 15px rgba(var(--success-green-rgb), 0.5);

  /* Strong Glow - For emphasis and hover states */
  --glow-strong: 0 0 30px rgba(var(--primary-rgb), 0.7);
  --glow-strong-blue: 0 0 30px rgba(var(--electric-blue-rgb), 0.7);
  --glow-strong-coral: 0 0 30px rgba(var(--coral-accent-rgb), 0.7);
  --glow-strong-green: 0 0 30px rgba(var(--success-green-rgb), 0.7);

  /* Dramatic Glow - For hero elements and special effects */
  --glow-dramatic: 0 0 50px rgba(var(--primary-rgb), 0.9);
  --glow-dramatic-blue: 0 0 50px rgba(var(--electric-blue-rgb), 0.9);
  --glow-dramatic-coral: 0 0 50px rgba(var(--coral-accent-rgb), 0.9);
  --glow-dramatic-green: 0 0 50px rgba(var(--success-green-rgb), 0.9);

  /* Combined Shadow + Glow Effects */
  --shadow-glow: var(--glow-medium), 0 4px 12px rgba(0, 0, 0, 0.3);
  /* --shadow-purple: var(--glow-medium), 0 4px 12px rgba(0, 0, 0, 0.3); */
  --shadow-pink: var(--glow-medium-coral), 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-cyan: var(--glow-medium-blue), 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

body {
  font-family: var(--font-mono);
  background: var(--bg-darker);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  cursor: crosshair;
}

/* Animated Grid Background */
.animated-grid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  opacity: 0.1;
  pointer-events: none;
  background-image: radial-gradient(
      circle at 25px 25px,
      rgba(255, 255, 255, 0.8) 2px,
      transparent 0
    ),
    radial-gradient(
      circle at 75px 75px,
      rgba(6, 182, 212, 0.6) 2px,
      transparent 0
    ),
    radial-gradient(
      circle at 50px 100px,
      rgba(236, 72, 153, 0.7) 1px,
      transparent 0
    );
  background-size: 100px 100px, 150px 150px, 75px 75px;
  background-position: 0 0, 25px 25px, 50px 50px;
  animation: gridMove 20s linear infinite,
    gridPulse 4s ease-in-out infinite alternate;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(10px, 10px);
  }
  50% {
    transform: translate(-5px, 15px);
  }
  75% {
    transform: translate(15px, -5px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes gridPulse {
  0% {
    opacity: 0.05;
  }
  100% {
    opacity: 0.15;
  }
}

/* Particles Background */
#particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  opacity: 0.15;
}

/* Matrix Rain Effect */
.matrix-rain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.15;
  pointer-events: none;
  background: transparent;
}

/* Scanlines */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.05;
  pointer-events: none;
  background: linear-gradient(transparent 50%, var(--primary-color) 50%);
  background-size: 100% 8px;
  animation: scanlines 0.2s linear infinite;
}

@keyframes scanlines {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(8px);
  }
}

@keyframes matrixFall {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

@keyframes terminalFloat {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(-40px) translateX(-10px);
  }
  75% {
    transform: translateY(-20px) translateX(5px);
  }
}

@keyframes terminalGlow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
      0 0 30px rgba(255, 255, 255, 0.6);
  }
}

@keyframes terminalPulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

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

/* Header */
.terminal-header {
  background: var(--terminal-bg);
  backdrop-filter: blur(10px);
  /* border-bottom: 2px solid var(--primary-color); */
  /* padding: 20px 0; */
  padding-top: 2px;
  padding-bottom: 18px;
  position: relative;
  box-shadow: var(--shadow-purple);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo-ascii {
  font-family: var(--font-mono);
  /* color: var(--primary-color); */
  color: white;
  font-size: 8px;
  line-height: 1;
  /* text-shadow: 0 0 10px rgba(255,255,255, 0.6); */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
  /* white-space: pre; */
  /* overflow: hidden; */
  /* max-width: 520px; */
  /* width: 520px; */
  /* flex-shrink: 0; */
  /* position: relative; */
  margin-left: -40px;
}

#ascii-logo {
  display: block;
  width: 520px;
  height: 56px;
  max-width: 520px;
  max-height: 56px;
  min-height: 56px;
  margin: 0;
  padding: 0;
  white-space: pre;
  word-wrap: normal;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

.subtitle-glitch {
  font-family: var(--font-tech);
  color: var(--text-cyan);
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
  /* text-shadow: 0 0 10px rgba(6, 182, 212, 0.6); */
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.nav-terminal {
  display: flex;
  gap: 20px;
}

.nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-family: var(--font-mono);
  font-weight: 500;
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.nav-link:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-purple);
  background: rgba(255, 255, 255, 0.2);
}

.hero-terminal {
  /* padding: 60px 0; */
  padding: 110px 0;
  background: linear-gradient(
    135deg,
    var(--bg-darker) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
}

.hero-message {
  text-align: center;
  margin-bottom: 50px;
}

.hero-tagline {
  font-family: var(--font-tech);
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-light);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  max-width: 900px;
  margin: 0 auto;
}

.tagline-part {
  display: block;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: slideInUp 0.8s ease forwards;
  position: relative;
}

.tagline-part:nth-child(1) {
  animation-delay: 0.2s;
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.9);
}

.tagline-part:nth-child(2) {
  animation-delay: 0.4s;
  font-size: 1.1em;
  font-weight: 800;
  margin-bottom: 25px;
}

.tagline-part:nth-child(3) {
  animation-delay: 0.6s;
}

.tagline-part.highlight {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.05em;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.tagline-part.emphasis {
  color: var(--primary-color);
  text-shadow: var(--glow-strong);
  font-size: 1.1em;
  font-weight: 900;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.terminal-window {
  background: rgba(5, 5, 5, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  margin-bottom: 40px;
  overflow: hidden;
}

.terminal-body {
  padding: 40px;
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: 1.8;
}

.terminal-line {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.prompt {
  color: var(--primary-color);
  margin-right: 16px;
  font-weight: 600;
}

.command {
  color: var(--text-light);
  font-weight: 500;
}

.output {
  color: rgba(255, 255, 255, 0.8);
  margin-left: 24px;
}

.output.success {
  color: var(--success-color);
}

.terminal-variable {
  color: var(--primary-color);
  font-weight: 600;
}

.cursor {
  color: var(--primary-color);
  animation: terminalPulse 1s infinite;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.streamer-mascot {
  text-align: center;
}

.streamer-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
  margin-bottom: 16px;
}

.mascot-speech {
  color: var(--text-light);
  font-style: italic;
  font-size: 16px;
}

.cta-button {
  /* background: rgba(255, 255, 255, 0.1); */
  background: transparent;
  /* border: 1px solid var(--primary-color); */
  border: 1px solid #4338CA;
  /* color: var(--primary-color); */
  color: #4338CA;
  padding: 16px 32px;
  border-radius: 12px;
  font-family: var(--font-tech);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.cta-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--secondary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.contract-display {
  text-align: center;
}

.contract-display label {
  color: var(--text-light);
  font-family: var(--font-mono);
  font-size: 12px;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contract-box {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 6px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 500px;
}

.contract-text {
  font-family: var(--font-mono);
  color: var(--text-light);
  font-size: 14px;
  flex: 1;
  word-break: break-all;
}

.copy-btn {
  background: var(--primary-color);
  color: #000;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.copy-feedback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.data-section,
.mission-section,
.streamers-section,
.join-section {
  padding: 60px 0;
  background: var(--bg-darker);
}

.section-title {
  font-family: var(--font-tech);
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: var(--shadow-purple);
}

.glitch {
  position: relative;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
  height: 300px;
}

.data-card {
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-purple);
}

.data-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.data-label {
  font-family: var(--font-mono);
  color: var(--text-cyan);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.data-value {
  font-family: var(--font-tech);
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
  text-shadow: var(--shadow-purple);
}

.data-change {
  font-family: var(--font-mono);
  color: var(--success-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Price change percentage styling */
.data-change.positive,
.data-change.negative {
  color: var(--success-color) !important;
  text-transform: none;
}

/* Specific targeting for price change element */
#price-change {
  color: var(--success-color) !important;
}

.streamers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.streamer-stat {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.streamer-stat:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-purple);
}

.stat-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.stat-number {
  font-family: var(--font-tech);
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-mono);
  color: var(--text-light);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Gallery Link Styles */
.gallery-link-container {
  text-align: center;
  margin: 20px 0;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.gallery-link-text {
  color: var(--text-light);
  font-family: var(--font-mono);
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.gallery-link:hover {
  color: var(--text-light);
  text-shadow: 0 0 15px var(--primary-color);
  transform: scale(1.05);
}

/* Treasury Section */
.treasury-section {
  padding: 60px 0;
  background: linear-gradient(
    135deg,
    var(--bg-darker) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  border-top: 1px solid var(--border-color);
  position: relative;
}

.treasury-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.treasury-text {
  color: var(--text-light);
  font-family: var(--font-mono);
  font-size: 18px;
  margin: 20px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.treasury-link-container {
  text-align: center;
  margin: 20px 0;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.treasury-link-text {
  color: var(--text-light);
  font-family: var(--font-mono);
  font-size: 14px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.treasury-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.treasury-link:hover {
  color: var(--text-light);
  text-shadow: 0 0 15px var(--primary-color);
  transform: scale(1.05);
}

.featured-terminal {
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  box-shadow: var(--shadow-cyan);
}

.streamers-log {
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
}

.log-entry {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-family: var(--font-mono);
  font-size: 14px;
  white-space: nowrap;
}

.log-entry:last-child {
  border-bottom: none;
}

.timestamp {
  color: var(--text-cyan);
  /* width: 160px; */
  flex-shrink: 0;
}

.streamer-name {
  color: var(--text-light);
  font-weight: 600;
  width: 120px;
  flex-shrink: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clip-link {
  color: var(--accent-color);
  text-decoration: none !important;
  font-size: 12px;
  transition: all 0.3s ease;
  text-align: center;
  font-weight: 600;
  display: inline-block;
}

.clip-link:hover {
  color: var(--success-color);
  transform: scale(1.2);
  text-shadow: 0 0 10px var(--success-color);
}

.button-group {
  display: inline-grid;
  grid-template-columns: 70px 85px;
  gap: 8px;
  align-items: center;
  justify-items: start;
  white-space: nowrap;
  width: 165px;
  flex-shrink: 0;
}

.button-group .clip-link,
.button-group .post-link,
.button-group .clip-placeholder,
.button-group .post-placeholder {
  margin: 0;
  text-decoration: none !important;
  display: inline-block;
}

.button-group .post-link {
  margin-right: 0;
}

.clip-placeholder,
.post-placeholder {
  display: inline-block;
  width: 0;
  height: 0;
  visibility: hidden;
}

.post-link {
  color: var(--primary-color);
  text-decoration: none !important;
  font-size: 12px;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-block;
}

.post-link:hover {
  color: var(--primary-color);
  transform: scale(1.2);
  text-shadow: 0 0 10px var(--primary-color);
}

.clip-placeholder {
  display: block;
  width: 100%;
  height: 1px;
}

.post-placeholder {
  display: block;
  width: 100%;
  height: 1px;
}

.donation-amount {
  color: var(--success-color);
  font-weight: 600;
  width: 140px;
  flex-shrink: 0;
}

.status {
  width: 80px;
  flex-shrink: 0;
  font-weight: 600;
}

.status.success {
  color: var(--success-color);
}

.status.pending {
  color: var(--text-pink);
}

.status.error {
  color: var(--coral-accent);
}

.log-entry.error {
  background: var(--coral-depth-10);
  border: 1px solid var(--coral-depth-40);
  animation: errorPulse 2s ease-in-out infinite;
}

@keyframes errorPulse {
  0%,
  100% {
    box-shadow: var(--glow-subtle-coral);
  }
  50% {
    box-shadow: var(--glow-medium-coral);
  }
}

.mission-content {
  max-width: 600px;
  margin: 0 auto;
  /* text-align: center; */
  /* padding: 80px 20px; */
  padding: 5px 10px;
}

.mission-text-container {
  position: relative;
}

.mission-title {
  font-family: var(--font-tech);
  font-size: clamp(28px, 4vw, 30px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 50px;
  color: var(--text-light);
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
  margin-bottom: 8px;
}

.title-line.highlight {
  color: var(--primary-color);
  font-weight: 900;
}

.title-line.highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-gradient);
  transition: width 1s ease 0.5s;
}

.title-line.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.title-line.highlight.visible::after {
  width: 100%;
}

.mission-paragraphs {
  margin-bottom: 60px;
}

.mission-paragraph {
  font-size: clamp(16px, 2.5vw, 16px);
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.mission-paragraph.visible {
  opacity: 1;
  transform: translateY(0);
}

.highlight-text {
  color: var(--primary-color);
  font-weight: 600;
  position: relative;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.mission-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.mission-stats.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.stat-number {
  display: block;
  font-family: var(--font-tech);
  font-size: 36px;
  font-weight: 900;
  color: var(--primary-color);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
  animation: glow-pulse 3s ease-in-out infinite;
}

.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

@keyframes glow-pulse {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  }
  50% {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.9),
      0 0 40px rgba(255, 255, 255, 0.4);
  }
}

/* Animation trigger styles */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.join-terminal {
  text-align: center;
}

.join-title {
  font-family: var(--font-tech);
  color: var(--primary-color);
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.social-card {
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  padding: 30px 20px;
  text-decoration: none;
  color: var(--text-light);
  transition: all 0.3s ease;
  display: block;
  box-shadow: var(--shadow-purple);
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
  border-color: var(--secondary-color);
}

.social-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.social-label {
  font-family: var(--font-tech);
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-desc {
  font-family: var(--font-mono);
  color: var(--text-light);
  font-size: 14px;
}

.footer-terminal {
  background: var(--terminal-bg);
  border-top: 2px solid var(--primary-color);
  padding: 30px 0;
  text-align: center;
}

.footer-ascii {
  font-family: var(--font-mono);
  color: var(--primary-color);
  font-size: 10px;
  line-height: 1;
  margin-bottom: 20px;
  text-shadow: var(--shadow-purple);
}

.disclaimer {
  color: var(--text-light);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.6;
}

.disclaimer p {
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer-link:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.link-icon {
  font-size: 16px;
}

.link-icon-img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-link:hover .link-icon-img {
  opacity: 1;
}

.link-text {
  font-weight: 500;
}

.built-by {
  color: var(--text-cyan);
  font-style: italic;
}

.dev-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dev-link:hover {
  color: var(--secondary-color);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.gamepic {
  max-width: 862px;
  width: 100%;
}
.gamepic img {
  width: 100%;
}
.flexs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
/* Responsive Design */
@media (max-width: 768px) {
  .flexs {
    flex-wrap: wrap;
  }
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  .nav-terminal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-ascii {
    font-size: 6px;
    width: 390px;
    max-width: 390px;
  }

  #ascii-logo {
    width: 390px;
    max-width: 390px;
    height: 42px;
    max-height: 42px;
    min-height: 42px;
  }

  .log-entry {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .data-grid,
  .streamers-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }
  .wrap {
    flex-wrap: wrap;
  }
  .data-grid {
    height: 100%;
  }
  .streamers-log {
    overflow-x: auto;
  }
  .subtitle-glitch {
    font-size: 30px;
  }
  .hero-terminal {
    padding: 60px 0;
    /* padding: 110px 0; */
  }
  .section-title {
    font-size: 24px;
  }
}
.blur {
  filter: blur(5px);
}
.contactbtn {
  width: 164px;
  height: 52px;
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: white;
  background: #4338ca;
  text-decoration: none;
  font-size: 18px;
}
.contactbtn:hover {
  transform: scale(1.01);
}
.topbar {
  background: #4338ca;
  padding: 16px;
}
.follow {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /* font-weight: 700; */
  /* font-style: Bold; */
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 30%;
  text-transform: uppercase;
  gap: 12px;
}
.f24 {
  font-size: 20px !important;
}
.streamers-grid img{
    width: 100%;
}