@import url("https://fonts.googleapis.com/css2?family=Syncopate:wght@400;700&family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&family=Audiowide&display=swap");

/* Core Variables */
:root {
  /* Primary Colors */
  --neon-blue: #00f0ff;
  --neon-blue-vivid: #00ddff;
  --neon-blue-dark: #00a6ff;
  --neon-blue-glow: rgba(0, 240, 255, 0.8);
  --neon-purple: #9d00ff;
  --neon-purple-vivid: #b700ff;
  --neon-purple-glow: rgba(157, 0, 255, 0.8);
  --neon-red: #ff2d55;
  --neon-red-vivid: #ff0844;
  --neon-red-glow: rgba(255, 45, 85, 0.8);
  --neon-green: #0cff0c;
  --neon-green-glow: rgba(12, 255, 12, 0.8);

  /* Background Colors */
  --deep-space: #01010d;
  --darkest-bg: #020210;
  --darker-bg: #040420;
  --dark-bg: #060636;

  /* UI Elements */
  --glass-bg: rgba(10, 10, 24, 0.4);
  --glass-bg-darker: rgba(5, 5, 20, 0.6);
  --glass-border: rgba(0, 240, 255, 0.15);
  --glass-border-accent: rgba(0, 240, 255, 0.4);
  --glass-highlight: rgba(255, 255, 255, 0.07);
  --glass-blur: blur(10px);
  --grid-line: rgba(0, 240, 255, 0.07);

  /* Text Colors */
  --text-white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.85);
  --text-medium: rgba(255, 255, 255, 0.7);
  --text-dim: rgba(255, 255, 255, 0.5);

  /* Shadows & Glows */
  --blue-glow-sm: 0 0 5px var(--neon-blue-glow);
  --blue-glow: 0 0 10px var(--neon-blue-glow), 0 0 20px rgba(0, 240, 255, 0.4);
  --blue-glow-lg: 0 0 15px var(--neon-blue-glow),
    0 0 30px rgba(0, 240, 255, 0.6), 0 0 45px rgba(0, 240, 255, 0.3);
  --purple-glow: 0 0 10px var(--neon-purple-glow),
    0 0 20px rgba(157, 0, 255, 0.4);
  --red-glow: 0 0 10px var(--neon-red-glow), 0 0 20px rgba(255, 45, 85, 0.4);
  --neon-text-shadow: 0 0 2px rgba(255, 255, 255, 0.8),
    0 0 8px var(--neon-blue-glow);

  /* Gradients */
  --cyber-gradient: linear-gradient(90deg,
      var(--neon-blue),
      var(--neon-purple),
      var(--neon-red));
  --cyber-gradient-animated: linear-gradient(270deg,
      var(--neon-blue),
      var(--neon-purple),
      var(--neon-red),
      var(--neon-purple),
      var(--neon-blue));
  --blue-purple-gradient: linear-gradient(120deg,
      var(--neon-blue),
      var(--neon-purple));
  --holographic-gradient: linear-gradient(135deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.15) 30%,
      rgba(255, 255, 255, 0.05) 50%,
      rgba(255, 255, 255, 0.1) 70%,
      rgba(255, 255, 255, 0.05) 100%);

  /* Borders */
  --border-glow: 1px solid var(--neon-blue-glow);
  --border-thin: 1px solid var(--glass-border);
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;
  --border-radius-full: 9999px;

  /* Animation Speeds */
  --speed-slow: 0.8s;
  --speed-medium: 0.4s;
  --speed-fast: 0.2s;

  /* Z-Index Layers */
  --z-background: -1;
  --z-base: 1;
  --z-above: 10;
  --z-overlay: 100;
  --z-modal: 1000;
  --z-max: 9999;
}

/* Base & Resets */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  /* 10px base */
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--deep-space);
  overflow-x: hidden;
}

/* WebGL Canvas for 3D Effects */
#webgl-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-background);
  pointer-events: none;
}

/* Noise Overlay */
.noise {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  z-index: var(--z-overlay);
  pointer-events: none;
}

/* Digital Scan Lines */
.scanlines {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(to bottom,
      transparent 0px,
      transparent 1px,
      rgba(0, 240, 255, 0.03) 3px,
      transparent 4px,
      transparent 7px);
  pointer-events: none;
  z-index: var(--z-overlay);
  opacity: 0.3;
}

/* Glitch Effects */
@keyframes glitch-anim-1 {

  0%,
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  20% {
    opacity: 0.8;
    transform: translate3d(-5px, 2px, 0);
    clip-path: polygon(0 15%, 100% 0, 100% 75%, 0% 100%);
  }

  40% {
    opacity: 0.9;
    transform: translate3d(5px, -2px, 0);
    clip-path: polygon(0 0, 100% 25%, 100% 100%, 0% 85%);
  }

  60% {
    opacity: 0.6;
    transform: translate3d(-3px, 1px, 0);
    clip-path: polygon(0 25%, 100% 15%, 100% 85%, 0% 90%);
  }

  80% {
    opacity: 0.8;
    transform: translate3d(3px, -1px, 0);
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 90%);
  }
}

@keyframes glitch-anim-2 {

  0%,
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  25% {
    opacity: 0.6;
    transform: translate3d(4px, 2px, 0);
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
  }

  50% {
    opacity: 0.7;
    transform: translate3d(-4px, -2px, 0);
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 95%);
  }

  75% {
    opacity: 0.5;
    transform: translate3d(4px, -2px, 0);
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0% 100%);
  }
}

/* Advanced Animations */
@keyframes floating {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  25% {
    transform: translateY(-15px) rotate(1deg);
  }

  50% {
    transform: translateY(0) rotate(0deg);
  }

  75% {
    transform: translateY(15px) rotate(-1deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes rotateSlow {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes borderFlash {

  0%,
  100% {
    border-color: var(--neon-blue);
    box-shadow: var(--blue-glow);
  }

  33% {
    border-color: var(--neon-purple);
    box-shadow: var(--purple-glow);
  }

  66% {
    border-color: var(--neon-red);
    box-shadow: var(--red-glow);
  }
}

@keyframes textGlow {

  0%,
  100% {
    text-shadow: var(--blue-glow-sm);
  }

  33% {
    text-shadow: 0 0 5px var(--neon-purple-glow);
  }

  66% {
    text-shadow: 0 0 5px var(--neon-red-glow);
  }
}

@keyframes backgroundPan {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes holographicShift {

  0%,
  100% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 100%;
  }
}

@keyframes flicker {

  0%,
  100% {
    opacity: 1;
  }

  8%,
  12% {
    opacity: 0.8;
  }

  14%,
  16% {
    opacity: 0.9;
  }

  46%,
  48% {
    opacity: 0.7;
  }

  50%,
  52% {
    opacity: 0.9;
  }

  86%,
  88% {
    opacity: 0.8;
  }
}

@keyframes dataStream {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 1000px;
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

h1 {
  font-size: 6rem;
  letter-spacing: 0.2rem;
}

h2 {
  font-size: 4.8rem;
  letter-spacing: 0.15rem;
}

h3 {
  font-size: 3.6rem;
  letter-spacing: 0.1rem;
}

h4 {
  font-size: 2.4rem;
  letter-spacing: 0.05rem;
}

p {
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

a {
  color: var(--neon-blue);
  text-decoration: none;
  transition: all var(--speed-medium) cubic-bezier(0.25, 1, 0.5, 1);
}

a:hover {
  color: var(--neon-blue-vivid);
  text-shadow: var(--blue-glow-sm);
}

/* Container & Layout */
.container {
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  z-index: var(--z-base);
}

.section {
  position: relative;
  padding: 12rem 0;
  overflow: hidden;
}

/* Futuristic UI Elements */
.ui-frame {
  position: relative;
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  overflow: hidden;
  transition: all var(--speed-medium) ease;
}

.ui-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--holographic-gradient);
  background-size: 200% 200%;
  opacity: 0.1;
  pointer-events: none;
  animation: holographicShift 8s infinite alternate;
}

.ui-frame:hover {
  border-color: var(--glass-border-accent);
  box-shadow: var(--blue-glow-sm);
}

.ui-frame-header {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--glass-border);
}

.ui-frame-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--glass-highlight);
  pointer-events: none;
}

.ui-frame-title {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--neon-blue);
}

.ui-frame-controls {
  margin-left: auto;
  display: flex;
  gap: 1rem;
}

.ui-control {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  border: 1px solid currentColor;
}

.ui-control:nth-child(1) {
  background-color: rgba(255, 76, 76, 0.3);
  color: rgba(255, 76, 76, 0.6);
}

.ui-control:nth-child(2) {
  background-color: rgba(255, 188, 0, 0.3);
  color: rgba(255, 188, 0, 0.6);
}

.ui-control:nth-child(3) {
  background-color: rgba(0, 215, 95, 0.3);
  color: rgba(0, 215, 95, 0.6);
}

.ui-frame-content {
  padding: 2rem;
}

.ui-data-display {
  position: relative;
  width: 100%;
  padding: 2rem;
  border-radius: var(--border-radius-sm);
  background: var(--glass-bg-darker);
  font-family: "Rajdhani", monospace;
  color: var(--neon-blue);
  font-size: 1.4rem;
  line-height: 1.8;
  overflow: hidden;
}

.ui-data-display::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(to bottom, var(--neon-blue) 0%, transparent 100%);
  opacity: 0.1;
  animation: dataStream 20s linear infinite;
}

