@keyframes glitch {
  0%,
  100% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
}

@keyframes scanline {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes neon-pulse {
  0%,
  100% {
    text-shadow: 0 0 4px #00f0ff, 0 0 8px #00f0ff, 0 0 12px #00f0ff;
  }
  50% {
    text-shadow: 0 0 8px #00f0ff, 0 0 16px #00f0ff, 0 0 24px #00f0ff;
  }
}

@keyframes border-glow {
  0%,
  100% {
    box-shadow: 0 0 5px #00f0ff, 0 0 10px #00f0ff, inset 0 0 5px rgba(0, 240, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff, inset 0 0 10px rgba(0, 240, 255, 0.3);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Rajdhani", "Orbitron", "Share Tech Mono", monospace;
  background: #000000;
  color: #00f0ff;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 240, 255, 0.03) 0px,
    transparent 1px,
    transparent 2px,
    rgba(0, 240, 255, 0.03) 3px
  );
  pointer-events: none;
  z-index: 1;
}

body::after {
  content: "";
  position: fixed;
  top: -100%;
  left: 0;
  right: 0;
  height: 200%;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 240, 255, 0.05) 50%, transparent 100%);
  animation: scanline 4s linear infinite;
  pointer-events: none;
  z-index: 2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  position: relative;
  z-index: 3;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
  border: 2px solid #00f0ff;
  border-radius: 0;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5), inset 0 0 20px rgba(0, 240, 255, 0.1);
  clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  margin-bottom: 60px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00f0ff, #ff00ff, #ffcc00, #00f0ff);
  opacity: 0.3;
  z-index: -1;
  animation: border-glow 2s ease-in-out infinite;
  clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.logo-large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.logo-large i {
  font-size: 80px;
  color: #00f0ff;
  filter: drop-shadow(0 0 20px #00f0ff);
  animation: float 3s ease-in-out infinite;
}

.logo-large h1 {
  font-size: 56px;
  font-weight: 700;
  color: #00f0ff;
  letter-spacing: 4px;
  text-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 30px #00f0ff, 4px 4px 0 rgba(255, 0, 255, 0.3);
  animation: neon-pulse 2s ease-in-out infinite;
  font-family: "Orbitron", sans-serif;
}

.tagline {
  font-size: 24px;
  color: #ff00ff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #ff00ff;
}

.description {
  font-size: 18px;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #00f0ff;
  font-family: "Share Tech Mono", monospace;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border: 2px solid;
  border-radius: 0;
  font-size: 16px;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.3s, height 0.3s;
  z-index: 0;
}

button:hover::before {
  width: 100%;
  height: 100%;
}

button span {
  position: relative;
  z-index: 1;
}

button i {
  font-size: 20px;
  filter: drop-shadow(0 0 5px currentColor);
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: rgba(0, 240, 255, 0.1);
  color: #00f0ff;
  border-color: #00f0ff;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3), inset 0 0 10px rgba(0, 240, 255, 0.1);
}

.btn-primary:hover {
  background: rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.6), 0 0 30px rgba(0, 240, 255, 0.4);
  text-shadow: 0 0 10px #00f0ff;
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(255, 0, 255, 0.1);
  color: #ff00ff;
  border-color: #ff00ff;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.3), inset 0 0 10px rgba(255, 0, 255, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 0, 255, 0.2);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.6), 0 0 30px rgba(255, 0, 255, 0.4);
  text-shadow: 0 0 10px #ff00ff;
  transform: translateY(-3px);
}

.btn-large {
  padding: 20px 48px;
  font-size: 18px;
}

button:active {
  transform: translateY(0);
  animation: glitch 0.2s;
}

/* Section Titles */
.section-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #00f0ff;
  letter-spacing: 3px;
  text-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff;
  font-family: "Orbitron", sans-serif;
  position: relative;
}

.title-bracket {
  color: #ff00ff;
  font-size: 48px;
  text-shadow: 0 0 10px #ff00ff;
}

/* Features Section */
.features {
  margin-bottom: 80px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(0, 240, 255, 0.05);
  border: 2px solid #00f0ff;
  border-left: 4px solid #00f0ff;
  padding: 30px;
  clip-path: polygon(0 15px, 15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2), inset 0 0 15px rgba(0, 240, 255, 0.05);
  transition: all 0.3s ease-in-out;
  position: relative;
}

