:root {
  --primary-color: #00ff41;
  --primary-color-light: #33ff66;
  --secondary-color: #0d260d;
  --bg-dark: #000c00;
  --bg-card: #0a160a;
  --text-light: #e0ffe0;
  --text-gray: #7aff7a;
  --text-dark: #003300;
  --border-color: #005500;
  --shadow-color: rgba(0, 255, 65, 0.2);
  --cyber-glow: 0 0 10px rgba(0, 255, 65, 0.7);
  --matrix-font: "Source Code Pro", monospace;
}

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

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: var(--text-light);
  background-color: var(--bg-dark);
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  line-height: 1.3;
}

h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
  font-family: var(--matrix-font);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 10px var(--primary-color);
  position: relative;
  display: inline-block;
}

h2::before,
h2::after {
  content: "";
  position: absolute;
  height: 2px;
  background-color: var(--primary-color);
  box-shadow: 0 0 5px var(--primary-color);
  top: 50%;
  width: 50px;
}

h2::before {
  right: calc(100% + 20px);
}

h2::after {
  left: calc(100% + 20px);
}

a {
  color: var(--primary-color-light);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color);
}

ul {
  list-style: none;
}

/* Navigation */
header {
  background-color: rgba(0, 0, 0, 0.95);
  background-image: linear-gradient(0deg, rgba(50, 50, 50, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50, 50, 50, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  z-index: 100;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(50, 50, 50, 0.05) 50%, transparent 50%);
  background-size: 100% 4px;
  pointer-events: none;
  z-index: 1;
}

header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  position: relative;
  z-index: 200;
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 300;
}

.bar {
  height: 3px;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-light);
  position: relative;
  z-index: 200;
}

.logo img {
  height: 40px;
  margin-right: 10px;
  position: relative;
  transition: all 0.2s ease;
  filter: drop-shadow(0 0 2px var(--primary-color));
}

.logo img.glitch-svg {
  position: relative;
  animation: subtle-glitch 5s infinite ease-in-out;
}

.logo img.glitch-svg::before,
.logo img.glitch-svg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("images/white2.svg") no-repeat;
  background-size: 40px;
  opacity: 0.8;
  z-index: -1;
}

.logo img.glitch-svg::before {
  transform: translateX(-2px);
  filter: drop-shadow(0 0 2px #0f0) brightness(2);
  animation: svg-glitch-1 3.5s infinite linear alternate-reverse;
}

.logo img.glitch-svg::after {
  transform: translateX(2px);
  filter: drop-shadow(0 0 2px #0f0) brightness(2);
  animation: svg-glitch-2 2.5s infinite linear alternate-reverse;
}

@keyframes svg-glitch-1 {
  0%,
  100% {
    opacity: 0.2;
    transform: translateX(-2px) translateY(1px);
  }
  50% {
    opacity: 0.1;
    transform: translateX(-1px) translateY(-1px);
  }
  25%,
  75% {
    opacity: 0;
  }
}

@keyframes svg-glitch-2 {
  0%,
  100% {
    opacity: 0.2;
    transform: translateX(2px) translateY(-1px);
  }
  50% {
    opacity: 0.1;
    transform: translateX(1px) translateY(1px);
  }
  25%,
  75% {
    opacity: 0;
  }
}

/* SVG Glitch Animation */
@keyframes subtle-glitch {
  0%,
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: drop-shadow(0 0 2px var(--primary-color));
  }
  92% {
    opacity: 1;
    transform: translateX(0);
    filter: drop-shadow(0 0 2px var(--primary-color));
  }
  93% {
    opacity: 0.9;
    transform: translateX(-2px);
    filter: drop-shadow(0 0 8px var(--primary-color)) hue-rotate(10deg);
  }
  94% {
    opacity: 1;
    transform: translateX(2px);
    filter: drop-shadow(0 0 4px var(--primary-color)) brightness(2);
  }
  95% {
    opacity: 0.9;
    transform: translateX(-1px);
    filter: drop-shadow(0 0 2px var(--primary-color));
  }
  96% {
    opacity: 1;
    transform: translateX(0);
    filter: drop-shadow(0 0 5px var(--primary-color)) brightness(1.5);
  }
  97% {
    opacity: 0.9;
    transform: translateX(1px);
    filter: drop-shadow(0 0 3px var(--primary-color));
  }
  98% {
    opacity: 1;
    transform: translateX(-1px);
    filter: drop-shadow(0 0 7px var(--primary-color)) brightness(1.8);
  }
  99% {
    opacity: 0.9;
    transform: translateX(0);
    filter: drop-shadow(0 0 2px var(--primary-color));
  }
}

.nav-links {
  display: flex;
  gap: 2rem;
  position: relative;
  z-index: 200;
  align-items: center;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Make sure GitHub link gets the same hover underline treatment */
.github-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.github-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 0;
  min-height: 80vh;
  position: relative;
  z-index: 10;
  perspective: 1000px;
  perspective-origin: center;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 150;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-family: var(--matrix-font);
  color: var(--primary-color);
  text-shadow: 0 0 10px var(--primary-color);
  position: relative;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
}

/* Keep the CRT-like vignette but remove the green */
.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, 0.15) 70%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
  z-index: 10;
}