/* Advanced Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 3rem;
  font-family: "Orbitron", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--text-white);
  background: transparent;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all var(--speed-medium) ease;
  z-index: 1;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn i {
  margin-right: 1rem;
  font-size: 1.8rem;
  transition: transform var(--speed-medium) ease;
}

.btn:hover i {
  transform: translateX(-5px);
}

/* Neon Button */
.btn-neon {
  background: rgba(0, 240, 255, 0.1);
  border: 2px solid var(--neon-blue);
  border-radius: var(--border-radius-sm);
  color: var(--neon-blue);
  text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.btn-neon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(0, 240, 255, 0.3),
      transparent);
  transition: all var(--speed-slow) ease;
  z-index: -1;
}

.btn-neon:hover {
  color: var(--text-white);
  border-color: var(--neon-blue-vivid);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4),
    inset 0 0 15px rgba(0, 240, 255, 0.4);
  text-shadow: 0 0 10px var(--neon-blue);
}

.btn-neon:hover::before {
  left: 100%;
}

/* Gradient Button */
.btn-gradient {
  background: var(--cyber-gradient);
  background-size: 200% 100%;
  border-radius: var(--border-radius-sm);
  animation: backgroundPan 6s linear infinite;
}

.btn-gradient::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: rgba(6, 6, 54, 0.8);
  border-radius: calc(var(--border-radius-sm) - 2px);
  z-index: -1;
  transition: all var(--speed-medium) ease;
}

.btn-gradient:hover::before {
  background: rgba(10, 10, 90, 0.5);
}

.btn-gradient:hover {
  box-shadow: 0 0 30px rgba(157, 0, 255, 0.4);
}

/* Holo Button */
.btn-holo {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-radius: var(--border-radius-sm);
}

.btn-holo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--holographic-gradient);
  background-size: 200% 200%;
  opacity: 0.15;
  z-index: -1;
  animation: holographicShift 3s ease infinite alternate;
}

.btn-holo:hover {
  border-color: rgba(255, 255, 255, 0.3);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.btn-holo:hover::before {
  opacity: 0.3;
}

/* Glowing Text & Elements */
.text-glow {
  color: var(--neon-blue);
  text-shadow: var(--blue-glow-sm);
  animation: textGlow 4s infinite;
}

.border-glow {
  border: 1px solid var(--neon-blue) !important;
  box-shadow: var(--blue-glow) !important;
  animation: borderFlash 8s infinite;
}

/* Heading with Cyberpunk Effect */
.cyber-heading {
  position: relative;
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: transparent;
  background: var(--cyber-gradient-animated);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: backgroundPan 15s linear infinite;
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}

.cyber-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 4px;
  background: var(--cyber-gradient);
  border-radius: 2px;
}

/* Glitch Text Effect */
.glitch-text {
  position: relative;
  display: inline-block;
  color: var(--text-white);
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.glitch-text::before {
  color: var(--neon-red);
  z-index: -2;
  animation: glitch-anim-1 5s infinite;
}

.glitch-text::after {
  color: var(--neon-blue);
  z-index: -1;
  animation: glitch-anim-2 5s infinite;
}

/* Futuristic Cards */
.tech-card {
  position: relative;
  border-radius: var(--border-radius-md);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition: all var(--speed-medium) cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--neon-blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--speed-medium) ease;
  z-index: 1;
}

.tech-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon-blue);
  box-shadow: var(--blue-glow);
}

.tech-card:hover::before {
  transform: scaleY(1);
}

.tech-card-inner {
  position: relative;
  padding: 3rem;
  z-index: 2;
}

.tech-card-icon {
  display: inline-block;
  font-size: 4rem;
  color: var(--neon-blue);
  margin-bottom: 2rem;
  transition: all var(--speed-medium) ease;
}

.tech-card:hover .tech-card-icon {
  transform: translateY(-5px) scale(1.1);
  color: var(--neon-blue-vivid);
  text-shadow: var(--blue-glow);
}

.tech-card-title {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  color: var(--text-white);
}

.tech-card-desc {
  font-size: 1.6rem;
  color: var(--text-medium);
  margin-bottom: 2.5rem;
  min-height: 8rem;
}

.tech-card-link {
  display: inline-flex;
  align-items: center;
  color: var(--neon-blue);
  font-weight: 600;
  font-size: 1.6rem;
  transition: all var(--speed-medium) ease;
}

.tech-card-link i {
  margin-left: 0.8rem;
  transition: transform var(--speed-medium) ease;
}

.tech-card-link:hover i {
  transform: translateX(5px);
}

/* Holographic Element */
.holo-element {
  position: relative;
  border-radius: var(--border-radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  overflow: hidden;
  isolation: isolate;
}

.holo-element::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-conic-gradient(from 0deg,
      rgba(0, 240, 255, 0) 0deg,
      rgba(0, 240, 255, 0.1) 1deg,
      rgba(0, 240, 255, 0) 2deg,
      rgba(0, 240, 255, 0) 5deg);
  animation: rotateSlow 15s linear infinite;
  z-index: -1;
  opacity: 0.5;
}

.holo-element::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 240, 255, 0.1) 0%,
      transparent 50%,
      rgba(157, 0, 255, 0.1) 100%);
  z-index: -1;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-overlay);
  transition: all var(--speed-medium) ease;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  transition: all var(--speed-medium) ease;
}

.navbar.scrolled {
  padding: 1.5rem 0;
  background: rgba(1, 1, 13, 0.8);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  font-family: "Audiowide", cursive;
  font-size: 2.8rem;
  color: var(--neon-blue);
  letter-spacing: 0.1rem;
  text-shadow: var(--blue-glow-sm);
}

.logo img,
.logo i {
  margin-right: 1rem;
  font-size: 3.2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  list-style: none;
}

.nav-link {
  position: relative;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  padding: 0.5rem 0;
  transition: all var(--speed-medium) ease;
}

.nav-link::before,
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--neon-blue);
  transition: width var(--speed-medium) ease;
}

.nav-link::before {
  top: 0;
  left: 0;
}

.nav-link::after {
  bottom: 0;
  right: 0;
}

.nav-link:hover {
  color: var(--neon-blue);
  text-shadow: var(--blue-glow-sm);
}

.nav-link:hover::before,
.nav-link:hover::after {
  width: 100%;
}

.nav-btns {
  display: flex;
  gap: 1.5rem;
}

.nav-btn {
  padding: 1rem 2rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0;
}

.hero-content {
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: var(--z-base);
}

.hero-info {
  flex: 1;
  max-width: 60rem;
}

.hero-title {
  font-size: 7.2rem;
  line-height: 1.1;
  margin-bottom: 2rem;
  font-weight: 900;
  color: var(--text-white);
  text-transform: uppercase;
  position: relative;
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  font-family: "Rajdhani", sans-serif;
  font-size: 2.4rem;
  color: var(--text-medium);
  margin-bottom: 3rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.hero-tagline {
  font-size: 2rem;
  color: var(--neon-blue);
  margin-bottom: 4rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
}

.hero-btns {
  display: flex;
  gap: 2rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 5rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-full);
  transition: all var(--speed-medium) ease;
}

.hero-feature:hover {
  transform: translateY(-5px);
  border-color: var(--neon-blue);
  box-shadow: var(--blue-glow-sm);
}

.hero-feature i {
  font-size: 2rem;
  color: var(--neon-blue);
  margin-right: 1rem;
}

.hero-visual {
  flex: 1;
  max-width: 50rem;
  position: relative;
}

/* 3D Token Visualization */
.token-visual {
  position: relative;
  width: 40rem;
  height: 40rem;
  margin: 0 auto;
  perspective: 1000px;
}

.token-model {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  /* animation: floating 8s ease-in-out infinite, rotateSlow 20s linear infinite; */
  background-image: url(./logo.jpg);
  background-size: 100%;
  border-radius: 1000%;
  /* border: 10px solid #040b17; */
}

.token-hologram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(0, 240, 255, 0.1) 0%,
      rgba(0, 240, 255, 0.05) 50%,
      transparent 70%);
  box-shadow: 0 0 100px rgba(0, 240, 255, 0.3);
  z-index: -1;
}

.data-stream {
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 300%;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 240, 255, 0.2) 10%,
      rgba(0, 240, 255, 0.1) 50%,
      transparent 100%);
  background-size: 10px 20px;
  animation: dataStream 10s linear infinite;
  opacity: 0.3;
}

/* About Section */
.about-section {
  position: relative;
  background: var(--darker-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-content {
  position: relative;
}

.about-tag {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-full);
  font-size: 1.6rem;
  color: var(--neon-blue);
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
}

.about-title {
  font-size: 4.2rem;
  margin-bottom: 3rem;
  color: var(--text-white);
}

.about-desc {
  font-size: 1.8rem;
  color: var(--text-medium);
  margin-bottom: 4rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-feature {
  position: relative;
  padding: 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-sm);
  transition: all var(--speed-medium) ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  border-color: var(--neon-blue);
  box-shadow: var(--blue-glow-sm);
  background: var(--glass-bg-darker);
}

.about-feature i {
  font-size: 2.4rem;
  color: var(--neon-blue);
  margin-bottom: 1.5rem;
  transition: all var(--speed-medium) ease;
}

.about-feature:hover i {
  transform: scale(1.2);
  text-shadow: var(--blue-glow);
}

.about-feature h4 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.about-feature p {
  font-size: 1.6rem;
  color: var(--text-medium);
  margin-bottom: 0;
}

.about-visual {
  position: relative;
}

.about-image {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  /* transform: perspective(1000px) rotateY(-15deg) translateZ(0); */
  transition: all var(--speed-medium) ease;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.about-image:hover {
  transform: perspective(1000px) rotateY(0) translateZ(0);
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all var(--speed-medium) ease;
}

.about-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 240, 255, 0.2) 0%,
      transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.about-image-border {
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 2px solid var(--neon-blue);
  border-radius: var(--border-radius-md);
  z-index: 0;
}

/* Roadmap Section */
.roadmap-section {
  position: relative;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
  margin-top: 6rem;
}

.phase-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: all var(--speed-medium) cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.phase-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon-blue);
  box-shadow: var(--blue-glow);
}