.feature-card::before {
  content: ">";
  position: absolute;
  top: 15px;
  left: 15px;
  color: #ff00ff;
  font-size: 20px;
  font-weight: bold;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5), inset 0 0 20px rgba(0, 240, 255, 0.1);
  border-color: #ff00ff;
}

.feature-icon {
  font-size: 48px;
  color: #00f0ff;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px #00f0ff);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #00f0ff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 240, 255, 0.8);
  font-family: "Share Tech Mono", monospace;
}

/* How It Works */
.how-it-works {
  margin-bottom: 80px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(0, 240, 255, 0.05);
  border: 2px solid #00f0ff;
  padding: 30px;
  clip-path: polygon(0 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
  transition: all 0.3s ease-in-out;
}

.step:hover {
  transform: translateX(10px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.step-number {
  font-size: 48px;
  font-weight: 700;
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
  font-family: "Orbitron", sans-serif;
  min-width: 80px;
}

.step-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #00f0ff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.step-content p {
  font-size: 16px;
  color: rgba(0, 240, 255, 0.8);
  font-family: "Share Tech Mono", monospace;
}

/* Audience Section */
.audience {
  margin-bottom: 80px;
}

.audience-card {
  background: rgba(0, 255, 65, 0.05);
  border: 2px solid #00ff41;
  border-left: 4px solid #00ff41;
  padding: 40px;
  text-align: center;
  clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.3), inset 0 0 20px rgba(0, 255, 65, 0.05);
  max-width: 900px;
  margin: 0 auto;
}

.audience-card i {
  font-size: 64px;
  color: #00ff41;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 15px #00ff41);
  display: block;
}

.audience-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #00ff41;
  font-family: "Share Tech Mono", monospace;
}

/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.stat-item {
  text-align: center;
  background: rgba(255, 204, 0, 0.05);
  border: 2px solid #ffcc00;
  padding: 30px;
  clip-path: polygon(0 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.stat-item:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.6);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #ffcc00;
  text-shadow: 0 0 10px #ffcc00, 0 0 20px #ffcc00;
  font-family: "Orbitron", sans-serif;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 16px;
  color: rgba(255, 204, 0, 0.8);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
  border: 2px solid #00ff41;
  clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.5), inset 0 0 20px rgba(0, 255, 65, 0.1);
  margin-bottom: 60px;
}

.final-cta h2 {
  font-size: 42px;
  color: #00ff41;
  text-shadow: 0 0 10px #00ff41, 0 0 20px #00ff41;
  margin-bottom: 20px;
  font-family: "Orbitron", sans-serif;
}

.final-cta p {
  font-size: 20px;
  color: rgba(0, 255, 65, 0.8);
  margin-bottom: 40px;
  font-family: "Share Tech Mono", monospace;
}

/* Footer */
.footer {
  border-top: 2px solid #00f0ff;
  padding: 40px 0;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 24px;
  font-weight: 700;
  color: #00f0ff;
  text-shadow: 0 0 10px #00f0ff;
}

