@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Press+Start+2P&display=swap');

:root {
  /* Color System */
  --bg-darker: #060913;
  --bg-card: #0a0f24;
  --bg-card-hover: #101633;
  --accent-primary: #3b82f6;
  --accent-glow: #60a5fa;
  --accent-dark: #1d4ed8;
  --accent-dim: rgba(59, 130, 246, 0.15);
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #64748b;
  --border-neon: rgba(59, 130, 246, 0.3);
  --border-neon-hover: rgba(96, 165, 250, 0.8);
  
  /* Status Colors */
  --success: #10b981;
  --info: #06b6d4;
  --warning: #f59e0b;
  --accent-purple: #8b5cf6;
  --error: #ef4444;

  /* Font Families */
  --font-logo: 'Press Start 2P', monospace;
  --font-body: 'Outfit', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-darker);
  font-family: var(--font-body);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('Gemini_Generated_Image_8q3e768q3e768q3e.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(8px) brightness(0.38);
  z-index: -2;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(15, 23, 42, 0.5) 0%, rgba(6, 9, 19, 0.85) 90%),
    radial-gradient(circle at 80% 80%, rgba(30, 58, 138, 0.2) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

/* Custom Cursor */
@media (min-width: 769px) {
  body.custom-cursor-active,
  body.custom-cursor-active * {
    cursor: none !important;
  }
}

.custom-cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-glow);
  box-shadow: 0 0 10px var(--accent-glow), 0 0 20px var(--accent-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  display: none;
}

.custom-cursor-trail {
  width: 24px;
  height: 24px;
  border: 1px solid var(--accent-primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(59, 130, 246, 0.2);
  display: none;
}

.custom-cursor-dot.hovered {
  width: 12px;
  height: 12px;
  background-color: var(--text-main);
}

.custom-cursor-trail.hovered {
  width: 36px;
  height: 36px;
  border-color: var(--accent-glow);
  box-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
  background-color: rgba(59, 130, 246, 0.05);
}

/* Navigation Header */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(6, 9, 19, 0.75);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  padding: 1.25rem 2rem;
  transition: border-color var(--transition-fast);
}

header.scrolled {
  border-bottom-color: var(--border-neon);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  text-decoration: none;
  color: var(--text-main);
}

.logo {
  font-family: var(--font-logo);
  font-size: 1.1rem;
  letter-spacing: -1px;
  position: relative;
  user-select: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--accent-glow);
}

/* Navigation Links */
nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color var(--transition-fast), text-shadow var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

nav a:hover,
nav a.active {
  color: var(--accent-glow);
  text-shadow: 0 0 8px rgba(96, 165, 250, 0.6);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-glow);
  box-shadow: 0 0 8px var(--accent-glow);
  transition: width var(--transition-fast);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Page Wrapper / SPA Layout */
main {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
}

.page-section {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
}

.page-section.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 1rem 8rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.glitch-title {
  font-family: var(--font-logo);
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  position: relative;
  letter-spacing: -2px;
  color: var(--text-main);
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  z-index: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--accent-primary);
  background-color: var(--accent-dim);
  color: var(--accent-glow);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.1);
  transition: all var(--transition-fast);
  z-index: 1;
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: var(--text-main);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.btn:hover {
  background-color: var(--accent-glow);
  color: var(--bg-darker);
  box-shadow: 0 0 25px var(--accent-glow);
  border-color: var(--accent-glow);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border-color: rgba(148, 163, 184, 0.3);
  color: var(--text-muted);
  box-shadow: none;
}

.btn-secondary:hover {
  border-color: var(--text-main);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  box-shadow: none;
}

/* Features Grid */
.features-container {
  padding: 4rem 0;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: var(--font-logo);
  font-size: 1.5rem;
  letter-spacing: -1px;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(59, 130, 246, 0.08);
  padding: 2.5rem 2rem;
  border-radius: 6px;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-neon);
  box-shadow: 0 10px 30px rgba(6, 9, 19, 0.8), 0 0 20px rgba(59, 130, 246, 0.05);
  background-color: var(--bg-card-hover);
}

.feature-card:hover::before {
  transform: translateX(100%);
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--accent-glow);
  margin-bottom: 1.5rem;
  background-color: var(--accent-dim);
  border-radius: 6px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
}