.phase-header {
  position: relative;
  padding: 2rem;
  background: var(--glass-bg-darker);
  border-bottom: 1px solid var(--glass-border);
}

.phase-date {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--neon-blue);
  border-radius: var(--border-radius-full);
  font-size: 1.4rem;
  color: var(--neon-blue);
  margin-bottom: 1.5rem;
}

.phase-title {
  font-size: 2.4rem;
  color: var(--text-white);
  margin-bottom: 0;
}

.phase-content {
  padding: 2rem;
}

.phase-list {
  list-style: none;
}

.phase-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  color: var(--text-medium);
}

.phase-item:last-child {
  margin-bottom: 0;
}

.phase-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 1rem;
  height: 1rem;
  background: var(--neon-blue);
  border-radius: 50%;
  box-shadow: var(--blue-glow-sm);
}

/* Features Section */
.features-section {
  position: relative;
  background: var(--darker-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  gap: 4rem;
  margin-top: 6rem;
}

/* Community Section */
.community-section {
  position: relative;
  text-align: center;
}

.community-subtitle {
  font-size: 2rem;
  color: var(--neon-blue);
  margin-bottom: 2rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.community-title {
  font-size: 4.8rem;
  color: var(--text-white);
  margin-bottom: 3rem;
}

.community-desc {
  max-width: 70rem;
  margin: 0 auto 5rem;
  font-size: 2rem;
  color: var(--text-medium);
}

.social-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 5rem;
}

.social-item {
  position: relative;
  width: 8rem;
  height: 8rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--speed-medium) ease;
  overflow: hidden;
}

.social-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle,
      rgba(0, 240, 255, 0.2) 0%,
      transparent 70%);
  opacity: 0;
  transition: opacity var(--speed-medium) ease;
}

.social-item:hover {
  transform: translateY(-10px);
  border-color: var(--neon-blue);
  box-shadow: var(--blue-glow);
}

.social-item:hover::before {
  opacity: 1;
}

.social-icon {
  font-size: 3rem;
  color: var(--text-white);
  transition: all var(--speed-medium) ease;
}

.social-item:hover .social-icon {
  color: var(--neon-blue);
  transform: scale(1.2);
}

.community-btn {
  margin-top: 3rem;
}

/* Footer */
footer {
  position: relative;
  background: var(--deep-space);
  padding: 8rem 0 2rem;
  z-index: var(--z-base);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: "Audiowide", cursive;
  font-size: 2.8rem;
  color: var(--neon-blue);
  margin-bottom: 2rem;
  display: block;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-desc {
  font-size: 1.6rem;
  color: var(--text-medium);
  margin-bottom: 0;
}

.footer-title {
  font-size: 2rem;
  color: var(--text-white);
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4rem;
  height: 2px;
  background: var(--neon-blue);
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 1.5rem;
}

.footer-link a {
  display: inline-block;
  font-size: 1.6rem;
  color: var(--text-medium);
  position: relative;
  padding-left: 1.5rem;
  transition: all var(--speed-medium) ease;
}

.footer-link a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--neon-blue);
  transition: all var(--speed-medium) ease;
}

.footer-link a:hover {
  color: var(--text-white);
  transform: translateX(5px);
}

.footer-link a:hover::before {
  color: var(--neon-blue-vivid);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  font-size: 1.6rem;
  color: var(--text-dim);
}

.copyright a {
  color: var(--neon-blue);
}

.footer-social {
  display: flex;
  gap: 2rem;
}

.footer-social-link {
  font-size: 1.8rem;
  color: var(--text-medium);
  transition: all var(--speed-medium) ease;
}

.footer-social-link:hover {
  color: var(--neon-blue);
  transform: translateY(-3px);
}

/* HUD Elements */
.hud-element {
  position: absolute;
  z-index: var(--z-above);
  pointer-events: none;
}

.hud-corner {
  width: 10rem;
  height: 10rem;
  border-style: solid;
  border-width: 0;
  opacity: 0.6;
}

.hud-top-left {
  top: 2rem;
  left: 2rem;
  border-top-width: 2px;
  border-left-width: 2px;
  border-color: var(--neon-blue);
  border-top-left-radius: 1rem;
}

.hud-top-right {
  top: 2rem;
  right: 2rem;
  border-top-width: 2px;
  border-right-width: 2px;
  border-color: var(--neon-blue);
  border-top-right-radius: 1rem;
}

.hud-bottom-left {
  bottom: 2rem;
  left: 2rem;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-color: var(--neon-blue);
  border-bottom-left-radius: 1rem;
}

.hud-bottom-right {
  bottom: 2rem;
  right: 2rem;
  border-bottom-width: 2px;
  border-right-width: 2px;
  border-color: var(--neon-blue);
  border-bottom-right-radius: 1rem;
}

.hud-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right,
      transparent,
      var(--neon-blue) 10%,
      var(--neon-blue) 90%,
      transparent);
  box-shadow: var(--blue-glow);
  opacity: 0.4;
  z-index: var(--z-overlay);
  animation: scanline 3s linear infinite;
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  z-index: 2;
}

/* Background Elements */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.cyberpunk-city {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/api/placeholder/1920/1080");
  background-size: cover;
  background-position: center bottom;
  filter: brightness(0.4) contrast(1.2) saturate(1.3) hue-rotate(10deg);
  transform: scale(1.1);
  animation: cityPulse 15s ease-in-out infinite;
}

.blockchain-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 95%,
      rgba(0, 240, 255, 0.15) 50%),
    linear-gradient(rgba(0, 240, 255, 0.15) 1px, transparent 1px);
  background-size: 50px 50px;
  transform: perspective(500px) rotateX(60deg) scale(5) translateY(10%);
  opacity: 0.3;
  animation: gridMove 20s linear infinite;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(2, 2, 10, 0.8) 0%,
      rgba(6, 6, 54, 0.8) 100%);
  z-index: 0;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%,
      rgba(0, 240, 255, 0.15) 0%,
      transparent 50%),
    radial-gradient(circle at 80% 70%,
      rgba(157, 0, 255, 0.15) 0%,
      transparent 50%);
  z-index: 0;
}

/* Particle Effects */
.particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 50% 50%,
      rgba(0, 240, 255, 0.5) 0%,
      transparent 0.5%),
    radial-gradient(circle at 30% 40%,
      rgba(0, 240, 255, 0.5) 0%,
      transparent 0.5%),
    radial-gradient(circle at 70% 60%,
      rgba(157, 0, 255, 0.5) 0%,
      transparent 0.5%),
    radial-gradient(circle at 20% 70%,
      rgba(0, 240, 255, 0.5) 0%,
      transparent 0.5%),
    radial-gradient(circle at 80% 30%,
      rgba(157, 0, 255, 0.5) 0%,
      transparent 0.5%),
    radial-gradient(circle at 45% 65%,
      rgba(0, 240, 255, 0.5) 0%,
      transparent 0.5%),
    radial-gradient(circle at 60% 80%,
      rgba(157, 0, 255, 0.5) 0%,
      transparent 0.5%),
    radial-gradient(circle at 35% 20%,
      rgba(0, 240, 255, 0.5) 0%,
      transparent 0.5%),
    radial-gradient(circle at 85% 50%,
      rgba(157, 0, 255, 0.5) 0%,
      transparent 0.5%),
    radial-gradient(circle at 15% 50%,
      rgba(0, 240, 255, 0.5) 0%,
      transparent 0.5%);
  background-size: 100px 100px, 120px 120px, 150px 150px, 200px 200px,
    180px 180px, 170px 170px, 190px 190px, 160px 160px, 140px 140px, 130px 130px;
  background-repeat: repeat;
  filter: blur(1px);
  opacity: 0.7;
  animation: particleFloat 25s linear infinite;
}

/* Circuit Lines */
.circuit-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

.circuit {
  position: absolute;
  width: 100%;
  height: 100%;
}

.circuit-path {
  fill: none;
  stroke: rgba(0, 240, 255, 0.7);
  stroke-width: 2;
  stroke-dasharray: 5, 10;
  stroke-linecap: round;
  filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.7));
  animation: circuitFlow 15s linear infinite;
}

.circuit-node {
  fill: rgba(0, 240, 255, 0.9);
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.8));
  animation: nodeGlow 3s ease-in-out infinite alternate;
}

/* Scan line */
.scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(0, 240, 255, 0.5) 20%,
      rgba(0, 240, 255, 0.8) 50%,
      rgba(0, 240, 255, 0.5) 80%,
      transparent 100%);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.7);
  opacity: 0.7;
  z-index: 2;
  animation: scanLineMove 8s linear infinite;
}

/* Hero Content */
.container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  z-index: 2;
}

.hero-content {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-title {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: titleAppear 1s ease forwards;
}

.title-line-1 {
  display: block;
  font-size: clamp(4rem, 7vw, 7rem);
  color: white;
}

.hero-subtitle-main {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--text-white, #ffffff);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeIn 1s ease 0.3s forwards;
}

.highlight {
  color: #00f0ff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
}

.hero-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 50px;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  animation: fadeIn 1s ease 0.5s forwards;
  opacity: 0;
}

.subtitle-separator {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #00f0ff;
  border-radius: 50%;
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(0, 240, 255, 0.7);
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: slideUp 1s ease 0.8s forwards;
  opacity: 0;
  transform: translateY(20px);
  flex-wrap: wrap;
  max-width: 800px;
  margin: auto;
}

/* Button Styles */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
  border-radius: 4px;
}

.btn i {
  margin-right: 10px;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(-5px);
}