/* Remove hero::before which had the noise effect */

@keyframes scan-glitch {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  10%,
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

.hero-logo {
  max-width: 400px;
  border-radius: 5px;
  filter: drop-shadow(0 0 15px rgba(150, 150, 150, 0.7));
  transition: all 0.3s ease;
  position: relative;
}

.hero-logo.glitch-svg {
  animation: hero-logo-pulse 3s infinite ease-in-out;
}

@keyframes hero-logo-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 15px rgba(150, 150, 150, 0.8));
  }
  50% {
    filter: drop-shadow(0 0 20px rgba(100, 100, 100, 0.4));
  }
}

/* TV Glitch effect containers */
.hero-logo.glitch-svg:before,
.hero-logo.glitch-svg:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/white2.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  pointer-events: none;
}

/* Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
  z-index: 200;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: var(--matrix-font);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  overflow: hidden;
  z-index: 10;
}

.btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(rgba(150, 150, 150, 0.1), rgba(50, 50, 50, 0));
  transform: rotate(30deg);
  transition: transform 0.3s ease;
  pointer-events: none;
  z-index: -1;
}

.btn:hover::after {
  transform: rotate(30deg) translateY(-30px);
}

.btn-primary {
  background-color: var(--bg-dark);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 10px rgba(150, 150, 150, 0.3), inset 0 0 10px rgba(100, 100, 100, 0.2);
  text-shadow: 0 0 5px var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(150, 150, 150, 0.6), inset 0 0 15px rgba(100, 100, 100, 0.4);
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: rgba(150, 150, 150, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(150, 150, 150, 0.3);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid rgba(150, 150, 150, 0.3);
  color: #dddddd;
}

.btn-outline:hover {
  background-color: rgba(100, 100, 100, 0.1);
  border-color: rgba(150, 150, 150, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(100, 100, 100, 0.2);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Features Section */
.features {
  padding: 5rem 0;
  background-color: var(--bg-dark);
  background-image: linear-gradient(0deg, rgba(50, 50, 50, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50, 50, 50, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  position: relative;
  overflow: hidden;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 70%);
  z-index: 1;
}

.features h2 {
  text-align: center;
  position: relative;
  z-index: 2;
}

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

.feature-card {
  background-color: var(--bg-card);
  border-radius: 0;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--primary-color);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: feature-scan 4s ease-in-out infinite;
}

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

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px var(--primary-color);
  border-color: var(--primary-color-light);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-family: var(--matrix-font);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-card p {
  color: var(--text-light);
}

/* About Section */
.about {
  padding: 5rem 0;
  background: linear-gradient(135deg, #121212 0%, #151515 100%);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--text-gray);
}

.release-info h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.release-card {
  background-color: var(--bg-card);
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid var(--border-color);
}

.release-card h4 {
  font-size: 1.5rem;
  color: var(--primary-color-light);
}

.release-subtitle {
  font-style: italic;
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.release-card ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.release-card ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.release-card ul li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: -1rem;
}

/* Contact Section */
.contact {
  padding: 5rem 0;
  background-color: #0c0c0c;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact > .container > p {
  text-align: center;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 3rem;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}

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

.contact-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-item a {
  font-size: 1.2rem;
  color: var(--primary-color-light);
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background-color: #090909;
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 30px;
  margin-right: 10px;
}

.footer-links ul {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-gray);
}

