/* ============================================
   ZERO DEFENCE - MAIN STYLESHEET
   Core layout, typography, animations, and components
   Optimized | Accessible | Production-Ready
   ============================================ */

/* ==================== CSS Variables ==================== */
:root {
  /* Colors */
  --clr-bg: #0a0a0a;
  --clr-bg-alt: #0f0f0f;
  --clr-text: #ffffff;
  --clr-text-muted: #a0a0a0;
  --clr-text-dim: #888888;
  --clr-cyan: #00ffff;
  --clr-blue: #0088ff;
  --clr-green: #00ff88;
  --clr-red: #ef4444;
  --clr-overlay: rgba(0, 0, 0, 0.95);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00ffff, #0088ff, #00ff88);
  --gradient-dark: radial-gradient(circle at 50% 50%, rgba(0, 20, 40, 0.3), rgba(0, 0, 0, 0.95));
  --gradient-loading: linear-gradient(90deg, #00ffff, #0088ff);
  --gradient-danger: linear-gradient(95deg, #dc2626, #f97316);
  
  /* Typography */
  --ff-heading: 'Orbitron', 'Courier New', monospace;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --section-padding: clamp(60px, 10vw, 100px);
  --container-padding: 5%;
  --max-width: 1400px;
  
  /* Z-Index Scale */
  --z-background: 0;
  --z-content: 10;
  --z-nav: 1000;
  --z-cursor: 9999;
  --z-loading: 10000;
  
  /* Transitions */
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

/* ==================== Reset & Base ==================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  background: #0a0a0f;
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Selection Styling */
::selection {
  background: rgba(0, 255, 255, 0.3);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(0, 255, 255, 0.3);
  color: #ffffff;
}

/* Focus Styles for Accessibility */
:focus-visible {
  outline: 2px solid var(--clr-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* ==================== Scrollbar ==================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a12;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--clr-cyan), var(--clr-blue));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #33ffff, #3399ff);
}

/* Firefox Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--clr-cyan) #0a0a12;
}

/* ==================== Typography ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 6vw, 3rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
}

h4 {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
}

p {
  color: var(--clr-text-muted);
  font-size: clamp(0.95rem, 2vw, 1rem);
  line-height: 1.7;
  max-width: 65ch;
}

a {
  color: var(--clr-cyan);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--clr-blue);
}

/* ==================== Gradient Text ==================== */
.gradient-text {
  background: linear-gradient(135deg, #0ff, #3b82f6, #a855f7);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s infinite;
}

.gradient-text-static {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ==================== Container ==================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

.container--narrow {
  max-width: 900px;
}

.container--wide {
  max-width: 1600px;
}

/* ==================== Section Styles ==================== */
section {
  padding: var(--section-padding) var(--container-padding);
  position: relative;
  z-index: var(--z-content);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(40px, 8vw, 60px);
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 15px;
}

.section-header h2::after {
  content: '';
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #0ff, #3b82f6);
  display: block;
  margin: 15px auto 0;
  border-radius: 3px;
}

.section-header p {
  color: #9ca3af;
  margin-top: 15px;
  max-width: 600px;
  margin-inline: auto;
}

/* Section Dividers */
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--gradient-primary);
  margin: 0 auto 30px;
  border-radius: 50px;
}

/* ==================== Background Effects ==================== */
.bg-matrix {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: radial-gradient(ellipse at 20% 30%, #0a0a12, #020208);
}

.gradient-overlay {
  position: fixed;
  inset: 0;
  background: var(--gradient-dark);
  pointer-events: none;
  z-index: -1;
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: -1;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(50px); }
}

/* Scan Beam */
.scan-beam {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #0ff, #3b82f6, #0ff, transparent);
  animation: scan 8s linear infinite;
  pointer-events: none;
  z-index: 999;
  opacity: 0.6;
}

@keyframes scan {
  0% { transform: translateY(-100vh); }
  100% { transform: translateY(100vh); }
}

/* Hero Glow */
.hero-glow {
  position: absolute;
  width: 80vmax;
  height: 80vmax;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.08), transparent 70%);
  animation: floatGlow 12s infinite alternate;
  pointer-events: none;
}

@keyframes floatGlow {
  0% {
    transform: translate(-10%, -10%) scale(1);
    opacity: 0.4;
  }
  100% {
    transform: translate(10%, 10%) scale(1.2);
    opacity: 0.8;
  }
}