/* Glitch Text Effect */
.glitch-text {
  position: relative;
  display: inline-block;
  color: var(--text-white, #ffffff);
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
}

.glitch-text::before {
  color: #ff2d55;
  z-index: -2;
  animation: glitch-anim-1 5s infinite;
}

.glitch-text::after {
  color: #00f0ff;
  z-index: -1;
  animation: glitch-anim-2 5s infinite;
}

@keyframes glitch-anim-1 {

  0%,
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  20% {
    opacity: 0.8;
    transform: translate3d(-5px, 2px, 0);
    clip-path: polygon(0 15%, 100% 0, 100% 75%, 0% 100%);
  }

  40% {
    opacity: 0.9;
    transform: translate3d(5px, -2px, 0);
    clip-path: polygon(0 0, 100% 25%, 100% 100%, 0% 85%);
  }

  60% {
    opacity: 0.6;
    transform: translate3d(-3px, 1px, 0);
    clip-path: polygon(0 25%, 100% 15%, 100% 85%, 0% 90%);
  }

  80% {
    opacity: 0.8;
    transform: translate3d(3px, -1px, 0);
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0% 90%);
  }
}

@keyframes glitch-anim-2 {

  0%,
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  25% {
    opacity: 0.6;
    transform: translate3d(4px, 2px, 0);
    clip-path: polygon(0 0, 100% 5%, 100% 95%, 0% 100%);
  }

  50% {
    opacity: 0.7;
    transform: translate3d(-4px, -2px, 0);
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0% 95%);
  }

  75% {
    opacity: 0.5;
    transform: translate3d(4px, -2px, 0);
    clip-path: polygon(0 0, 100% 10%, 100% 90%, 0% 100%);
  }
}

/* Text Glow Effect */
.text-glow {
  color: #00f0ff;
  text-shadow: 0 0 5px rgba(0, 240, 255, 0.8);
  animation: textGlow 4s infinite;
}

@keyframes textGlow {

  0%,
  100% {
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.8);
  }

  33% {
    text-shadow: 0 0 5px rgba(157, 0, 255, 0.8);
  }

  66% {
    text-shadow: 0 0 5px rgba(255, 45, 85, 0.8);
  }
}

/* Updated Button Styles */
/* Gradient Button */
.btn-gradient {
  background: linear-gradient(90deg, #00f0ff, #9d00ff, #ff2d55);
  background-size: 200% 100%;
  animation: backgroundPan 6s linear infinite;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.btn-gradient::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: rgba(6, 6, 54, 0.8);
  border-radius: calc(4px - 2px);
  z-index: -1;
  transition: all 0.3s ease;
}

.btn-gradient:hover::before {
  background: rgba(10, 10, 90, 0.5);
}

.btn-gradient:hover {
  box-shadow: 0 0 30px rgba(157, 0, 255, 0.4);
  transform: translateY(-3px);
}

/* Neon Button */
.btn-neon {
  background: rgba(0, 240, 255, 0.1);
  border: 2px solid #00f0ff;
  color: #00f0ff;
  text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.btn-neon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(0, 240, 255, 0.3),
      transparent);
  transition: all 0.8s ease;
  z-index: -1;
}

.btn-neon:hover {
  color: white;
  border-color: #00ddff;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4),
    inset 0 0 15px rgba(0, 240, 255, 0.4);
  text-shadow: 0 0 10px #00f0ff;
  transform: translateY(-3px);
}

.btn-neon:hover::before {
  left: 100%;
}

@keyframes backgroundPan {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

/* HUD Corner Elements */
.hud-element {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.hud-corner {
  width: 100px;
  height: 100px;
  border-style: solid;
  border-width: 0;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.hud-top-left {
  top: 20px;
  left: 20px;
  border-top-width: 2px;
  border-left-width: 2px;
  border-color: #00f0ff;
  border-top-left-radius: 10px;
}

.hud-top-right {
  top: 20px;
  right: 20px;
  border-top-width: 2px;
  border-right-width: 2px;
  border-color: #00f0ff;
  border-top-right-radius: 10px;
}

.hud-bottom-left {
  bottom: 20px;
  left: 20px;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-color: #00f0ff;
  border-bottom-left-radius: 10px;
}

.hud-bottom-right {
  bottom: 20px;
  right: 20px;
  border-bottom-width: 2px;
  border-right-width: 2px;
  border-color: #00f0ff;
  border-bottom-right-radius: 10px;
}

/* Animations */
@keyframes cityPulse {

  0%,
  100% {
    transform: scale(1.1);
    filter: brightness(0.4) contrast(1.2) saturate(1.3) hue-rotate(10deg);
  }

  50% {
    transform: scale(1.15);
    filter: brightness(0.45) contrast(1.25) saturate(1.35) hue-rotate(15deg);
  }
}

@keyframes gridMove {
  0% {
    transform: perspective(500px) rotateX(60deg) scale(5) translateY(10%) translateX(0);
  }

  100% {
    transform: perspective(500px) rotateX(60deg) scale(5) translateY(10%) translateX(-50px);
  }
}

@keyframes particleFloat {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 100px 100px, -120px 120px, 150px -150px, -200px 200px,
      180px -180px, -170px 170px, 190px -190px, -160px 160px, 140px -140px,
      -130px 130px;
  }
}

@keyframes circuitFlow {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes nodeGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.8));
  }

  50% {
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 1));
  }
}

@keyframes scanLineMove {
  0% {
    top: -4px;
    opacity: 0;
  }

  5% {
    opacity: 0.7;
  }

  95% {
    opacity: 0.7;
  }

  100% {
    top: 100vh;
    opacity: 0;
  }
}

@keyframes titleAppear {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
  }

  .hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .btn {
    width: 100%;
  }

  .hud-corner {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .hero-subtitle {
    flex-direction: column;
    gap: 5px;
  }

  .subtitle-separator {
    display: none;
  }

  .hud-corner {
    width: 50px;
    height: 50px;
  }
}

@keyframes scanline {
  0% {
    top: -2px;
  }

  100% {
    top: 100vh;
  }
}

/* Media Queries */
@media (max-width: 1400px) {
  html {
    font-size: 60%;
  }
}

@media (max-width: 1200px) {
  html {
    font-size: 58%;
  }

  .container {
    padding: 0 3rem;
  }

  .hero-content {
    flex-direction: column;
    gap: 5rem;
    text-align: center;
  }

  .hero-info {
    max-width: 80rem;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
  }

  .token-visual {
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  html {
    font-size: 56%;
  }

  .nav-links {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-content {
    order: 2;
  }

  .about-visual {
    order: 1;
  }

  .roadmap-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 54%;
  }

  .container {
    padding: 0 2rem;
  }

  .section {
    padding: 8rem 0;
  }

  .hero-title {
    font-size: 6rem;
  }

  .cyber-heading {
    font-size: 4rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 52%;
  }

  .hero-title {
    font-size: 5rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .nav-btns {
    flex-direction: column;
  }

  .social-grid {
    flex-wrap: wrap;
  }
}

/* About Section Styles */
.about-section {
  position: relative;
  padding: 120px 0;
  background-color: var(--darker-bg, #040420);
  overflow: hidden;
  color: var(--text-light, rgba(255, 255, 255, 0.85));
}

/* Circuit Line Background */
.circuit-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.15;
  z-index: 0;
}

.circuit-lines {
  position: absolute;
  width: 100%;
  height: 100%;
}

.circuit-path {
  fill: none;
  stroke: var(--neon-blue, #00f0ff);
  stroke-width: 1;
  stroke-dasharray: 5, 10;
  stroke-linecap: round;
  filter: drop-shadow(0 0 3px rgba(0, 240, 255, 0.7));
  animation: circuitFlow 15s linear infinite;
}

.circuit-node {
  fill: var(--neon-blue, #00f0ff);
  filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.8));
  animation: nodeGlow 3s ease-in-out infinite alternate;
}

@keyframes circuitFlow {
  0% {
    stroke-dashoffset: 1000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes nodeGlow {

  0%,
  100% {
    filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.8));
  }

  50% {
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 1));
  }
}

/* Container */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(3rem, 5vw, 4rem);
  font-weight: 700;
  text-transform: uppercase;
  color: white;
  position: relative;
  display: inline-block;
  margin-bottom: 0;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg,
      transparent,
      var(--neon-blue, #00f0ff),
      transparent);
}

.text-glow {
  color: var(--neon-blue, #00f0ff);
  text-shadow: 0 0 5px rgba(0, 240, 255, 0.8);
  animation: textGlow 4s infinite;
}

@keyframes textGlow {

  0%,
  100% {
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.8);
  }

  33% {
    text-shadow: 0 0 5px rgba(157, 0, 255, 0.8);
  }

  66% {
    text-shadow: 0 0 5px rgba(255, 45, 85, 0.8);
  }
}

/* About Grid Layout */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Column: Text Content */
.about-content {
  position: relative;
}

.about-section-item {
  display: flex;
  margin-bottom: 40px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.about-section-item:nth-child(1) {
  animation-delay: 0.2s;
}

.about-section-item:nth-child(2) {
  animation-delay: 0.4s;
}

.about-section-item:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 20px;
  padding-top: 5px;
}

.indicator-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--neon-blue, #00f0ff);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
  margin-bottom: 10px;
  z-index: 1;
}

.indicator-line {
  width: 2px;
  flex-grow: 1;
  background: linear-gradient(to bottom,
      var(--neon-blue, #00f0ff),
      rgba(0, 240, 255, 0.1));
  position: absolute;
  top: 32px;
  bottom: 0;
  left: 7px;
}

.about-section-item:last-child .indicator-line {
  display: none;
}

.content-block {
  flex: 1;
}

.content-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: white;
  position: relative;
  display: inline-block;
}

