/* Quantum Core */
.quantum-core {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
}

.core-inner {
  position: relative;
  width: 40px;
  height: 40px;
  background: rgba(26, 54, 90, 0.8);
  border: 2px solid rgb(82, 138, 191);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
}

.core-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgb(134, 192, 79);
  border-radius: 8px;
  animation: core-rotate 8s linear infinite;
}

.core-pulse {
  position: absolute;
  inset: -4px;
  background: radial-gradient(
    circle at center,
    rgba(134, 192, 79, 0.1),
    transparent 70%
  );
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quantum-core:hover .core-pulse {
  opacity: 1;
}

/* Brand Matrix */
.brand-matrix {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: monospace;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: -0.5px;
}

.brand-tag {
  font-family: monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Navigation Nodes */
.nav-node {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-line {
  width: 2px;
  height: 16px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgb(82, 138, 191),
    transparent
  );
  opacity: 0.5;
  transition: all 0.3s ease;
}

.nav-text {
  font-family: monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}

.nav-hint {
  color: rgba(255, 255, 255, 0.3);
  font-family: monospace;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.nav-node:hover {
  background: rgba(26, 54, 90, 0.3);
  border-radius: 6px;
}

.nav-node:hover .nav-line {
  background: linear-gradient(
    to bottom,
    transparent,
    rgb(134, 192, 79),
    transparent
  );
  opacity: 1;
  height: 24px;
}

.nav-node:hover .nav-text {
  color: white;
}

.nav-node:hover .nav-hint {
  color: rgb(134, 192, 79);
  transform: translateX(2px);
}

/* Status Indicator */
.system-status {
  padding: 4px 8px;
  background: rgba(26, 54, 90, 0.3);
  border: 1px solid rgba(82, 138, 191, 0.2);
  border-radius: 4px;
}

.status-indicator {
  width: 6px;
  height: 6px;
  background: rgb(134, 192, 79);
  border-radius: 50%;
  animation: status-pulse 2s infinite;
}

/* Access Protocols */
.access-protocol {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.access-protocol.primary {
  background: linear-gradient(
    45deg,
    rgba(26, 54, 90, 0.8),
    rgba(82, 138, 191, 0.4)
  );
  border: 1px solid rgba(134, 192, 79, 0.3);
}

.access-protocol.secondary {
  background: rgba(13, 27, 45, 0.8);
  border: 1px solid rgba(82, 138, 191, 0.3);
}

.protocol-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(134, 192, 79, 0.1),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.protocol-text {
  font-family: monospace;
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.access-protocol.primary .protocol-text {
  color: white;
}

.access-protocol.secondary .protocol-text {
  color: rgb(134, 192, 79);
}

.protocol-icon {
  color: white;
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
}

.access-protocol:hover {
  transform: translateY(-2px);
}

.access-protocol.primary:hover {
  border-color: rgb(134, 192, 79);
  box-shadow: 0 0 20px rgba(134, 192, 79, 0.3);
}

.access-protocol.secondary:hover {
  border-color: rgb(82, 138, 191);
  box-shadow: 0 0 20px rgba(82, 138, 191, 0.3);
}

.access-protocol:hover .protocol-glow {
  opacity: 1;
}

/* Quantum Interface Button */
.quantum-interface-btn {
  width: 40px;
  height: 40px;
  background: rgba(26, 54, 90, 0.8);
  border: 1px solid rgba(82, 138, 191, 0.3);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.interface-line {
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.quantum-interface-btn:hover {
  border-color: rgb(134, 192, 79);
  background: rgba(26, 54, 90, 1);
}

.quantum-interface-btn:hover .interface-line {
  background: rgb(134, 192, 79);
}

/* Quantum Interface Panel */
.quantum-interface-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 27, 45, 0.95),
    rgba(26, 54, 90, 0.95)
  );
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(82, 138, 191, 0.3);
  border-bottom: 1px solid rgba(134, 192, 79, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.interface-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(82, 138, 191, 0.2);
}

.interface-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.interface-close {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.interface-close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Interface Grid */
.interface-grid {
  padding: 16px;
  display: grid;
  gap: 8px;
}

.interface-node {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(26, 54, 90, 0.4);
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.interface-node:hover {
  border-color: rgba(134, 192, 79, 0.3);
  background: rgba(26, 54, 90, 0.6);
  transform: translateX(4px);
}

.node-icon {
  width: 24px;
  height: 24px;
  background: rgba(82, 138, 191, 0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(82, 138, 191);
  font-size: 0.875rem;
}

.interface-node:hover .node-icon {
  background: rgba(134, 192, 79, 0.2);
  color: rgb(134, 192, 79);
}

.node-text {
  flex: 1;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.node-arrow {
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.interface-node:hover .node-arrow {
  color: rgb(134, 192, 79);
  transform: translateX(2px);
}

/* Interface Protocols */
.interface-protocols {
  padding: 16px;
  border-top: 1px solid rgba(82, 138, 191, 0.2);
  display: grid;
  gap: 8px;
}

.interface-protocol {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(26, 54, 90, 0.4);
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.interface-protocol.primary {
  background: linear-gradient(
    45deg,
    rgba(26, 54, 90, 0.6),
    rgba(82, 138, 191, 0.3)
  );
  border: 1px solid rgba(134, 192, 79, 0.2);
}

.protocol-icon {
  width: 32px;
  height: 32px;
  background: rgba(82, 138, 191, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
}

.interface-protocol.primary .protocol-icon {
  background: rgba(134, 192, 79, 0.2);
}

.protocol-content {
  flex: 1;
}

.protocol-title {
  font-family: monospace;
  color: white;
  font-size: 0.875rem;
  font-weight: bold;
}

.protocol-desc {
  font-family: monospace;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  margin-top: 2px;
}

.interface-protocol:hover {
  border-color: rgba(134, 192, 79, 0.5);
  transform: translateY(-2px);
}

.interface-protocol:hover .protocol-icon {
  background: rgba(134, 192, 79, 0.3);
}

/* Interface Footer */
.interface-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(82, 138, 191, 0.2);
  background: rgba(13, 27, 45, 0.6);
}

.system-info {
  display: flex;
  justify-content: space-between;
}

.info-item {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-family: monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.info-value {
  font-family: monospace;
  font-size: 0.875rem;
  color: white;
  margin-top: 2px;
}

.info-value.online {
  color: rgb(134, 192, 79);
}

/* Animations */
@keyframes core-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes status-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.hero-bg {
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.85) 0%,
      rgba(31, 11, 15, 0.85) 50%,
      rgba(220, 38, 38, 0.8) 100%
    ),
    url("https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80")
      center/cover no-repeat;
}
.service-card {
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px -10px rgba(225, 29, 72, 0.3);
}
.stat-card {
  background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
  box-shadow: 5px 5px 15px #0a0a0a, -5px -5px 15px #303030;
}
.testimonial-card {
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  transform: scale(1.03);
}
.partner-logo {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.partner-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.feature-icon {
  background: linear-gradient(135deg, #e11d48 0%, #f43f5e 100%);
}
@keyframes gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradient 15s ease infinite;
}
@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes scan {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100vh);
  }
}

.animate-spin-slow {
  animation: spin-slow linear infinite;
}

.animate-scan {
  animation: scan 3s linear infinite;
}

.cyber-text {
  text-shadow: 0 0 10px rgba(134, 192, 79, 0.8),
    0 0 20px rgba(134, 192, 79, 0.5), 0 0 30px rgba(82, 138, 191, 0.3);
  letter-spacing: -0.02em;
}

.cyber-button {
  position: relative;
  background: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
  outline-offset: 4px;
  transition: filter 250ms;
}

.cyber-button .cyber-button-text {
  display: block;
  padding: 16px 32px;
  border-radius: 6px;
  font-size: 1.25rem;
  font-weight: bold;
  font-family: monospace;
  background: rgb(26, 54, 90);
  color: rgb(134, 192, 79);
  border: 2px solid rgb(82, 138, 191);
  transform: translateY(-4px);
  transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.cyber-button:hover .cyber-button-text {
  transform: translateY(-6px);
  background: linear-gradient(45deg, rgb(26, 54, 90), rgba(82, 138, 191, 0.3));
  box-shadow: 0 0 20px rgba(134, 192, 79, 0.4),
    inset 0 0 20px rgba(82, 138, 191, 0.1);
}

.cyber-button.alt .cyber-button-text {
  color: rgb(82, 138, 191);
  border-color: rgb(134, 192, 79);
}

.cyber-button-glitch {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  color: red;
  font-family: monospace;
  transition: opacity 0.3s;
}

.cyber-button:hover .cyber-button-glitch {
  animation: glitch 0.3s infinite;
  opacity: 0.3;
}

.cyber-button-tag {
  position: absolute;
  top: -8px;
  right: -8px;
  background: rgb(134, 192, 79);
  color: rgb(26, 54, 90);
  padding: 2px 8px;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 4px;
}

.digital-stat {
  background: rgba(26, 54, 90, 0.8);
  border: 1px solid rgba(82, 138, 191, 0.3);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.digital-stat:hover {
  border-color: rgb(134, 192, 79);
  box-shadow: 0 0 20px rgba(134, 192, 79, 0.2);
}

.digital-stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: monospace;
  background: linear-gradient(45deg, rgb(134, 192, 79), rgb(82, 138, 191));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}

.digital-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.digital-stat-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: var(--progress);
  background: linear-gradient(90deg, rgb(134, 192, 79), rgb(82, 138, 191));
  transition: width 1s ease-in-out;
}

.particles::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(134, 192, 79, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 60% 70%,
      rgba(82, 138, 191, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(134, 192, 79, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(82, 138, 191, 0.1) 1px,
      transparent 1px
    );
  background-size: 200px 200px, 300px 300px, 250px 250px, 350px 350px;
  animation: particles 20s linear infinite;
}

@keyframes particles {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100px, 100px);
  }
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
/* Cyber Card */
.cyber-card {
  position: relative;
  background: rgba(26, 54, 90, 0.7);
  border-radius: 12px;
  padding: 2px;
  overflow: hidden;
}

.cyber-card-border {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    transparent 48%,
    rgb(134, 192, 79) 50%,
    transparent 52%
  );
  background-size: 400% 400%;
  animation: border-flow 3s linear infinite;
  border-radius: 12px;
  z-index: 1;
}

.cyber-card-content {
  position: relative;
  background: rgba(13, 27, 45, 0.9);
  border-radius: 10px;
  padding: 32px;
  z-index: 2;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(82, 138, 191, 0.2);
}

.cyber-card:hover .cyber-card-border {
  animation-duration: 1.5s;
  background: linear-gradient(
    45deg,
    transparent 48%,
    rgb(82, 138, 191) 50%,
    rgb(134, 192, 79) 52%,
    transparent 54%
  );
}

/* Digital Text */
.digital-text {
  margin-bottom: 24px;
}

.text-label {
  font-family: monospace;
  color: rgb(134, 192, 79);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.terminal-line {
  font-family: monospace;
  font-size: 1.125rem;
}

/* Feature Nodes */
.feature-node {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(82, 138, 191, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(82, 138, 191, 0.2);
  transition: all 0.3s ease;
}

.feature-node:hover {
  background: rgba(134, 192, 79, 0.1);
  border-color: rgb(134, 192, 79);
  transform: translateY(-2px);
}

.feature-icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.feature-dot {
  width: 12px;
  height: 12px;
  background: rgb(134, 192, 79);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.feature-text {
  font-family: monospace;
  color: white;
  font-size: 0.875rem;
}

/* Holographic Display */
.holographic-display {
  position: relative;
  height: 400px;
  background: rgba(13, 27, 45, 0.8);
  border-radius: 16px;
  border: 1px solid rgba(82, 138, 191, 0.3);
  overflow: hidden;
}

.holographic-screen {
  position: absolute;
  inset: 2px;
  background: linear-gradient(
    45deg,
    rgba(26, 54, 90, 0.1),
    rgba(13, 27, 45, 0.9)
  );
  border-radius: 14px;
}

/* Network Visualization */
.network-visualization {
  position: relative;
  width: 100%;
  height: 100%;
}

.network-node {
  position: absolute;
  width: 40px;
  height: 40px;
}

.center-node {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.node-core {
  width: 20px;
  height: 20px;
  background: rgb(134, 192, 79);
  border-radius: 50%;
  margin: auto;
  position: relative;
  z-index: 2;
}

.node-pulse {
  position: absolute;
  inset: 0;
  background: rgb(134, 192, 79);
  border-radius: 50%;
  animation: node-pulse 2s infinite;
  opacity: 0.5;
}

.connection-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, rgb(82, 138, 191), transparent);
  transform-origin: left center;
  animation: connection-flow 3s linear infinite;
}

/* Data Stream */
.data-stream {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  height: 4px;
  display: flex;
  gap: 8px;
}

.stream-line {
  flex: 1;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(134, 192, 79),
    transparent
  );
  animation: stream-flow 2s linear infinite;
}

/* Cyber Stats */
.floating-stats {
  position: absolute;
  inset: 20px;
}

.cyber-stat {
  position: absolute;
  background: rgba(26, 54, 90, 0.9);
  border: 1px solid rgba(82, 138, 191, 0.5);
  padding: 16px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  min-width: 140px;
}

.left-stat {
  top: 20px;
  left: 20px;
}

.right-stat {
  top: 20px;
  right: 20px;
}

.bottom-stat {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  font-family: monospace;
  background: linear-gradient(45deg, rgb(134, 192, 79), rgb(82, 138, 191));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: monospace;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.stat-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.stat-fill {
  height: 100%;
  background: linear-gradient(90deg, rgb(134, 192, 79), rgb(82, 138, 191));
  width: 100%;
  animation: bar-fill 2s ease-in-out infinite;
}

/* System Status */
.system-status {
  background: rgba(13, 27, 45, 0.8);
  border: 1px solid rgba(82, 138, 191, 0.3);
  border-radius: 8px;
  padding: 16px;
}

.status-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.status-indicator {
  width: 12px;
  height: 12px;
  background: rgb(134, 192, 79);
  border-radius: 50%;
  animation: status-pulse 2s infinite;
}

.status-text {
  font-family: monospace;
  color: white;
  font-size: 0.875rem;
}

.status-metrics {
  display: grid;
  gap: 12px;
}

.metric {
  display: flex;
  align-items: center;
  gap: 12px;
}

.metric-label {
  font-family: monospace;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  min-width: 140px;
}

.metric-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  background: linear-gradient(90deg, rgb(134, 192, 79), rgb(82, 138, 191));
  border-radius: 3px;
  transition: width 1s ease;
}

/* Glow Effects */
.shadow-glow-green {
  box-shadow: 0 0 20px rgba(134, 192, 79, 0.5);
}

.shadow-glow-blue {
  box-shadow: 0 0 20px rgba(82, 138, 191, 0.5);
}

/* Animations */
@keyframes border-flow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 400% 400%;
  }
}

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

@keyframes node-pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}

@keyframes connection-flow {
  0% {
    transform: translate(0, -50%) scaleX(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(100px, -50%) scaleX(1);
    opacity: 0;
  }
}

@keyframes stream-flow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes bar-fill {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

@keyframes status-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes code-rain {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.code-rain {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(134, 192, 79, 0.1) 50%,
    transparent 70%
  );
  animation: code-rain 10s linear infinite;
}
/* Grid Pattern */
.grid-pattern {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(82, 138, 191, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(82, 138, 191, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* Scan Line Container */
.scan-line-container {
  position: relative;
  display: inline-block;
}

.scan-line {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(134, 192, 79),
    transparent
  );
  animation: scan 2s linear infinite;
}

/* Quantum Service Card */
.quantum-service-card {
  position: relative;
  background: rgba(26, 54, 90, 0.4);
  border: 1px solid rgba(82, 138, 191, 0.3);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.quantum-service-card:hover {
  border-color: rgb(134, 192, 79);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(134, 192, 79, 0.2);
}

.service-corner-tl,
.service-corner-tr,
.service-corner-bl,
.service-corner-br {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgb(134, 192, 79);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-corner-tl {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.service-corner-tr {
  top: -1px;
  right: -1px;
  border-left: none;
  border-bottom: none;
}

.service-corner-bl {
  bottom: -1px;
  left: -1px;
  border-right: none;
  border-top: none;
}

.service-corner-br {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.quantum-service-card:hover .service-corner-tl,
.quantum-service-card:hover .service-corner-tr,
.quantum-service-card:hover .service-corner-bl,
.quantum-service-card:hover .service-corner-br {
  opacity: 1;
}

/* Service Icon */
.service-icon-container {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}

.service-icon-inner {
  position: relative;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgb(26, 54, 90), rgb(13, 27, 45));
  border: 2px solid rgb(82, 138, 191);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  margin: 10px auto;
}

.service-icon-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgb(134, 192, 79),
    transparent 70%
  );
  opacity: 0;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}

.quantum-service-card:hover .service-icon-glow {
  opacity: 0.3;
}

/* Service Specs */
.service-specs {
  margin: 20px 0;
  text-align: left;
}

.spec-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 8px;
  background: rgba(82, 138, 191, 0.1);
  border-radius: 4px;
}

.spec-dot {
  width: 8px;
  height: 8px;
  background: rgb(134, 192, 79);
  border-radius: 50%;
  flex-shrink: 0;
}

.spec-text {
  font-family: monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Service CTA */
.service-cta {
  margin-top: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgb(82, 138, 191);
  font-family: monospace;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: rgb(134, 192, 79);
}

.link-arrow {
  transition: transform 0.3s ease;
}

.service-link:hover .link-arrow {
  transform: translateX(4px);
}

/* Service ID */
.service-id {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-family: monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Cyber Button Large */
.cyber-button-lg {
  position: relative;
  display: inline-block;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.cyber-button-lg-text {
  display: block;
  padding: 20px 40px;
  background: linear-gradient(45deg, rgb(26, 54, 90), rgba(82, 138, 191, 0.3));
  border: 2px solid rgb(134, 192, 79);
  color: white;
  font-family: monospace;
  font-size: 1.125rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.cyber-button-lg:hover .cyber-button-lg-text {
  background: linear-gradient(45deg, rgb(134, 192, 79), rgba(26, 54, 90, 0.8));
  border-color: rgb(82, 138, 191);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(134, 192, 79, 0.3),
    0 0 20px rgba(134, 192, 79, 0.2);
}

.cyber-button-lg-glitch {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  color: red;
  font-family: monospace;
  transition: opacity 0.3s;
}

.cyber-button-lg:hover .cyber-button-lg-glitch {
  animation: glitch 0.3s infinite;
  opacity: 0.3;
}

/* Binary Rain */
.binary-rain {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 90%, rgba(134, 192, 79, 0.1) 100%);
  animation: rain 10s linear infinite;
}

@keyframes rain {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 100vh;
  }
}

/* Protocol Steps */
.protocol-step {
  position: relative;
}

.step-marker {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.step-number {
  font-size: 3rem;
  font-weight: bold;
  font-family: monospace;
  background: linear-gradient(45deg, rgb(134, 192, 79), rgb(82, 138, 191));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.step-connector {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgb(134, 192, 79),
    rgba(82, 138, 191, 0.3)
  );
  margin-left: 20px;
}

.step-content {
  background: rgba(26, 54, 90, 0.4);
  border: 1px solid rgba(82, 138, 191, 0.3);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.step-content:hover {
  border-color: rgb(134, 192, 79);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(134, 192, 79, 0.1),
    rgba(82, 138, 191, 0.1)
  );
  border: 2px solid rgba(134, 192, 79, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.step-icon-inner {
  color: white;
}

.step-code {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(82, 138, 191, 0.3);
  border-radius: 6px;
  padding: 12px;
  font-family: monospace;
  font-size: 0.875rem;
  color: rgb(134, 192, 79);
  margin-top: 20px;
}

.step-tag {
  position: absolute;
  top: -12px;
  right: 24px;
  background: rgb(134, 192, 79);
  color: rgb(26, 54, 90);
  padding: 4px 16px;
  font-family: monospace;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 4px;
}

/* Protocol Indicator */
.protocol-indicator {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.protocol-light {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background 0.3s ease;
}

.protocol-light.active {
  background: rgb(134, 192, 79);
  box-shadow: 0 0 20px rgba(134, 192, 79, 0.5);
}

/* Quantum Interface */
.quantum-interface {
  background: linear-gradient(135deg, rgb(13, 27, 45), rgb(26, 54, 90));
  border: 2px solid rgba(82, 138, 191, 0.5);
  border-radius: 20px;
  padding: 2px;
  max-width: 500px;
  margin: 0 auto;
}

.interface-header {
  background: rgba(26, 54, 90, 0.8);
  padding: 16px;
  border-radius: 18px 18px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(82, 138, 191, 0.3);
}

.interface-controls {
  display: flex;
  gap: 8px;
}

.control-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control-dot.red {
  background: #ff5f56;
}
.control-dot.yellow {
  background: #ffbd2e;
}
.control-dot.green {
  background: #27ca3f;
}

.interface-title {
  font-family: monospace;
  color: white;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.interface-content {
  padding: 32px;
  border-radius: 0 0 18px 18px;
}

.interface-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

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

.grid-icon {
  width: 60px;
  height: 60px;
  background: rgba(82, 138, 191, 0.2);
  border: 2px solid rgba(134, 192, 79, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.grid-item:hover .grid-icon {
  background: rgba(134, 192, 79, 0.3);
  border-color: rgb(134, 192, 79);
  transform: scale(1.1);
}

.grid-label {
  font-family: monospace;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

/* Download Section */
.download-title {
  text-align: center;
  font-family: monospace;
  color: white;
  font-size: 1.125rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.download-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.download-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: rgba(26, 54, 90, 0.8);
  border: 2px solid rgba(82, 138, 191, 0.3);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.download-button:hover {
  border-color: rgb(134, 192, 79);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.download-button.ios:hover {
  background: rgba(82, 138, 191, 0.2);
}

.download-button.android:hover {
  background: rgba(134, 192, 79, 0.2);
}

.download-button i {
  font-size: 1.5rem;
  color: white;
}

.download-text {
  display: flex;
  flex-direction: column;
}

.download-label {
  font-family: monospace;
  color: white;
  font-size: 0.875rem;
}

.download-version {
  font-family: monospace;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
}

/* Animations */
@keyframes scan {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Data Flow Visualization */
.data-flow {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
      circle at 20% 30%,
      rgba(134, 192, 79, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(82, 138, 191, 0.05) 0%,
      transparent 50%
    );
  animation: data-pulse 8s ease-in-out infinite;
}

/* Neural Connection */
.neural-connection {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.connection-node {
  width: 12px;
  height: 12px;
  background: rgb(134, 192, 79);
  border-radius: 50%;
  position: relative;
  animation: node-pulse 2s infinite;
}

.connection-node:nth-child(1) {
  animation-delay: 0s;
}
.connection-node:nth-child(3) {
  animation-delay: 0.5s;
}
.connection-node:nth-child(5) {
  animation-delay: 1s;
}

.connection-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgb(134, 192, 79), rgb(82, 138, 191));
  animation: line-flow 2s linear infinite;
}

/* Neural Feedback Unit */
.neural-feedback-unit {
  background: rgba(26, 54, 90, 0.4);
  border: 1px solid rgba(82, 138, 191, 0.3);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.neural-feedback-unit:hover {
  border-color: rgb(134, 192, 79);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(134, 192, 79, 0.1);
}

.neural-feedback-unit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(134, 192, 79),
    transparent
  );
  transition: left 0.5s ease;
}

.neural-feedback-unit:hover::before {
  left: 100%;
}

/* Feedback Header */
.feedback-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.user-avatar {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.avatar-core {
  position: relative;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgb(26, 54, 90), rgb(13, 27, 45));
  border: 2px solid rgb(82, 138, 191);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.avatar-initials {
  color: white;
  font-weight: bold;
  font-family: monospace;
  font-size: 0.875rem;
}

.avatar-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgb(134, 192, 79);
  border-radius: 50%;
  animation: ring-rotate 3s linear infinite;
}

.user-matrix {
  flex: 1;
}

/* Rating Matrix */
.rating-matrix {
  display: flex;
  align-items: flex-end;
  gap: 16px;
  margin-top: 8px;
}

.rating-bars {
  flex: 1;
}

.rating-bar {
  margin-bottom: 6px;
}

.bar-label {
  display: block;
  font-family: monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2px;
}

.bar-fill {
  height: 4px;
  background: linear-gradient(90deg, rgb(134, 192, 79), rgb(82, 138, 191));
  width: var(--rating);
  border-radius: 2px;
  transition: width 1s ease;
}

.rating-score {
  text-align: center;
}

.score-value {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: monospace;
  background: linear-gradient(45deg, rgb(134, 192, 79), rgb(82, 138, 191));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.score-label {
  font-size: 0.6rem;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Feedback Body */
.feedback-body {
  margin-bottom: 20px;
}

.feedback-meta {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.meta-tag {
  background: rgba(82, 138, 191, 0.2);
  border: 1px solid rgba(82, 138, 191, 0.3);
  border-radius: 4px;
  padding: 4px 8px;
  font-family: monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

.feedback-content {
  position: relative;
}

.feedback-quote {
  padding-left: 16px;
  border-left: 2px solid rgb(134, 192, 79);
}

.quote-mark {
  position: absolute;
  top: -8px;
  left: 0;
  font-size: 2rem;
  color: rgb(134, 192, 79);
  font-family: serif;
  line-height: 1;
}

.feedback-timestamp {
  display: flex;
  align-items: center;
  margin-top: 12px;
  padding-left: 16px;
}

/* Feedback Footer */
.feedback-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(82, 138, 191, 0.2);
}

.verification-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

.verification-text {
  font-family: monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

.feedback-id {
  font-family: monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Live Feed Stats */
.live-feed-stats {
  background: rgba(13, 27, 45, 0.8);
  border: 1px solid rgba(82, 138, 191, 0.3);
  border-radius: 12px;
  padding: 24px;
}

.stats-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.stats-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: rgb(134, 192, 79);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.stats-title {
  font-family: monospace;
  color: white;
  font-size: 1rem;
  letter-spacing: 1px;
}

.stats-refresh {
  display: flex;
  align-items: center;
  gap: 8px;
}

.refresh-text {
  font-family: monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  animation: blink 2s infinite;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.stat-value {
  font-size: 2.5rem;
  font-weight: bold;
  font-family: monospace;
  background: linear-gradient(45deg, rgb(134, 192, 79), rgb(82, 138, 191));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.stat-trend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: monospace;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  width: fit-content;
  margin: 0 auto;
}

.stat-trend.up {
  background: rgba(134, 192, 79, 0.2);
  color: rgb(134, 192, 79);
}

.stat-trend.down {
  background: rgba(82, 138, 191, 0.2);
  color: rgb(82, 138, 191);
}

/* Neural Access Link */
.neural-access-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgb(82, 138, 191);
  font-family: monospace;
  font-size: 1rem;
  text-decoration: none;
  position: relative;
  padding: 12px 24px;
}

.link-text {
  transition: color 0.3s ease;
}

.link-icon {
  transition: transform 0.3s ease;
}

.neural-access-link:hover .link-text {
  color: rgb(134, 192, 79);
}

.neural-access-link:hover .link-icon {
  transform: translateX(4px);
}

.link-glitch {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  color: red;
  font-family: monospace;
}

.neural-access-link:hover .link-glitch {
  animation: glitch 0.3s infinite;
  opacity: 0.3;
}

/* Animations */
@keyframes data-pulse {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes node-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

@keyframes line-flow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes ring-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Quantum Field */
.quantum-field {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(134, 192, 79, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(82, 138, 191, 0.1) 0%,
      transparent 50%
    );
  animation: field-pulse 8s ease-in-out infinite;
}

/* Protocol Status */
.protocol-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.status-indicators {
  display: flex;
  gap: 6px;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.status-indicator.active {
  background: rgb(134, 192, 79);
  box-shadow: 0 0 10px rgba(134, 192, 79, 0.5);
}

.status-text {
  font-family: monospace;
  color: rgb(134, 192, 79);
  font-size: 0.875rem;
  letter-spacing: 1px;
}

/* Quantum Protocol Buttons */
.quantum-protocol-btn {
  position: relative;
  flex: 1;
  max-width: 320px;
  background: rgba(26, 54, 90, 0.6);
  border: 2px solid rgba(82, 138, 191, 0.4);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: left;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.quantum-protocol-btn:hover {
  border-color: rgb(134, 192, 79);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(134, 192, 79, 0.2);
}

.quantum-protocol-btn.primary:hover {
  background: rgba(26, 54, 90, 0.8);
}

.quantum-protocol-btn.secondary:hover {
  background: rgba(13, 27, 45, 0.8);
}

.btn-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(134, 192, 79),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.quantum-protocol-btn:hover .btn-glow {
  opacity: 1;
  animation: scan 2s linear infinite;
}

.btn-text {
  display: block;
  color: white;
  font-family: monospace;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.btn-subtext {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-family: monospace;
  font-size: 0.875rem;
}

.btn-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(82, 138, 191, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.btn-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgb(134, 192, 79);
  color: rgb(26, 54, 90);
  padding: 4px 12px;
  font-family: monospace;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 4px;
}

/* Knowledge Matrix */
.knowledge-matrix-container {
  background: rgba(13, 27, 45, 0.8);
  border: 1px solid rgba(82, 138, 191, 0.3);
  border-radius: 16px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.matrix-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: rgba(26, 54, 90, 0.6);
  border-bottom: 1px solid rgba(82, 138, 191, 0.3);
}

.matrix-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-family: monospace;
  font-size: 1.125rem;
  font-weight: bold;
}

.matrix-status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: rgb(134, 192, 79);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.matrix-content {
  padding: 8px;
}

.matrix-item {
  background: rgba(26, 54, 90, 0.4);
  border: 1px solid rgba(82, 138, 191, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.matrix-item:hover {
  border-color: rgba(134, 192, 79, 0.5);
  background: rgba(26, 54, 90, 0.6);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.item-id {
  font-family: monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.item-expand {
  width: 24px;
  height: 24px;
  background: rgba(82, 138, 191, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.matrix-item:hover .item-expand {
  background: rgba(134, 192, 79, 0.3);
}

.item-question {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.q-marker {
  color: rgb(134, 192, 79);
  font-family: monospace;
  font-weight: bold;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.item-answer {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.a-marker {
  color: rgb(82, 138, 191);
  font-family: monospace;
  font-weight: bold;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Network Brand */
.network-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo {
  position: relative;
  width: 60px;
  height: 60px;
}

.logo-core {
  position: relative;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgb(26, 54, 90), rgb(13, 27, 45));
  border: 2px solid rgb(82, 138, 191);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.logo-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgb(134, 192, 79);
  border-radius: 12px;
  animation: ring-rotate 4s linear infinite;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  letter-spacing: 1px;
}

.brand-tag {
  font-family: monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

/* Network Links */
.network-links {
  display: flex;
  gap: 12px;
}

.network-link {
  position: relative;
  width: 40px;
  height: 40px;
  background: rgba(26, 54, 90, 0.8);
  border: 1px solid rgba(82, 138, 191, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.network-link:hover {
  border-color: rgb(134, 192, 79);
  color: white;
  transform: translateY(-4px);
}

.link-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(134, 192, 79, 0.2),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.network-link:hover .link-glow {
  opacity: 1;
}

/* Navigation Links */
.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(26, 54, 90, 0.4);
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-link:hover {
  border-color: rgba(134, 192, 79, 0.3);
  background: rgba(26, 54, 90, 0.6);
  transform: translateX(4px);
}

.nav-indicator {
  width: 8px;
  height: 8px;
  background: rgba(82, 138, 191, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.nav-link:hover .nav-indicator {
  background: rgb(134, 192, 79);
  box-shadow: 0 0 8px rgba(134, 192, 79, 0.5);
}

.nav-text {
  flex: 1;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

.nav-arrow {
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.nav-link:hover .nav-arrow {
  color: rgb(134, 192, 79);
  transform: translateX(4px);
}

/* Protocol Links */
.protocol-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(26, 54, 90, 0.4);
  border: 1px solid transparent;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.protocol-link:hover {
  border-color: rgba(82, 138, 191, 0.3);
  background: rgba(26, 54, 90, 0.6);
}

.protocol-icon {
  font-size: 1.25rem;
}

.protocol-text {
  font-family: monospace;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* Contact Nodes */
.contact-node {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: rgba(26, 54, 90, 0.4);
  border: 1px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-node:hover {
  border-color: rgba(134, 192, 79, 0.3);
  background: rgba(26, 54, 90, 0.6);
}

.node-icon {
  width: 36px;
  height: 36px;
  background: rgba(82, 138, 191, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(82, 138, 191);
  flex-shrink: 0;
}

.node-content {
  flex: 1;
}

.node-label {
  font-family: monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.node-value {
  font-family: monospace;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

/* System Info */
.system-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.copyright {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.7);
}

.system-tag {
  font-family: monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* System Links */
.system-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.developer-node {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dev-label {
  font-family: monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.dev-link {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.dev-name {
  font-family: monospace;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.dev-icon {
  color: rgb(82, 138, 191);
  font-size: 0.75rem;
}

.legal-grid {
  display: flex;
  gap: 16px;
}

.legal-link {
  font-family: monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: rgb(134, 192, 79);
}

/* System Status Footer */
.system-status-footer {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-indicator.online {
  background: rgb(134, 192, 79);
  box-shadow: 0 0 8px rgba(134, 192, 79, 0.5);
  animation: pulse 2s infinite;
}

.status-indicator.active {
  background: rgb(82, 138, 191);
  box-shadow: 0 0 8px rgba(82, 138, 191, 0.5);
  animation: pulse 2s infinite 0.5s;
}

.status-indicator.ready {
  background: rgb(134, 192, 79);
  box-shadow: 0 0 8px rgba(134, 192, 79, 0.5);
  animation: pulse 2s infinite 1s;
}

/* Grid Overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      rgba(82, 138, 191, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(82, 138, 191, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Animations */
@keyframes field-pulse {
  0%,
  100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.2;
  }
}

@keyframes ring-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes scan {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
