
:root {
  --neon-blue: #00f3ff;
  --dark-bg: #0a192f;
  --text-primary: #e6f1ff;
  --text-secondary: #8892b0;
}

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

body {
  font-family: 'Roboto Mono', monospace;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.glitch {
  font-size: 2.5rem;
  font-weight: bold;
  position: relative;
  text-shadow: 0.05em 0 0 rgba(255,0,0,0.75),
              -0.025em -0.05em 0 rgba(0,255,0,0.75),
              0.025em 0.05em 0 rgba(0,0,255,0.75);
  animation: glitch 500ms infinite;
}

@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);
  }
  14% {
    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.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);
  }
}

.security-badge {
  position: absolute;
  top: -20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(0, 243, 255, 0.1);
  border-radius: 20px;
  border: 1px solid var(--neon-blue);
}

.badge-circle {
  width: 10px;
  height: 10px;
  background-color: var(--neon-blue);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.badge-text {
  color: var(--neon-blue);
  font-size: 0.8rem;
  font-weight: bold;
}

.content {
  margin-top: 2rem;
}

.info-panel {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  backdrop-filter: blur(5px);
}

.info-panel h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--neon-blue);
}

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

.feature-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 243, 255, 0.05);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

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

.feature-item h3 {
  color: var(--neon-blue);
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }
  
  .glitch {
    font-size: 1.8rem;
  }
  
  .security-badge {
    position: relative;
    top: 0;
    right: 0;
    margin: 1rem auto;
    width: fit-content;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