.content-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--neon-blue, #00f0ff);
  box-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
}

.content-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-medium, rgba(255, 255, 255, 0.7));
}

/* Right Column: Visual Content */
.about-visual {
  position: relative;
}

.visual-container {
  position: relative;
  width: 100%;
  height: 500px;
  perspective: 1000px;
}

.hologram-effect {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center,
      rgba(0, 240, 255, 0.15) 0%,
      transparent 60%);
  z-index: 0;
  opacity: 0.7;
  filter: blur(20px);
  animation: pulseHologram 4s ease-in-out infinite;
}

@keyframes pulseHologram {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }
}

.smart-grid-visual {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(10deg) rotateY(-15deg);
  transition: all 0.5s ease;
}

.visual-container:hover .smart-grid-visual {
  transform: rotateX(5deg) rotateY(-5deg);
}

/* 3D City Grid Base Elements */
.grid-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  transform-style: preserve-3d;
}

.grid-city {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.building {
  position: absolute;
  background: rgba(20, 20, 50, 0.7);
  border: 1px solid rgba(0, 240, 255, 0.3);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
  transform-style: preserve-3d;
}

.building-1 {
  width: 30px;
  height: 120px;
  bottom: 0;
  left: 20%;
  background: linear-gradient(to top,
      rgba(20, 20, 50, 0.9),
      rgba(20, 20, 50, 0.4));
}

.building-2 {
  width: 40px;
  height: 180px;
  bottom: 0;
  left: 30%;
  background: linear-gradient(to top,
      rgba(20, 20, 50, 0.9),
      rgba(20, 20, 50, 0.4));
}

.building-3 {
  width: 50px;
  height: 220px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(to top,
      rgba(20, 20, 50, 0.9),
      rgba(20, 20, 50, 0.4));
}

.building-4 {
  width: 35px;
  height: 150px;
  bottom: 0;
  left: 65%;
  background: linear-gradient(to top,
      rgba(20, 20, 50, 0.9),
      rgba(20, 20, 50, 0.4));
}

.building-5 {
  width: 45px;
  height: 200px;
  bottom: 0;
  left: 80%;
  background: linear-gradient(to top,
      rgba(20, 20, 50, 0.9),
      rgba(20, 20, 50, 0.4));
}

.building::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom,
      transparent 0%,
      transparent 70%,
      rgba(0, 240, 255, 0.2) 70%,
      rgba(0, 240, 255, 0.2) 72%,
      transparent 72%,
      transparent 80%,
      rgba(0, 240, 255, 0.2) 80%,
      rgba(0, 240, 255, 0.2) 82%,
      transparent 82%,
      transparent 90%,
      rgba(0, 240, 255, 0.2) 90%,
      rgba(0, 240, 255, 0.2) 92%,
      transparent 92%);
}

.highway {
  position: absolute;
  width: 90%;
  height: 10px;
  bottom: 0;
  left: 5%;
  background: rgba(30, 30, 60, 0.7);
  border: 1px solid rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
  transform: translateZ(20px);
}

.highway::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(90deg,
      rgba(0, 240, 255, 0.8) 50%,
      transparent 50%);
  background-size: 20px 2px;
  animation: highwayLines 2s linear infinite;
}

@keyframes highwayLines {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 20px 0;
  }
}

/* Energy Nodes and Flows */
.energy-nodes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.energy-node {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--neon-blue, #00f0ff);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
  animation: pulseNode 2s infinite alternate;
  transform-style: preserve-3d;
}

@keyframes pulseNode {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
  }

  50% {
    box-shadow: 0 0 25px rgba(0, 240, 255, 1);
  }
}

.node-1 {
  top: 30%;
  left: 25%;
  transform: translateZ(30px);
  animation-delay: 0s;
}

.node-2 {
  top: 45%;
  left: 60%;
  transform: translateZ(40px);
  animation-delay: 0.7s;
}

.node-3 {
  top: 60%;
  left: 35%;
  transform: translateZ(20px);
  animation-delay: 0.3s;
}

.energy-flow {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(0, 240, 255, 0.3),
      rgba(0, 240, 255, 0.8));
  animation: energyPulse 3s infinite;
  transform-style: preserve-3d;
}

@keyframes energyPulse {

  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }
}

.flow-1 {
  width: 150px;
  top: 35%;
  left: 25%;
  transform: rotate(30deg) translateZ(25px);
  animation-delay: 0.1s;
}

.flow-2 {
  width: 120px;
  top: 52%;
  left: 40%;
  transform: rotate(-20deg) translateZ(30px);
  animation-delay: 0.8s;
}

.flow-3 {
  width: 180px;
  top: 45%;
  left: 55%;
  transform: rotate(10deg) translateZ(35px);
  animation-delay: 0.5s;
}

/* Renewable Energy Elements */
.solar-panels {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.solar-panel {
  position: absolute;
  width: 60px;
  height: 40px;
  background: linear-gradient(135deg,
      rgba(0, 200, 255, 0.2),
      rgba(100, 100, 150, 0.7));
  border: 1px solid rgba(0, 240, 255, 0.4);
  transform: rotateX(60deg);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.panel-1 {
  top: 20%;
  left: 15%;
  transform: rotateX(60deg) translateZ(40px);
}

.panel-2 {
  top: 25%;
  left: 75%;
  transform: rotateX(60deg) translateZ(50px);
}

.wind-turbines {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.wind-turbine {
  position: absolute;
  transform-style: preserve-3d;
}

.turbine-base {
  position: absolute;
  width: 6px;
  height: 80px;
  background: linear-gradient(to top,
      rgba(150, 150, 180, 0.9),
      rgba(200, 200, 230, 0.7));
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.turbine-head {
  position: absolute;
  width: 12px;
  height: 12px;
  background: rgba(200, 200, 230, 0.9);
  border-radius: 50% 50% 0 0;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
}

.turbine-blades {
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: 86px;
  left: 50%;
  transform: translateX(-50%);
  background-image: linear-gradient(90deg,
      transparent 48%,
      white 48%,
      white 52%,
      transparent 52%),
    linear-gradient(180deg,
      transparent 48%,
      white 48%,
      white 52%,
      transparent 52%),
    linear-gradient(45deg,
      transparent 48%,
      white 48%,
      white 52%,
      transparent 52%),
    linear-gradient(135deg,
      transparent 48%,
      white 48%,
      white 52%,
      transparent 52%);
  border-radius: 50%;
  animation: rotateTurbine 5s linear infinite;
}

@keyframes rotateTurbine {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }

  100% {
    transform: translateX(-50%) rotate(360deg);
  }
}

.turbine-1 {
  bottom: 0;
  left: 10%;
  transform: translateZ(60px) scale(0.9);
}

.turbine-2 {
  bottom: 0;
  left: 85%;
  transform: translateZ(70px) scale(0.8);
}

/* Blockchain Elements */
.blockchain-nodes {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.blockchain-node {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(157, 0, 255, 0.7);
  border: 2px solid rgba(157, 0, 255, 0.9);
  box-shadow: 0 0 15px rgba(157, 0, 255, 0.6);
  transform-style: preserve-3d;
}

.node-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(157, 0, 255, 0.3);
  animation: nodePulse 2s infinite;
}

@keyframes nodePulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.b-node-1 {
  top: 70%;
  left: 20%;
  transform: translateZ(80px);
}

.b-node-2 {
  top: 75%;
  left: 40%;
  transform: translateZ(90px);
}

.b-node-3 {
  top: 72%;
  left: 60%;
  transform: translateZ(85px);
}

.b-node-4 {
  top: 78%;
  left: 80%;
  transform: translateZ(95px);
}

.blockchain-connection {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(157, 0, 255, 0.3),
      rgba(157, 0, 255, 0.8),
      rgba(157, 0, 255, 0.3));
  animation: dataFlow 2s infinite;
}

@keyframes dataFlow {
  0% {
    background-position: -100px 0;
  }

  100% {
    background-position: 100px 0;
  }
}

/* Data Visualization */
.data-streams {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.data-stream {
  position: absolute;
  border-left: 2px dashed rgba(0, 240, 255, 0.5);
  transform-style: preserve-3d;
  animation: streamFlow 3s infinite linear;
}

@keyframes streamFlow {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 0 20px;
  }
}

.stream-1 {
  height: 120px;
  top: 40%;
  left: 30%;
  transform: rotate(80deg) translateZ(100px);
}

.stream-2 {
  height: 150px;
  top: 45%;
  left: 50%;
  transform: rotate(100deg) translateZ(110px);
}

.stream-3 {
  height: 130px;
  top: 50%;
  left: 70%;
  transform: rotate(85deg) translateZ(105px);
}

/* Data Points */
.data-points {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.data-point {
  position: absolute;
  padding: 8px 12px;
  background: rgba(0, 10, 30, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 5px;
  color: white;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  transform-style: preserve-3d;
  animation: pointPulse 4s infinite alternate;
}

@keyframes pointPulse {

  0%,
  100% {
    border-color: rgba(0, 240, 255, 0.3);
  }

  50% {
    border-color: rgba(0, 240, 255, 0.7);
  }
}

.data-point::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background: rgba(0, 240, 255, 0.5);
  top: 50%;
}

.point-1 {
  top: 20%;
  right: 10%;
  transform: translateZ(120px);
}

.point-1::before {
  right: 100%;
  transform: rotate(-30deg);
}

.point-2 {
  top: 45%;
  left: 5%;
  transform: translateZ(130px);
}

.point-2::before {
  left: 100%;
  transform: rotate(20deg);
}

.point-3 {
  bottom: 30%;
  right: 15%;
  transform: translateZ(125px);
}

.point-3::before {
  right: 100%;
  transform: rotate(-15deg);
}

.point-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--neon-blue, #00f0ff);
  box-shadow: 0 0 5px var(--neon-blue, #00f0ff);
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
}

.point-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
}

.point-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--neon-blue, #00f0ff);
}

/* Platform Base */
.platform-base {
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(0, 240, 255, 0.5),
      rgba(0, 240, 255, 0.1));
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
  filter: blur(5px);
}