/* Products Page */
.products-wrapper {
  padding: 2rem 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

/* Product Card */
.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-neon-hover);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(59, 130, 246, 0.15);
  background-color: var(--bg-card-hover);
}

.product-header {
  padding: 2rem 2rem 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
}

.product-info-left {
  flex: 1;
}

.product-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.5rem;
}

.product-version {
  font-size: 0.8rem;
  font-family: monospace;
  color: var(--text-dark);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.badge-success { background-color: rgba(16, 185, 129, 0.15); color: var(--success); border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-accent { background-color: rgba(139, 92, 246, 0.15); color: var(--accent-purple); border: 1px solid rgba(139, 92, 246, 0.3); }
.badge-info { background-color: rgba(6, 182, 212, 0.15); color: var(--info); border: 1px solid rgba(6, 182, 212, 0.3); }
.badge-warning { background-color: rgba(245, 158, 11, 0.15); color: var(--warning); border: 1px solid rgba(245, 158, 11, 0.3); }

.product-name {
  font-family: var(--font-logo);
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text-main);
}

.product-card-icon {
  width: 44px;
  height: 44px;
  color: var(--accent-glow);
  background-color: var(--accent-dim);
  border-radius: 6px;
  padding: 8px;
  flex-shrink: 0;
  margin-left: 1rem;
}

.product-card-icon svg {
  width: 100%;
  height: 100%;
}

.product-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.product-spec-list {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-spec-list li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
  font-weight: 400;
}

.product-spec-list li svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

.product-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 1.5rem;
}

.price-container {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.75rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-value {
  font-family: var(--font-logo);
  font-size: 1.35rem;
  color: var(--text-main);
}

.price-value span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 2px;
}

.buy-btn {
  padding: 0.75rem 1.75rem;
  font-size: 0.85rem;
  border-radius: 4px;
}

/* TOS Page */
.tos-container,
.options-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 8px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.tos-container h2,
.options-container h2 {
  font-family: var(--font-logo);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--accent-dim);
  padding-bottom: 1rem;
}

.tos-section {
  margin-bottom: 2rem;
}

.tos-section h3 {
  font-size: 1.1rem;
  color: var(--accent-glow);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.tos-section p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
}

/* Options / Account Settings Page */
.option-panel {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-row {
  display: flex;
  gap: 1rem;
}

input[type="text"] {
  flex: 1;
  background: var(--bg-darker);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input[type="text"]:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.25);
}

/* Success & Failure Pages */
.status-card {
  text-align: center;
  padding: 5rem 3rem;
  max-width: 550px;
  margin: 4rem auto;
}

.status-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-success .status-icon {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 2px solid var(--success);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.status-failure .status-icon {
  background-color: rgba(239, 68, 68, 0.1);
  color: var(--error);
  border: 2px solid var(--error);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.2);
}

.status-icon svg {
  width: 36px;
  height: 36px;
}

.status-card h2 {
  font-family: var(--font-logo);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.status-card p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.order-info-box {
  background: var(--bg-darker);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  padding: 1.5rem;
  text-align: left;
  margin-bottom: 2.5rem;
}

.info-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.info-line:last-child {
  margin-bottom: 0;
}

.info-line span:first-child {
  color: var(--text-dark);
}

.info-line span:last-child {
  font-family: monospace;
  color: var(--accent-glow);
}

/* Glitch Animation CSS keyframes */
.glitch-title::before,
.glitch-title::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  pointer-events: none;
}


.glitch-title::before {
  left: 2px;
  text-shadow: -2px 0 #ff00c1;
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim-1 1.5s infinite linear alternate-reverse;
}

.glitch-title::after {
  left: -2px;
  text-shadow: -2px 0 #00fff9, 0 2px 3px rgba(0,0,0,0.3);
  clip: rect(85px, 450px, 140px, 0);
  animation: glitch-anim-2 1.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
  0% { clip: rect(20px, 9999px, 66px, 0); }
  10% { clip: rect(80px, 9999px, 5px, 0); }
  20% { clip: rect(30px, 9999px, 105px, 0); }
  30% { clip: rect(95px, 9999px, 18px, 0); }
  40% { clip: rect(10px, 9999px, 85px, 0); }
  50% { clip: rect(70px, 9999px, 130px, 0); }
  60% { clip: rect(45px, 9999px, 35px, 0); }
  70% { clip: rect(110px, 9999px, 60px, 0); }
  80% { clip: rect(15px, 9999px, 90px, 0); }
  90% { clip: rect(55px, 9999px, 120px, 0); }
  100% { clip: rect(90px, 9999px, 15px, 0); }
}