.footer-logo i {
  font-size: 32px;
  filter: drop-shadow(0 0 10px #00f0ff);
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #00f0ff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff00ff;
  transition: width 0.3s ease-in-out;
}

.footer-links a:hover {
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-copyright {
  color: rgba(0, 240, 255, 0.6);
  font-size: 14px;
  font-family: "Share Tech Mono", monospace;
}

/* Responsive Design */
@media (max-width: 480px) {
  .container {
    padding: 20px 15px;
  }

  .hero {
    padding: 40px 15px;
    margin-bottom: 40px;
  }

  .logo-large {
    flex-direction: column;
    gap: 10px;
  }

  .logo-large h1 {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .logo-large i {
    font-size: 40px;
  }

  .tagline {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .description {
    font-size: 14px;
    line-height: 1.6;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .title-bracket {
    font-size: 28px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon {
    font-size: 36px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .step {
    padding: 20px;
    gap: 15px;
  }

  .step-number {
    font-size: 32px;
    min-width: 60px;
  }

  .step-content h3 {
    font-size: 18px;
  }

  .step-content p {
    font-size: 14px;
  }

  .audience-card {
    padding: 25px;
  }

  .audience-card i {
    font-size: 48px;
  }

  .audience-card p {
    font-size: 14px;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-item {
    padding: 20px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 14px;
  }

  .final-cta {
    padding: 40px 15px;
  }

  .final-cta h2 {
    font-size: 28px;
  }

  .final-cta p {
    font-size: 16px;
  }

  button {
    padding: 14px 24px;
    font-size: 14px;
    letter-spacing: 1px;
  }

  .btn-large {
    padding: 16px 32px;
    font-size: 16px;
  }

  button i {
    font-size: 18px;
  }

  .footer-links {
    gap: 15px;
  }

  .footer-links a {
    font-size: 12px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .container {
    padding: 30px 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .logo-large h1 {
    font-size: 36px;
    letter-spacing: 3px;
  }

  .logo-large i {
    font-size: 50px;
  }

  .tagline {
    font-size: 18px;
  }

  .description {
    font-size: 16px;
  }

  .section-title {
    font-size: 32px;
  }

  .title-bracket {
    font-size: 36px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .step {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  button {
    width: 100%;
  }

  .final-cta {
    padding: 60px 20px;
  }

  .final-cta h2 {
    font-size: 32px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    max-width: 960px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1025px) {
  .container {
    max-width: 1200px;
  }

  .hero {
    padding: 100px 40px;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .final-cta {
    padding: 100px 40px;
  }
}

/* Improved touch targets for mobile */
@media (hover: none) and (pointer: coarse) {
  button {
    min-height: 48px;
    padding: 16px 28px;
  }

  .footer-links a {
    padding: 8px 0;
    display: inline-block;
  }
}

/* Better landscape mobile handling */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    padding: 40px 20px;
  }

  .logo-large h1 {
    font-size: 32px;
  }

  .logo-large i {
    font-size: 45px;
  }

  .final-cta {
    padding: 50px 20px;
  }
}

/* Navigation Bar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-bottom: 40px;
  border-bottom: 2px solid #00f0ff;
  box-shadow: 0 2px 15px rgba(0, 240, 255, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: #00f0ff;
  text-shadow: 0 0 10px #00f0ff;
  font-family: "Orbitron", sans-serif;
}

.nav-logo i {
  font-size: 32px;
  filter: drop-shadow(0 0 10px #00f0ff);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  color: #00f0ff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff00ff;
  transition: width 0.3s ease-in-out;
}

.nav-links a:hover {
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-download {
  background: rgba(0, 240, 255, 0.1);
  border: 2px solid #00f0ff;
  padding: 8px 20px !important;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.nav-download:hover {
  background: rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
}

/* Link Button Styles for CTA Buttons */
a.btn-primary,
a.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border: 2px solid;
  border-radius: 0;
  font-size: 16px;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

a.btn-primary::before,
a.btn-secondary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.3s, height 0.3s;
  z-index: 0;
}

a.btn-primary:hover::before,
a.btn-secondary:hover::before {
  width: 100%;
  height: 100%;
}

a.btn-primary span,
a.btn-secondary span {
  position: relative;
  z-index: 1;
}

a.btn-primary i,
a.btn-secondary i {
  font-size: 20px;
  filter: drop-shadow(0 0 5px currentColor);
  position: relative;
  z-index: 1;
}

a.btn-primary {
  background: rgba(0, 240, 255, 0.1);
  color: #00f0ff;
  border-color: #00f0ff;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.3), inset 0 0 10px rgba(0, 240, 255, 0.1);
}

a.btn-primary:hover {
  background: rgba(0, 240, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.6), 0 0 30px rgba(0, 240, 255, 0.4);
  text-shadow: 0 0 10px #00f0ff;
  transform: translateY(-3px);
}

a.btn-secondary {
  background: rgba(255, 0, 255, 0.1);
  color: #ff00ff;
  border-color: #ff00ff;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.3), inset 0 0 10px rgba(255, 0, 255, 0.1);
}

a.btn-secondary:hover {
  background: rgba(255, 0, 255, 0.2);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.6), 0 0 30px rgba(255, 0, 255, 0.4);
  text-shadow: 0 0 10px #ff00ff;
  transform: translateY(-3px);
}

a.btn-large {
  padding: 20px 48px;
  font-size: 18px;
}

/* Download Page Specific Styles */
.download-hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #000000 100%);
  border-color: #ff00ff;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5), inset 0 0 20px rgba(255, 0, 255, 0.1);
}

.download-hero::before {
  background: linear-gradient(45deg, #ff00ff, #00f0ff, #ffcc00, #ff00ff);
}

.download-hero .logo-large i {
  color: #ff00ff;
  filter: drop-shadow(0 0 20px #ff00ff);
}

.download-hero .tagline {
  color: #00f0ff;
  text-shadow: 0 0 10px #00f0ff;
}

.download-section {
  margin-bottom: 80px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.download-card {
  background: rgba(0, 240, 255, 0.05);
  border: 2px solid #00f0ff;
  padding: 40px 30px;
  text-align: center;
  clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2), inset 0 0 15px rgba(0, 240, 255, 0.05);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: block;
  position: relative;
}

.download-card::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00f0ff, #ff00ff);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease-in-out;
  clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}

.download-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.6), inset 0 0 20px rgba(0, 240, 255, 0.1);
  border-color: #ff00ff;
}

.download-card:hover::before {
  opacity: 0.3;
}

.download-card-zip {
  background: rgba(255, 204, 0, 0.05);
  border-color: #ffcc00;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.2), inset 0 0 15px rgba(255, 204, 0, 0.05);
}

.download-card-zip:hover {
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.6), inset 0 0 20px rgba(255, 204, 0, 0.1);
}

.download-card-zip::before {
  background: linear-gradient(45deg, #ffcc00, #ff00ff);
}

.download-icon {
  margin-bottom: 20px;
}

.download-icon i {
  font-size: 64px;
  color: #00f0ff;
  filter: drop-shadow(0 0 15px #00f0ff);
  transition: all 0.3s ease-in-out;
}

.download-card:hover .download-icon i {
  color: #ff00ff;
  filter: drop-shadow(0 0 20px #ff00ff);
  transform: scale(1.1);
}

.download-card-zip .download-icon i {
  color: #ffcc00;
  filter: drop-shadow(0 0 15px #ffcc00);
}

.download-card-zip:hover .download-icon i {
  color: #ff00ff;
  filter: drop-shadow(0 0 20px #ff00ff);
}

.download-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #00f0ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Orbitron", sans-serif;
}

.download-card p {
  font-size: 14px;
  color: rgba(0, 240, 255, 0.7);
  margin-bottom: 25px;
  font-family: "Share Tech Mono", monospace;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: rgba(0, 240, 255, 0.1);
  border: 2px solid #00f0ff;
  color: #00f0ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  transition: all 0.3s ease-in-out;
}

.download-card:hover .download-btn {
  background: rgba(255, 0, 255, 0.2);
  border-color: #ff00ff;
  color: #ff00ff;
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.download-btn i {
  font-size: 18px;
}

.instructions {
  margin-bottom: 80px;
}

.instruction-tabs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.instruction-card {
  background: rgba(0, 255, 65, 0.05);
  border: 2px solid #00ff41;
  border-left: 4px solid #00ff41;
  padding: 30px;
  clip-path: polygon(0 15px, 15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.2), inset 0 0 15px rgba(0, 255, 65, 0.05);
}

.instruction-card h3 {
  font-size: 22px;
  color: #00ff41;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.instruction-card h3 i {
  font-size: 28px;
  filter: drop-shadow(0 0 10px #00ff41);
}

.instruction-card ol {
  list-style: none;
  counter-reset: step-counter;
  padding-left: 0;
}

.instruction-card ol li {
  counter-increment: step-counter;
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
  color: rgba(0, 255, 65, 0.8);
  font-family: "Share Tech Mono", monospace;
  line-height: 1.6;
}

.instruction-card ol li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background: rgba(0, 255, 65, 0.1);
  border: 2px solid #00ff41;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #00ff41;
  font-size: 14px;
}

.requirements {
  margin-bottom: 80px;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 240, 255, 0.05);
  border: 2px solid #00f0ff;
  padding: 20px;
  clip-path: polygon(0 10px, 10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.requirement-item i {
  font-size: 32px;
  color: #00ff41;
  filter: drop-shadow(0 0 10px #00ff41);
  flex-shrink: 0;
}

.requirement-item span {
  color: rgba(0, 240, 255, 0.8);
  font-family: "Share Tech Mono", monospace;
  font-size: 14px;
}

/* Mobile Responsive Styles for Navigation and Download Page */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 20px;
    padding: 15px 0;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .download-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .instruction-tabs {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 10px 0;
  }

  .nav-logo {
    font-size: 20px;
  }

  .nav-logo i {
    font-size: 28px;
  }

  .download-card {
    padding: 30px 20px;
  }

  .download-icon i {
    font-size: 48px;
  }

  .download-card h3 {
    font-size: 20px;
  }

  .instruction-card {
    padding: 20px;
  }

  .instruction-card h3 {
    font-size: 18px;
  }

  .instruction-card ol li {
    font-size: 14px;
  }
}

/* Coming Soon Page Styles */
.coming-soon-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.coming-soon-content {
  max-width: 800px;
  text-align: center;
  position: relative;
  z-index: 10;
}

.glitch-wrapper {
  margin-bottom: 40px;
}

.glitch {
  font-size: 64px;
  font-weight: 700;
  color: #00f0ff;
  letter-spacing: 6px;
  text-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff, 0 0 30px #00f0ff, 4px 4px 0 rgba(255, 0, 255, 0.3);
  font-family: "Orbitron", sans-serif;
  position: relative;
  animation: neon-pulse 2s ease-in-out infinite;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 #ff00ff;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch 5s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -2px 0 #00ff41;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch 5s infinite linear alternate-reverse;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: rgba(255, 0, 255, 0.1);
  border: 2px solid #ff00ff;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5), inset 0 0 20px rgba(255, 0, 255, 0.1);
  margin-bottom: 30px;
  animation: border-glow 2s ease-in-out infinite;
}

.coming-soon-badge i {
  font-size: 32px;
  color: #ff00ff;
  filter: drop-shadow(0 0 10px #ff00ff);
  animation: float 3s ease-in-out infinite;
}

.coming-soon-badge span {
  font-size: 24px;
  font-weight: 700;
  color: #ff00ff;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 10px #ff00ff;
}

.coming-soon-text {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(0, 240, 255, 0.8);
  margin-bottom: 50px;
  font-family: "Share Tech Mono", monospace;
}

.coming-soon-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.mini-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mini-feature i {
  font-size: 40px;
  color: #00ff41;
  filter: drop-shadow(0 0 10px #00ff41);
  transition: all 0.3s ease-in-out;
}

.mini-feature:hover i {
  transform: scale(1.2);
  filter: drop-shadow(0 0 20px #00ff41);
}

.mini-feature span {
  font-size: 14px;
  color: rgba(0, 255, 65, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.notify-form {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.notify-input {
  flex: 1;
  min-width: 250px;
  padding: 16px 20px;
  background: rgba(0, 240, 255, 0.05);
  border: 2px solid #00f0ff;
  color: #00f0ff;
  font-size: 16px;
  font-family: "Share Tech Mono", monospace;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2), inset 0 0 10px rgba(0, 240, 255, 0.05);
  transition: all 0.3s ease-in-out;
}

.notify-input::placeholder {
  color: rgba(0, 240, 255, 0.5);
}

.notify-input:focus {
  outline: none;
  border-color: #ff00ff;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5), inset 0 0 15px rgba(255, 0, 255, 0.1);
}

.notify-btn {
  padding: 16px 32px;
  white-space: nowrap;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(0, 240, 255, 0.05);
  border: 2px solid #00f0ff;
  color: #00f0ff;
  font-size: 24px;
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.social-icon:hover {
  background: rgba(255, 0, 255, 0.1);
  border-color: #ff00ff;
  color: #ff00ff;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
  transform: translateY(-5px);
}

.cyber-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(rgba(0, 240, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 1;
}

/* Coming Soon Mobile Responsive */
@media (max-width: 768px) {
  .glitch {
    font-size: 36px;
    letter-spacing: 3px;
  }

  .coming-soon-badge {
    padding: 12px 24px;
  }

  .coming-soon-badge i {
    font-size: 24px;
  }

  .coming-soon-badge span {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .coming-soon-text {
    font-size: 16px;
  }

  .coming-soon-features {
    gap: 25px;
  }

  .mini-feature i {
    font-size: 32px;
  }

  .mini-feature span {
    font-size: 12px;
  }

  .notify-form {
    flex-direction: column;
    gap: 15px;
  }

  .notify-input {
    min-width: 100%;
  }

  .notify-btn {
    width: 100%;
  }

  .social-links {
    gap: 20px;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .coming-soon-container {
    padding: 20px 15px;
  }

  .glitch {
    font-size: 28px;
    letter-spacing: 2px;
  }

  .coming-soon-badge {
    padding: 10px 20px;
  }

  .coming-soon-badge i {
    font-size: 20px;
  }

  .coming-soon-badge span {
    font-size: 16px;
  }

  .coming-soon-text {
    font-size: 14px;
  }

  .coming-soon-features {
    gap: 20px;
  }

  .mini-feature i {
    font-size: 28px;
  }
}