/* ==================== Loading Bar ==================== */
.loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-loading);
  z-index: var(--z-loading);
  animation: loadingProgress 1.5s ease-out forwards;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

@keyframes loadingProgress {
  0% { width: 0%; }
  30% { width: 25%; }
  60% { width: 70%; }
  90% { width: 95%; }
  100% { 
    width: 100%; 
    opacity: 0; 
    visibility: hidden; 
  }
}

/* ==================== Navbar ==================== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(8, 8, 16, 0.85);
  backdrop-filter: blur(18px);
  z-index: var(--z-nav);
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 245, 255, 0.3);
  transition: all 0.3s;
}

.navbar.scrolled {
  background: rgba(2, 2, 10, 0.98);
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Orbitron', monospace;
  font-size: 1.55rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo i {
  color: #0ff;
  font-size: 1.9rem;
  filter: drop-shadow(0 0 8px cyan);
  animation: logoPulse 1.5s infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 4px cyan); }
  50% { filter: drop-shadow(0 0 14px cyan); }
}

.nav-menu {
  display: flex;
  gap: 45px;
  list-style: none;
}

.nav-link {
  color: #cbd5e6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: 0.3s;
  position: relative;
  cursor: pointer;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0ff, #3b82f6);
  transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: #0ff;
  text-shadow: 0 0 6px cyan;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 2.5px;
  background: #0ff;
  border-radius: 3px;
  transition: 0.3s;
}

/* ==================== Buttons ==================== */
.btn-primary {
  background: linear-gradient(95deg, #0ff, #2563eb);
  padding: 10px 28px;
  border-radius: 40px;
  font-weight: 800;
  color: #010105;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: 0.3s;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.4);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 255, 255, 0.5);
}

.btn-danger {
  background: var(--gradient-danger);
  box-shadow: 0 0 12px rgba(220, 38, 38, 0.4);
}

.btn-xl {
  padding: 16px 40px;
  font-size: 1rem;
}

/* ==================== Hero Section ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 100px 20px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 245, 255, 0.12);
  border: 1px solid rgba(0, 245, 255, 0.5);
  padding: 10px 28px;
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #0ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  backdrop-filter: blur(8px);
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 245, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(0, 245, 255, 0);
  }
}

.hero-title {
  font-family: 'Orbitron', monospace;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  animation: titleReveal 0.8s ease-out;
}

@keyframes titleReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #a5b4fc;
  margin-bottom: 45px;
  max-width: 700px;
  margin-inline: auto;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== Stats Section ==================== */
.stats-section {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 70px 20px;
  border-top: 1px solid rgba(0, 245, 255, 0.2);
  border-bottom: 1px solid rgba(0, 245, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.03), transparent);
  animation: shimmerMove 8s infinite;
}

@keyframes shimmerMove {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 70px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  transition: all 0.4s ease;
  cursor: default;
}

.stat-item:hover {
  transform: translateY(-8px);
}

.stat-number {
  font-family: 'Orbitron', monospace;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #0ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #94a3b8;
  margin-top: 8px;
}