.copyright {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
  background-color: rgba(10, 10, 10, 0.9);
  position: relative;
  overflow: hidden;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background-color: rgba(25, 25, 25, 0.8);
  border: 1px solid rgba(100, 100, 100, 0.3);
  padding: 2rem;
  border-radius: 4px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.pricing-card.highlight {
  border: 1px solid rgba(150, 150, 150, 0.5);
  box-shadow: 0 7px 20px rgba(150, 150, 150, 0.2);
  z-index: 1;
  transform: scale(1.05);
}

.recommended-badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background-color: rgba(150, 150, 150, 0.9);
  color: #000;
  font-size: 0.8rem;
  padding: 5px 10px;
  border-radius: 3px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.pricing-description {
  color: #aaaaaa;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  border-bottom: 1px solid rgba(100, 100, 100, 0.3);
  padding-bottom: 1rem;
}

.pricing-features {
  list-style-type: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
}

.pricing-features li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
  color: #dddddd;
}

.pricing-features li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #999999;
  font-weight: bold;
  font-size: 1.2rem;
}

.pricing-action {
  margin-top: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}

.pricing-action .btn {
  width: 100%;
  max-width: 200px;
}

/* GitHub Link */
.github-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding: 0.5rem 0;
}

.github-link:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="%23ffffff"><path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Discord Link */
.discord-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding: 0.5rem 0;
}

.discord-link:before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512' fill='%23ffffff'%3E%3Cpath d='M524.5 69.8a1.5 1.5 0 0 0-.8-.7A485.1 485.1 0 0 0 404.1 32a1.8 1.8 0 0 0-1.9.9 337.5 337.5 0 0 0-14.9 30.6 447.8 447.8 0 0 0-134.4 0 309.5 309.5 0 0 0-15.1-30.6 1.9 1.9 0 0 0-1.9-.9A483.7 483.7 0 0 0 116.1 69.1a1.7 1.7 0 0 0-.8.7C39.1 183.7 18.2 294.7 28.4 404.4a2 2 0 0 0 .8 1.4A487.7 487.7 0 0 0 176 479.9a1.9 1.9 0 0 0 2.1-.7 348.2 348.2 0 0 0 29.9-48.8 1.9 1.9 0 0 0-1-2.6 321.2 321.2 0 0 1-45.9-21.9 1.9 1.9 0 0 1-.2-3.1c3.1-2.3 6.2-4.7 9.1-7.1a1.8 1.8 0 0 1 1.9-.3c96.2 43.9 200.4 43.9 295.5 0a1.8 1.8 0 0 1 1.9.2c3 2.4 6 4.9 9.1 7.2a1.9 1.9 0 0 1-.2 3.1 301.4 301.4 0 0 1-45.9 21.8 1.9 1.9 0 0 0-1 2.6 391.1 391.1 0 0 0 30 48.8 1.9 1.9 0 0 0 2.1.7A486 486 0 0 0 610.7 405.7a1.9 1.9 0 0 0 .8-1.4C623.7 277.6 590.9 167.5 524.5 69.8zM222.5 337.6c-29 0-52.8-26.6-52.8-59.2S193.1 219.1 222.5 219.1c29.7 0 53.3 26.8 52.8 59.2 0 32.6-23.4 59.3-52.8 59.3zm195.4 0c-29 0-52.8-26.6-52.8-59.2s25.5-59.2 52.8-59.2c29.7 0 53.3 26.8 52.8 59.2 0 32.6-23.2 59.3-52.8 59.3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.discord-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.discord-link:hover::after {
  width: 100%;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .cta-buttons {
    justify-content: center;
  }

  .about .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 2rem;
  }

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