/* HUD Frame Elements */
.hud-frame {
  position: absolute;
  width: 20%;
  height: 20%;
  border-style: solid;
  border-width: 0;
  border-color: var(--neon-blue, #00f0ff);
  opacity: 0.6;
}

.top-left {
  top: 0;
  left: 0;
  border-top-width: 2px;
  border-left-width: 2px;
  border-top-left-radius: 5px;
}

.top-right {
  top: 0;
  right: 0;
  border-top-width: 2px;
  border-right-width: 2px;
  border-top-right-radius: 5px;
}

.bottom-left {
  bottom: 0;
  left: 0;
  border-bottom-width: 2px;
  border-left-width: 2px;
  border-bottom-left-radius: 5px;
}

.bottom-right {
  bottom: 0;
  right: 0;
  border-bottom-width: 2px;
  border-right-width: 2px;
  border-bottom-right-radius: 5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .about-grid {
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .visual-container {
    height: 400px;
    margin: 0 auto;
    max-width: 600px;
  }

  .about-content {
    order: 2;
  }

  .about-visual {
    order: 1;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
  }

  .content-title {
    font-size: 1.6rem;
  }

  .content-text {
    font-size: 1.5rem;
  }

  .visual-container {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 80px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .visual-container {
    height: 300px;
  }

  .section-indicator {
    padding-right: 15px;
  }

  .indicator-dot {
    width: 12px;
    height: 12px;
  }

  .indicator-line {
    left: 5px;
  }
}

/* Base Styles */
.roadmap-section {
  position: relative;
  padding: 100px 0;
  background-color: #040420;
  overflow: hidden;
}

.roadmap-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 20%,
      rgba(157, 0, 255, 0.1) 0%,
      transparent 40%),
    radial-gradient(circle at 30% 70%,
      rgba(0, 240, 255, 0.1) 0%,
      transparent 40%);
  pointer-events: none;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.cyber-heading {
  font-family: "Orbitron", sans-serif;
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(90deg, #00f0ff, #9d00ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.section-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-family: "Rajdhani", sans-serif;
  max-width: 600px;
  margin: 0 auto;
}

/* Timeline Container */
.timeline-container {
  position: relative;
  padding: 20px 0;
}

/* Main Timeline Line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #00f0ff, #9d00ff);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
  z-index: 1;
}

/* Timeline Item */
.timeline-item {
  position: relative;
  margin-bottom: 70px;
  z-index: 2;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Timeline Dot */
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 25px;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background-color: #00f0ff;
  border-radius: 50%;
  box-shadow: 0 0 15px #00f0ff;
  z-index: 3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(0, 240, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
  }
}

/* Timeline Box */
.timeline-box {
  position: relative;
  width: 45%;
  padding: 25px;
  background: rgba(6, 6, 54, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-left: auto;
  overflow: hidden;
}

/* Alternate timeline boxes left and right */
.timeline-item:nth-child(even) .timeline-box {
  margin-left: 0;
  margin-right: auto;
}

/* Timeline Date */
.timeline-date {
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #00f0ff;
  margin-bottom: 10px;
  text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
}

/* Timeline Title */
.timeline-title {
  font-family: "Orbitron", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

/* Timeline Content */
.timeline-content {
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* Glow Effect */
.glow-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
      transparent,
      #00f0ff,
      #9d00ff,
      #00f0ff,
      transparent);
  background-size: 200% 100%;
  animation: glow 3s linear infinite;
}

@keyframes glow {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

/* CTA Button */
.roadmap-cta {
  text-align: center;
  margin-top: 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 30px;
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-neon {
  background: rgba(0, 240, 255, 0.1);
  border: 2px solid #00f0ff;
  color: #00f0ff;
  text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-neon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(0, 240, 255, 0.3),
      transparent);
  transition: all 0.6s ease;
}

.btn-neon:hover {
  color: white;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
  transform: translateY(-3px);
}

.btn-neon:hover::before {
  left: 100%;
}

.btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .cyber-heading {
    font-size: 36px;
  }

  .timeline-line {
    left: 30px;
  }

  .timeline-dot {
    left: 30px;
  }

  .timeline-box,
  .timeline-item:nth-child(even) .timeline-box {
    width: calc(100% - 60px);
    margin-left: 60px;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .cyber-heading {
    font-size: 30px;
  }

  .section-description {
    font-size: 16px;
  }

  .timeline-date {
    font-size: 14px;
  }

  .timeline-title {
    font-size: 18px;
  }

  .timeline-content {
    font-size: 14px;
  }
}

.roadmap-section {
  position: relative;
  padding: 120px 0;
  background-color: var(--darker-bg, #040420);
  overflow: hidden;
  z-index: 2;
}

.roadmap-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 20%,
      rgba(157, 0, 255, 0.1) 0%,
      transparent 40%),
    radial-gradient(circle at 30% 70%,
      rgba(0, 240, 255, 0.1) 0%,
      transparent 40%);
  z-index: -1;
}

/* Container styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Section header styles */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.cyber-heading {
  position: relative;
  font-family: "Orbitron", sans-serif;
  font-weight: 800;
  font-size: 48px;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(270deg,
      #00f0ff,
      #9d00ff,
      #ff2d55,
      #9d00ff,
      #00f0ff);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: backgroundPan 15s linear infinite;
  padding-bottom: 15px;
  margin-bottom: 20px;
  display: inline-block;
}

.cyber-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #00f0ff, #9d00ff);
  border-radius: 2px;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
}

/* Circuit background */
.circuit-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 100%;
  max-width: 1400px;
  z-index: 0;
  pointer-events: none;
}

.circuit-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 100px;
  opacity: 0.4;
}

.main-line {
  stroke: #00f0ff;
  stroke-width: 2;
  stroke-dasharray: 10, 15;
  animation: dashFlow 30s linear infinite;
  opacity: 0.7;
}

.branch-line {
  stroke: #00f0ff;
  stroke-width: 2;
  stroke-dasharray: 5, 8;
  animation: dashFlow 20s linear infinite;
  opacity: 0.5;
}

.circuit-node {
  fill: #00f0ff;
  filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.8));
  animation: nodeGlow 3s ease-in-out infinite alternate;
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -1000;
  }
}

@keyframes nodeGlow {

  0%,
  100% {
    fill: #00f0ff;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.8));
  }

  50% {
    fill: #9d00ff;
    filter: drop-shadow(0 0 12px rgba(157, 0, 255, 0.8));
  }
}

/* Timeline styles */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #00f0ff, #9d00ff);
  border-radius: 2px;
  z-index: 1;
}

.timeline-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-milestone {
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 2;
}

.milestone-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #00f0ff;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
  z-index: 3;
  animation: pulseGlow 3s infinite alternate;
}

.milestone-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 2px solid #00f0ff;
  border-radius: 50%;
  opacity: 0.5;
  animation: expandCircle 3s infinite;
}

.milestone-connector {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 2px;
  background: #00f0ff;
  opacity: 0.7;
  z-index: 2;
}

.timeline-content {
  position: relative;
  width: 380px;
  text-align: left;
  transform: translateX(60px);
}

.timeline-date {
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #00f0ff;
  margin-bottom: 10px;
  text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
}

.timeline-box {
  position: relative;
  padding: 25px;
  background: rgba(10, 10, 24, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  z-index: 1;
  transform: translateY(30px);
  opacity: 0;
  animation: fadeUp 0.6s ease-out forwards;
}

.timeline-item:nth-child(1) .timeline-box {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(2) .timeline-box {
  animation-delay: 0.4s;
}

.timeline-item:nth-child(3) .timeline-box {
  animation-delay: 0.6s;
}

.timeline-item:nth-child(4) .timeline-box {
  animation-delay: 0.8s;
}

.timeline-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(0, 240, 255, 0.1) 0%,
      transparent 50%,
      rgba(157, 0, 255, 0.1) 100%);
  opacity: 0.5;
  z-index: -1;
}

.timeline-title {
  font-family: "Orbitron", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.timeline-description {
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.glowing-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
      transparent,
      #00f0ff,
      #9d00ff,
      #00f0ff,
      transparent);
  background-size: 200% 100%;
  animation: glowingBorder 3s linear infinite;
}

/* CTA Button */
.roadmap-cta {
  text-align: center;
  margin-top: 60px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
  border-radius: 4px;
}

.btn i {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(5px);
}

.btn-neon {
  background: rgba(0, 240, 255, 0.1);
  border: 2px solid #00f0ff;
  color: #00f0ff;
  text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.btn-neon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(0, 240, 255, 0.3),
      transparent);
  transition: all 0.8s ease;
  z-index: -1;
}

.btn-neon:hover {
  color: white;
  border-color: #00ddff;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4),
    inset 0 0 15px rgba(0, 240, 255, 0.4);
  text-shadow: 0 0 10px #00f0ff;
  transform: translateY(-3px);
}

.btn-neon:hover::before {
  left: 100%;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.8);
  }

  50% {
    box-shadow: 0 0 25px rgba(0, 240, 255, 1);
  }
}

@keyframes expandCircle {
  0% {
    width: 30px;
    height: 30px;
    opacity: 0.5;
  }

  100% {
    width: 50px;
    height: 50px;
    opacity: 0;
  }
}