/* ==================== Quick Access Cards ==================== */
.quick-access {
  padding: 100px 20px;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.access-card {
  background: linear-gradient(145deg, rgba(18, 22, 40, 0.9), rgba(8, 10, 24, 0.95));
  backdrop-filter: blur(8px);
  border-radius: 32px;
  padding: 45px 35px;
  text-align: center;
  border: 1px solid rgba(0, 245, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  animation: cardReveal 0.6s ease-out backwards;
}

.access-card:nth-child(1) { animation-delay: 0.1s; }
.access-card:nth-child(2) { animation-delay: 0.2s; }
.access-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.access-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.access-card:hover::before {
  left: 100%;
}

.access-card:hover {
  transform: translateY(-12px);
  border-color: #0ff;
  box-shadow: 0 25px 40px rgba(0, 245, 255, 0.2);
}

.card-icon {
  font-size: 3.8rem;
  margin-bottom: 20px;
  display: inline-block;
}

.android-card .card-icon i {
  color: #10b981;
  filter: drop-shadow(0 0 8px #10b981);
}
.pc-card .card-icon i {
  color: #3b82f6;
  filter: drop-shadow(0 0 8px #3b82f6);
}
.elite-card .card-icon i {
  color: #ef4444;
  filter: drop-shadow(0 0 8px #ef4444);
}

.access-card h3 {
  font-family: 'Orbitron', monospace;
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #fff;
}

.access-card p {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.card-link {
  color: #0ff;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.access-card:hover .card-link {
  gap: 14px;
  letter-spacing: 1.5px;
}

/* ==================== Footer ==================== */
.footer {
  background: #01010a;
  padding: 70px 20px 30px;
  border-top: 1px solid rgba(0, 245, 255, 0.2);
}

.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.footer-brand .logo {
  justify-content: flex-start;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #9ca3af;
  max-width: 300px;
  line-height: 1.6;
}

.footer-links h4 {
  color: #0ff;
  margin-bottom: 20px;
  font-family: 'Orbitron', monospace;
  font-size: 1rem;
  position: relative;
  display: inline-block;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #0ff;
}

.footer-links a {
  display: block;
  color: #9ca3af;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.3s;
  font-size: 0.9rem;
  cursor: pointer;
}

.footer-links a:hover {
  color: #0ff;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: #5f6c84;
  font-size: 0.8rem;
}

/* ==================== Custom Cursor ==================== */
.cursor-dot {
  width: 6px;
  height: 6px;
  background: #0ff;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: var(--z-cursor);
  transition: 0.03s linear;
  box-shadow: 0 0 12px #0ff;
}

.cursor-ring {
  width: 35px;
  height: 35px;
  border: 1.5px solid rgba(0, 255, 255, 0.6);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: calc(var(--z-cursor) - 1);
  transition: 0.12s ease;
  backdrop-filter: blur(2px);
}

/* ==================== Utility Classes ==================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.gap-sm { gap: 10px; }
.gap-md { gap: 20px; }
.gap-lg { gap: 40px; }

.mt-sm { margin-top: 10px; }
.mt-md { margin-top: 20px; }
.mt-lg { margin-top: 40px; }
.mb-sm { margin-bottom: 10px; }
.mb-md { margin-bottom: 20px; }
.mb-lg { margin-bottom: 40px; }

/* Glow Effect */
.glow-cyan {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3),
              0 0 40px rgba(0, 255, 255, 0.1);
}

/* Glass Morphism */
.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Click Effect Animation */
.click-effect {
  animation: clickPop 0.2s ease;
}

@keyframes clickPop {
  0% { transform: scale(1); }
  50% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

/* Slide In Animation for Notifications */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1200px) {
  .container {
    padding: 0 4%;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 4%;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: 0.3s;
    border-right: 2px solid #0ff;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-xl {
    width: 240px;
    justify-content: center;
  }
  
  .stats-grid {
    gap: 35px;
  }
  
  .access-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .footer-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .footer-brand .logo {
    justify-content: center;
  }
  
  .footer-brand p {
    max-width: 100%;
  }
  
  .footer-links h4::after {
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
  }
  
  ::-webkit-scrollbar {
    width: 4px;
  }
  
  .hide-mobile {
    display: none !important;
  }
}

@media (max-width: 480px) {
  section {
    padding: 40px 3%;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .badge {
    font-size: 0.7rem;
    padding: 8px 18px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .access-card {
    padding: 35px 25px;
  }
  
  .card-icon {
    font-size: 3rem;
  }
  
  .access-card h3 {
    font-size: 1.3rem;
  }
  
  .minimal-grid {
    background-size: 30px 30px;
  }
}

@media (min-width: 769px) {
  .hide-desktop {
    display: none !important;
  }
}

/* ==================== Reduced Motion ==================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .gradient-text,
  .badge,
  .logo i {
    animation: none;
  }
  
  .scan-beam {
    display: none;
  }
}

/* ==================== Print Styles ==================== */
@media print {
  body {
    background: #ffffff;
    color: #000000;
  }
  
  .bg-matrix,
  .gradient-overlay,
  .grid-overlay,
  .scan-beam,
  .loading-bar,
  .cursor-dot,
  .cursor-ring,
  .hero-glow {
    display: none;
  }
  
  .gradient-text {
    color: #000000;
    background: none;
    -webkit-text-fill-color: #000000;
  }
  
  .navbar {
    position: static;
    background: transparent;
    backdrop-filter: none;
  }
  
  .btn-primary {
    background: #ddd;
    color: #000;
    box-shadow: none;
  }
}