@media (max-width: 768px) {
  .hamburger-menu {
    display: flex;
  }

  nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: rgba(0, 10, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: right 0.3s ease;
    border-left: 1px solid var(--primary-color);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
    padding: 2rem;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-links ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

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

/* Cyber Border */
.cyber-border {
  position: relative;
}

.cyber-border::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid var(--primary-color);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
  animation: cyber-border-pulse 4s infinite alternate;
}

@keyframes cyber-border-pulse {
  0% {
    box-shadow: 0 0 5px var(--primary-color);
  }
  100% {
    box-shadow: 0 0 20px var(--primary-color);
  }
}

/* Cyber Glitch Text */
.glitch-text {
  position: relative;
  font-family: var(--matrix-font);
  color: var(--primary-color);
  text-shadow: 0 0 5px var(--primary-color);
}

.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 {
  left: 2px;
  text-shadow: -2px 0 var(--primary-color);
  animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch-text::after {
  left: -2px;
  text-shadow: 2px 0 var(--primary-color);
  animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.glitch-text.active-glitch::before {
  animation: glitch-anim-1 0.2s infinite linear alternate-reverse;
}

.glitch-text.active-glitch::after {
  animation: glitch-anim-2 0.3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
  0%,
  100% {
    clip-path: inset(50% 0 30% 0);
  }
  20% {
    clip-path: inset(33% 0 33% 0);
  }
  40% {
    clip-path: inset(10% 0 60% 0);
  }
  60% {
    clip-path: inset(70% 0 20% 0);
  }
  80% {
    clip-path: inset(40% 0 43% 0);
  }
}

@keyframes glitch-anim-2 {
  0%,
  100% {
    clip-path: inset(40% 0 40% 0);
  }
  20% {
    clip-path: inset(20% 0 20% 0);
  }
  40% {
    clip-path: inset(60% 0 10% 0);
  }
  60% {
    clip-path: inset(10% 0 70% 0);
  }
  80% {
    clip-path: inset(30% 0 30% 0);
  }
}

/* Additional cyber elements */
.cyber-section {
  position: relative;
}

.cyber-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  border-top: 2px solid var(--primary-color);
  border-left: 2px solid var(--primary-color);
}

.cyber-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-bottom: 2px solid var(--primary-color);
  border-right: 2px solid var(--primary-color);
  pointer-events: none;
  z-index: 1;
}

/* Helper classes for TV glitch effect */
.tv-slice {
  position: absolute;
  left: 0;
  width: 100%;
  height: 10%;
  overflow: hidden;
  background-size: 100% 1000%;
  background-repeat: no-repeat;
  z-index: 7;
  pointer-events: none;
}

.tv-glitch-rgb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 8;
  pointer-events: none;
  mix-blend-mode: screen;
}

.tv-glitch-rgb.red {
  left: -3px;
  opacity: 0.8;
  filter: blur(1px) brightness(1.5);
}

.tv-glitch-rgb.green {
  left: 0;
  opacity: 0.8;
  filter: brightness(1.5);
}

.tv-glitch-rgb.blue {
  left: 3px;
  opacity: 0.8;
  filter: blur(1px) brightness(1.5);
}

h2 {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

/* Installation Section */
.installation {
  padding: 4rem 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--secondary-color) 100%);
}

.installation-description {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.terminal-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 255, 65, 0.15);
  border: 1px solid rgba(0, 255, 65, 0.2);
  position: relative;
}

.terminal-header {
  background: linear-gradient(180deg, #2d2d2d 0%, #1f1f1f 100%);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid rgba(0, 255, 65, 0.1);
}

.terminal-buttons {
  display: flex;
  gap: 0.5rem;
}

.terminal-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.terminal-button.close {
  background-color: #ff5f56;
  box-shadow: 0 0 3px rgba(255, 95, 86, 0.5);
}

.terminal-button.minimize {
  background-color: #ffbd2e;
  box-shadow: 0 0 3px rgba(255, 189, 46, 0.5);
}

.terminal-button.maximize {
  background-color: #27c93f;
  box-shadow: 0 0 3px rgba(39, 201, 63, 0.5);
}

.terminal-title {
  font-family: var(--matrix-font);
  font-size: 0.85rem;
  color: #888;
  flex: 1;
  text-align: center;
}

.terminal-body {
  padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  background-color: #0d0d0d;
  font-family: var(--matrix-font);
  font-size: 1.1rem;
  min-height: 80px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.terminal-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.terminal-prompt {
  color: var(--primary-color);
  font-weight: bold;
  text-shadow: 0 0 5px rgba(0, 255, 65, 0.5);
  flex-shrink: 0;
}

.terminal-command {
  color: #fff;
  user-select: all;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
}

.terminal-command::after {
  content: "|";
  color: var(--primary-color);
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}

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

.copy-button {
  background-color: transparent;
  border: 1px solid rgba(0, 255, 65, 0.2);
  color: rgba(0, 255, 65, 0.6);
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: var(--matrix-font);
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
  opacity: 0.7;
}

.copy-button:hover {
  background-color: rgba(0, 255, 65, 0.1);
  border-color: rgba(0, 255, 65, 0.4);
  color: var(--primary-color);
  opacity: 1;
  box-shadow: 0 0 8px rgba(0, 255, 65, 0.2);
}

.copy-button:active {
  transform: scale(0.95);
}

.copy-button svg {
  width: 14px;
  height: 14px;
}