@keyframes glitch-anim-2 {
  0% { clip: rect(85px, 9999px, 5px, 0); }
  10% { clip: rect(30px, 9999px, 110px, 0); }
  20% { clip: rect(95px, 9999px, 45px, 0); }
  30% { clip: rect(15px, 9999px, 80px, 0); }
  40% { clip: rect(120px, 9999px, 60px, 0); }
  50% { clip: rect(55px, 9999px, 15px, 0); }
  60% { clip: rect(70px, 9999px, 135px, 0); }
  70% { clip: rect(40px, 9999px, 90px, 0); }
  80% { clip: rect(100px, 9999px, 20px, 0); }
  90% { clip: rect(25px, 9999px, 75px, 0); }
  100% { clip: rect(115px, 9999px, 50px, 0); }
}

/* Footer Section */
footer {
  border-top: 1px solid rgba(59, 130, 246, 0.05);
  background-color: rgba(6, 9, 19, 0.95);
  padding: 4rem 2rem 2.5rem 2rem;
  margin-top: auto;
  font-size: 0.9rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-branding {
  max-width: 320px;
}

.footer-branding h3 {
  font-family: var(--font-logo);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-branding p {
  color: var(--text-dark);
  font-weight: 300;
  line-height: 1.5;
}

.footer-links-group {
  display: flex;
  gap: 4rem;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  text-decoration: none;
  color: var(--text-dark);
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--accent-glow);
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-circle {
  width: 38px;
  height: 38px;
  background-color: var(--accent-dim);
  border: 1px solid var(--border-neon);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-glow);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-circle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-circle:hover {
  background-color: var(--accent-glow);
  color: var(--bg-darker);
  box-shadow: 0 0 15px var(--accent-glow);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding-top: 2rem;
  color: var(--text-dark);
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Toast Notifications Container */
#toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--bg-card);
  border-left: 4px solid var(--accent-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-right: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  padding: 1rem 1.5rem;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 280px;
  max-width: 380px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateX(50px);
  animation: slide-in 0.3s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.toast-success {
  border-left-color: var(--success);
}

.toast.toast-error {
  border-left-color: var(--error);
}

.toast.toast-info {
  border-left-color: var(--info);
}

.toast.fade-out {
  animation: fade-out-anim 0.3s forwards ease-in;
}

@keyframes slide-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-out-anim {
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* Responsive Breakpoints */
@media (max-width: 968px) {
  .hero {
    padding: 4rem 1rem 5rem 1rem;
  }
  .glitch-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto !important;
  }
  
  .custom-cursor-dot, 
  .custom-cursor-trail {
    display: none !important;
  }

  header {
    padding: 1rem;
  }

  .menu-btn {
    display: block;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-card);
    border-bottom: 1px solid var(--border-neon);
    padding: 1.5rem 2rem;
  }

  nav.active {
    display: block;
    animation: slide-down 0.25s ease-out;
  }

  nav ul {
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
  }

  nav a {
    width: 100%;
    display: block;
  }

  .glitch-title {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }

  .tos-container,
  .options-container {
    padding: 1.75rem;
  }

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

  .footer-links-group {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@keyframes slide-down {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Promo Announcement Bar */
.promo-banner {
  background: linear-gradient(90deg, rgba(6, 9, 19, 0.95), rgba(29, 78, 216, 0.3), rgba(6, 9, 19, 0.95));
  border-bottom: 1px solid rgba(59, 130, 246, 0.15);
  border-top: 1px solid rgba(59, 130, 246, 0.15);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.6rem 0;
  user-select: none;
  box-shadow: inset 0 0 10px rgba(59, 130, 246, 0.1);
}

.promo-marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marquee-slide 18s linear infinite;
  padding-left: 100%;
}

.promo-marquee span {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.promo-code {
  color: var(--accent-glow);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.1rem 0.45rem;
  border-radius: 3px;
  border: 1px dashed rgba(96, 165, 250, 0.5);
  margin: 0 6px;
  font-family: monospace;
  font-size: 0.8rem;
  text-shadow: 0 0 5px var(--accent-glow);
}

@keyframes marquee-slide {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}