@keyframes glowingBorder {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

@keyframes backgroundPan {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .timeline::before {
    left: 40px;
  }

  .timeline-item {
    justify-content: flex-start;
  }

  .timeline-milestone {
    left: 20px;
  }

  .milestone-connector {
    width: 50px;
    left: 65px;
  }

  .timeline-content {
    transform: translateX(80px);
    width: calc(100% - 100px);
  }
}

@media (max-width: 600px) {
  .roadmap-section {
    padding: 80px 0;
  }

  .cyber-heading {
    font-size: 36px;
  }

  .section-description {
    font-size: 16px;
  }

  .timeline-content {
    width: calc(100% - 80px);
  }

  .timeline-date {
    font-size: 16px;
  }

  .timeline-title {
    font-size: 18px;
  }

  .timeline-description {
    font-size: 16px;
  }

  .milestone-dot {
    width: 16px;
    height: 16px;
  }

  .milestone-dot::before {
    width: 24px;
    height: 24px;
  }
}

/* Features Section Styles */
.features-section {
  position: relative;
  padding: 120px 0;
  background-color: var(--darker-bg, #040420);
  overflow: hidden;
  z-index: 2;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Background Elements */
.tech-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 15% 15%,
      rgba(0, 240, 255, 0.2) 0%,
      transparent 5%),
    radial-gradient(circle at 85% 85%,
      rgba(157, 0, 255, 0.2) 0%,
      transparent 5%),
    radial-gradient(circle at 85% 15%,
      rgba(255, 45, 85, 0.2) 0%,
      transparent 5%),
    radial-gradient(circle at 50% 50%,
      rgba(0, 240, 255, 0.1) 0%,
      transparent 5%),
    radial-gradient(circle at 15% 85%,
      rgba(12, 255, 12, 0.1) 0%,
      transparent 5%);
  background-size: 150px 150px;
  opacity: 0.5;
  z-index: 0;
  filter: blur(1px);
  animation: particleFloat 25s linear infinite;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(0, 240, 255, 0.05) 1px,
      transparent 1px),
    linear-gradient(0deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
}

.energy-glow {
  position: absolute;
  width: 30%;
  height: 50%;
  opacity: 0.15;
  filter: blur(70px);
  z-index: 0;
}

.energy-glow.left {
  top: 20%;
  left: -10%;
  background: radial-gradient(circle,
      rgba(0, 240, 255, 0.6) 0%,
      transparent 70%);
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.energy-glow.right {
  bottom: 10%;
  right: -10%;
  background: radial-gradient(circle,
      rgba(157, 0, 255, 0.6) 0%,
      transparent 70%);
  animation: pulseGlow 8s ease-in-out 2s infinite alternate;
}

/* Circuit Container */
.circuit-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.3;
  pointer-events: none;
}

.circuit-paths {
  width: 100%;
  height: 100%;
}

.circuit-path {
  fill: none;
  stroke: #00f0ff;
  stroke-width: 2;
  stroke-dasharray: 5, 8;
  animation: dashFlow 20s linear infinite;
}

.circuit-node {
  fill: #00f0ff;
  filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.8));
  animation: nodeGlow 3s ease-in-out infinite alternate;
}

/* Section Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title-container {
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #00f0ff;
  text-transform: uppercase;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 15px;
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: white;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  margin: 0;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #00f0ff, #9d00ff);
  border-radius: 3px;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 30px;
  margin-bottom: 60px;
}

/* Feature Card */
.feature-card {
  position: relative;
  background: rgba(10, 10, 24, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 240, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
  transform: translateY(40px);
  opacity: 0;
  animation: featureCardAppear 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
  animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
  animation-delay: 0.6s;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 240, 255, 0.2);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(0, 240, 255, 0.05) 0%,
      transparent 50%,
      rgba(157, 0, 255, 0.05) 100%);
  opacity: 0.3;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.feature-card:hover::before {
  opacity: 0.5;
}

/* Feature Icon Container */
.feature-icon-container {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
}

.feature-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 18px;
  transform: rotate(45deg);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-bg {
  background: rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.4);
  transform: rotate(45deg) scale(1.1);
}

.feature-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  color: #00f0ff;
  z-index: 1;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  color: #ffffff;
  text-shadow: 0 0 15px rgba(0, 240, 255, 1);
  transform: translate(-50%, -50%) scale(1.2);
}

/* Feature Content */
.feature-title {
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
  min-height: 45px;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: #00f0ff;
}

.feature-description {
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
  color: rgba(255, 255, 255, 0.9);
}

/* Feature Highlight Line */
.feature-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00f0ff, #9d00ff);
  transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.feature-card:hover .feature-highlight {
  width: 100%;
}

/* Card Glint Effect */
.card-glint {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 0%,
      rgba(255, 255, 255, 0) 45%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(255, 255, 255, 0) 55%,
      transparent 100%);
  transform: rotate(25deg);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
}

.feature-card:hover .card-glint {
  animation: glint 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

/* CTA Button */
.features-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-feature {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 40px;
  font-family: "Orbitron", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #00f0ff;
  background: rgba(0, 240, 255, 0.05);
  border: 1px solid #00f0ff;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.1);
  text-decoration: none;
}

.btn-feature:hover {
  color: #ffffff;
  border-color: #00f0ff;
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
  transform: translateY(-3px);
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 10px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  position: relative;
  z-index: 1;
}

.btn-feature:hover .btn-icon {
  transform: translateX(5px);
}

.btn-hover-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(0, 240, 255, 0.2) 50%,
      transparent 100%);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 0;
}

.btn-feature:hover .btn-hover-effect {
  left: 100%;
}

/* Animations */
@keyframes featureCardAppear {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glint {
  0% {
    opacity: 0;
    left: -50%;
  }

  10% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    left: 100%;
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    opacity: 0.15;
    filter: blur(70px);
  }

  50% {
    opacity: 0.25;
    filter: blur(60px);
  }
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -100;
  }
}

@keyframes nodeGlow {

  0%,
  100% {
    fill: #00f0ff;
    filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.8));
  }

  50% {
    fill: #9d00ff;
    filter: drop-shadow(0 0 8px rgba(157, 0, 255, 0.8));
  }
}

@keyframes particleFloat {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 100px 100px, -100px 100px, 100px -100px, -100px -100px,
      50px 50px;
  }
}

/* Responsive Styles */
@media screen and (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .features-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 16px;
  }

  .section-description {
    font-size: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-title {
    font-size: 16px;
    min-height: auto;
  }

  .feature-description {
    font-size: 14px;
  }

  .feature-icon-container {
    width: 60px;
    height: 60px;
  }

  .feature-icon {
    font-size: 24px;
  }
}

@media screen and (max-width: 480px) {
  .features-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .feature-card {
    padding: 20px;
  }

  .btn-feature {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* Community Section */
.community-section {
  position: relative;
  padding: 120px 0;
  background-color: var(--darker-bg, #040420);
  overflow: hidden;
  text-align: center;
}

/* Background elements */
.energy-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right,
      rgba(0, 240, 255, 0.05) 1px,
      transparent 1px),
    linear-gradient(to bottom, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  transform: perspective(500px) rotateX(60deg) scale(3);
  transform-origin: center center;
  opacity: 0.3;
  pointer-events: none;
}

.glow-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.orb-1 {
  top: 20%;
  left: 15%;
  width: 300px;
  height: 300px;
  background-color: rgba(0, 240, 255, 0.15);
  animation: float 15s ease-in-out infinite;
}

.orb-2 {
  bottom: 25%;
  right: 15%;
  width: 250px;
  height: 250px;
  background-color: rgba(157, 0, 255, 0.15);
  animation: float 18s ease-in-out infinite reverse;
}

.orb-3 {
  top: 60%;
  left: 30%;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 45, 85, 0.1);
  animation: float 12s ease-in-out infinite 1s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.1);
  }
}

/* Corner elements */
.corner-element {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px solid transparent;
  opacity: 0.6;
  z-index: 1;
}

.top-left {
  top: 0;
  left: 0;
  border-top-color: #00f0ff;
  border-left-color: #00f0ff;
  border-top-left-radius: 15px;
}

.top-right {
  top: 0;
  right: 0;
  border-top-color: #00f0ff;
  border-right-color: #00f0ff;
  border-top-right-radius: 15px;
}

.bottom-left {
  bottom: 0;
  left: 0;
  border-bottom-color: #00f0ff;
  border-left-color: #00f0ff;
  border-bottom-left-radius: 15px;
}

.bottom-right {
  bottom: 0;
  right: 0;
  border-bottom-color: #00f0ff;
  border-right-color: #00f0ff;
  border-bottom-right-radius: 15px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.community-content {
  max-width: 700px;
  margin: 0 auto;
}

/* Title */
.community-title {
  font-family: "Orbitron", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin-bottom: 40px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
  position: relative;
  display: inline-block;
}

.community-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #00f0ff, #9d00ff);
  border-radius: 3px;
}

/* Tagline */
.community-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.rocket-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 24px;
  color: #00f0ff;
  margin-right: 15px;
  position: relative;
}

.rocket-icon i {
  animation: rocketPulse 2s infinite;
}

@keyframes rocketPulse {

  0%,
  100% {
    transform: scale(1);
    color: #00f0ff;
  }

  50% {
    transform: scale(1.2);
    color: #9d00ff;
  }
}

.community-tagline p {
  font-family: "Rajdhani", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: white;
  margin: 0;
}

/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-10px);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  font-size: 30px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  color: white;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.social-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.twitter::after {
  background: radial-gradient(circle, #00f0ff 0%, transparent 70%);
}

.telegram::after {
  background: radial-gradient(circle, #9d00ff 0%, transparent 70%);
}

.social-link:hover .social-icon::before {
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.social-link:hover .social-icon::after {
  opacity: 0.7;
}

.social-name {
  font-family: "Rajdhani", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Button */
.cta-container {
  margin-top: 20px;
}

.join-cta {
  position: relative;
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(90deg, #00f0ff, #9d00ff);
  border-radius: 30px;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
}

.cta-text {
  position: relative;
  z-index: 3;
  font-family: "Orbitron", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transform: skewX(-20deg) translateX(-100%);
  transition: transform 0.6s ease;
}

.join-cta:hover .cta-glow {
  transform: skewX(-20deg) translateX(100%);
}

.join-cta::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: rgba(4, 4, 32, 0.9);
  border-radius: 28px;
  z-index: 2;
  transition: background 0.3s ease;
}

.join-cta:hover::before {
  background: rgba(8, 8, 64, 0.8);
}

.join-cta::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 33px;
  background: linear-gradient(90deg,
      #00f0ff,
      #9d00ff,
      #ff2d55,
      #9d00ff,
      #00f0ff);
  background-size: 300% 100%;
  filter: blur(8px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: gradientShift 5s linear infinite;
}

.join-cta:hover::after {
  opacity: 1;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .community-section {
    padding: 80px 0;
  }

  .community-title {
    font-size: 36px;
  }

  .community-tagline {
    flex-direction: column;
  }

  .rocket-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .community-tagline p {
    font-size: 20px;
    text-align: center;
  }

  .social-links {
    gap: 30px;
  }

  .social-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .social-links {
    align-items: center;
    gap: 40px;
  }

  .social-link {
    gap: 15px;
  }

  .social-icon {
    margin-bottom: 0;
  }
}

/* Simplified Footer */
.simplified-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: var(--space-xl);
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 300px;
}

.footer-tagline {
  color: var(--text-medium);
  font-size: 1.6rem;
  margin-top: 1rem;
}

.footer-links-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--text-medium);
  font-size: 1.6rem;
  transition: all var(--speed-medium) ease;
}

.footer-links a:hover {
  color: var(--neon-blue);
  text-shadow: var(--blue-glow-sm);
  transform: translateY(-3px);
}

.footer-social {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.social-icon-footer {
  font-size: 1.8rem;
  color: var(--text-medium);
  transition: all var(--speed-medium) ease;
  display: flex;
}

.social-icon-footer:hover {
  color: var(--neon-blue);
  text-shadow: var(--blue-glow-sm);
  transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
  text-align: center;
}

.copyright {
  font-size: 1.5rem;
  color: var(--text-dim);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .simplified-footer {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-social {
    margin-bottom: 14px;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .loading-text {
    font-size: 15px;
    text-align: center;
  }

  .loading-progress {
    margin-left: 10px;
    margin-right: 10px;
  }

  .footer-links-container {
    width: 100%;
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* Simplified Footer */
.simplified-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: var(--space-xl);
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 300px;
}

.footer-tagline {
  color: var(--text-medium);
  font-size: 1.6rem;
  margin-top: 1rem;
}

.footer-links-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--text-medium);
  font-size: 1.6rem;
  transition: all var(--speed-medium) ease;
}

.footer-links a:hover {
  color: var(--neon-blue);
  text-shadow: var(--blue-glow-sm);
  transform: translateY(-3px);
}

.footer-social {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.social-icon-footer {
  font-size: 1.8rem;
  color: var(--text-medium);
  transition: all var(--speed-medium) ease;
  display: flex;
}

.social-icon-footer:hover {
  color: var(--neon-blue);
  text-shadow: var(--blue-glow-sm);
  transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
  text-align: center;
}

.copyright {
  font-size: 1.5rem;
  color: var(--text-dim);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar .btn {
    max-width: 140px;
    font-size: 10px;
    padding: 10px 15px;
  }

  .navbar .nav-btns {
    display: flex;
    flex-direction: row;
    display: none;
  }

  .roadmap-cta .btn {
    font-size: 12px;
  }

  .cta-container .join-cta .cta-text {
    font-size: 14px;
  }

  .simplified-footer {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-links-container {
    width: 100%;
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--neon-blue);
  font-size: 2.4rem;
  cursor: pointer;
  margin-left: auto;
  z-index: 1001;
  transition: all var(--speed-medium) ease;
}

.mobile-menu-toggle:hover {
  color: var(--neon-blue-vivid);
  text-shadow: var(--blue-glow);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .container {
    padding: 0 2rem;
  }

  .nav-link {
    font-size: 1.6rem;
  }

  .nav-links {
    gap: 2.5rem;
  }

  .nav-btn {
    padding: 0.8rem 1.5rem;
    font-size: 1.4rem;
  }
}

@media (max-width: 991px) {

  /* Show mobile menu button */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide desktop nav items by default */
  .nav-links,
  .nav-btns {
    display: none;
  }

  /* Mobile menu when active */
  .navbar.mobile-active .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(1, 1, 13, 0.95);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    align-items: center;
    justify-content: center;
    gap: 3rem;
    z-index: 1000;
    padding: 8rem 2rem 4rem;
    animation: fadeIn 0.3s ease forwards;
    padding-bottom: 30%;
  }

  .navbar.mobile-active .nav-btns {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 10%;
    left: 0;
    width: 100%;
    align-items: center;
    gap: 1.5rem;
    z-index: 1000;
  }

  .navbar.mobile-active .logo {
    position: relative;
    z-index: 1001;
  }

  /* Animated hamburger to X transformation */
  .mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--neon-blue);
    border-radius: 3px;
    box-shadow: 0 0 5px rgba(0, 240, 255, 0.7);
  }

  .navbar.mobile-active .mobile-menu-toggle .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .navbar.mobile-active .mobile-menu-toggle .bar:nth-child(2) {
    opacity: 0;
  }

  .navbar.mobile-active .mobile-menu-toggle .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Make nav links bigger on mobile */
  .navbar.mobile-active .nav-link {
    font-size: 2.4rem;
    padding: 1rem 0;
  }

  .navbar.mobile-active .nav-btn {
    width: 80%;
    max-width: 300px;
    text-align: center;
    padding: 1.2rem;
    font-size: 1.8rem;
  }

  /* Prevent body scrolling when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .logo {
    font-size: 2.4rem;
  }

  .logo img,
  .logo i {
    font-size: 2.8rem;
    margin-right: 0.8rem;
  }

  .navbar {
    padding: 1.5rem 0;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 2rem;
  }

  #roadmap .timeline-container .timeline-content {
    width: 100%;
    transform: none;
  }

  .hero-cta .btn {
    font-size: 15px;
  }

  .loading-logo {
    width: 150px;
    height: 150px;
    padding-bottom: 10px;
  }

  .logo img,
  .logo i {
    font-size: 2.4rem;
  }

  .navbar.mobile-active .nav-link {
    font-size: 2rem;
  }
}

/* Animation for mobile menu */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* CHAT BUTTON */
.chat_btn__ {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #0c0327;
  color: #00f0ff;
  border: 2px solid #00f0ff;
  border-radius: 50%;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* CHAT BOX */
#chat-box {
  position: fixed;
  width: 400px;
  height: 600px;
  bottom: 100px;
  right: 20px;
  background: #0b031b;
  display: none;
  flex-direction: column;
  z-index: 9998;
  border-radius: 10px;
  overflow: hidden;
}

/* Grid Background */
#chat-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(#1e0e3f 1px, transparent 1px),
    linear-gradient(90deg, #1e0e3f 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
  opacity: 0.2;
}

/* HEADER */
#header {
  height: 60px;
  background: #0c0327;
  padding: 0 15px;
  display: flex;
  align-items: center;
  position: relative;
}

#logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00f0ff, #ff0080);
  border-radius: 6px;
  margin-right: 15px;
}

#title {
  flex-grow: 1;
  color: white;
}

#title div:first-child {
  font-size: 16px;
  font-weight: bold;
}

#status {
  font-size: 12px;
  color: #7b7b9d;
}

#status::first-letter {
  color: #00f0ff;
}

#controls {
  display: flex;
  gap: 15px;
  color: #7b7b9d;
}

#controls span {
  cursor: pointer;
}

/* MESSAGES */
#messages {
  flex-grow: 1;
  padding: 15px;
  overflow-y: auto;
  position: relative;
}

.msg {
  display: flex;
  margin-bottom: 15px;
}

.icon {
  width: 32px;
  height: 32px;
  background: #13063a;
  border-radius: 4px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bubble {
  background: #13063a;
  padding: 10px;
  border-radius: 8px;
  color: white;
  position: relative;
}

.bubble>div:first-child {
  margin-bottom: 15px;
}

.time {
  text-align: right;
  font-size: 10px;
  color: #7b7b9d;
}

/* INPUT AREA */
#input-area {
  height: 70px;
  background: #0c0327;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

#input-area input {
  flex-grow: 1;
  height: 40px;
  background: #13063a;
  border: none;
  border-radius: 5px;
  color: white;
  padding: 0 15px;
}

#input-area input::placeholder {
  color: #7b7b9d;
}

#input-area button {
  width: 40px;
  height: 40px;
  background: #00f0ff;
  border: none;
  border-radius: 5px;
  color: white;
}

/* FOOTER */
#footer {
  height: 24px;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  color: #7b7b9d;
  font-size: 11px;
  position: relative;
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  gap: 4px;
  margin: 0;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background-color: #00f0ff;
  border-radius: 50%;
  animation: dot-pulse 1.5s infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@media (max-width: 768px) {
  #chat-box {
    width: 350px;
    height: 400px;

  }
}

@keyframes dot-pulse {

  0%,
  100% {
    transform: scale(0.7);
    opacity: 0.5;
  }

  50% {
    transform: scale(1);
    opacity: 0.8;
  }
}