/* Zila Neon Rush Custom CSS - Animations, Overrides & Prose Styling */

:root {
  --color-primary: #00d9ff;
  --color-primary-dark: #0095ff;
  --color-accent: #ff006e;
  --color-accent-light: #ff6ec7;
  --color-dark: #0a0e27;
  --color-darker: #050812;
  --color-neutral-light: #e6f7ff;
  --color-neutral-mid: #a0aec0;
  --color-text-light: #f0f4f8;
  --color-text-muted: #cbd5e1;
  --radius: 0.5rem;
}

html {
  overflow-x: clip;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body {
  overflow-x-clip: true;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1a3e 50%, #0f0f2e 100%);
  color: var(--color-text-light);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 20% 50%, rgba(0, 217, 255, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 0, 110, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* Neon Animations */
@keyframes neon-glow {
  0%,
  100% {
    text-shadow: 0 0 10px var(--color-primary), 0 0 20px var(--color-primary), 0 0 30px rgba(0, 217, 255, 0.5);
  }
  50% {
    text-shadow: 0 0 20px var(--color-primary), 0 0 40px var(--color-primary), 0 0 60px rgba(0, 217, 255, 0.7);
  }
}

@keyframes neon-border-glow {
  0%,
  100% {
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.4), inset 0 0 10px rgba(0, 217, 255, 0.1);
  }
  50% {
    border-color: var(--color-primary-dark);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.6), inset 0 0 15px rgba(0, 217, 255, 0.2);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 5px rgba(0, 217, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 217, 255, 0.7), 0 0 40px rgba(255, 0, 110, 0.3);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes float-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-right {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-left {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes particle-float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.5;
  }
  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-40px) translateX(0);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-20px) translateX(-10px);
    opacity: 0.6;
  }
}

@keyframes scale-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Typography & Global Overrides */
h1 {
  animation: float-up 0.8s ease-out;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 {
  animation: slide-in-left 0.8s ease-out;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

h3 {
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.4;
}

h1,
h2,
h3 {
  color: var(--color-text-light);
}

p {
  line-height: 1.6;
  color: var(--color-text-muted);
  animation: float-up 0.8s ease-out;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

a:hover {
  color: var(--color-primary-dark);
  text-shadow: 0 0 10px var(--color-primary);
  border-bottom-color: var(--color-accent);
}

strong {
  color: var(--color-primary);
  font-weight: 600;
}

/* Button Styles */
.btn,
button,
[role="button"] {
  position: relative;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
  animation: neon-border-glow 3s ease-in-out infinite;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  z-index: -1;
  transition: left 0.3s ease;
}

.btn:hover::before {
  left: 0;
}

.btn:hover,
button:hover,
[role="button"]:hover {
  color: var(--color-dark);
  box-shadow: 0 0 20px var(--color-primary), inset 0 0 20px rgba(0, 217, 255, 0.2);
}

.btn-secondary,
button.secondary {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-secondary::before {
  background: var(--color-accent);
}

.btn-secondary:hover {
  color: white;
  box-shadow: 0 0 20px var(--color-accent), inset 0 0 20px rgba(255, 0, 110, 0.2);
}

/* Badge Styles */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: pulse-glow 2s ease-in-out infinite;
}

.badge.accent {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: rgba(255, 0, 110, 0.1);
}

/* Prose Styling */
.prose {
  color: var(--color-text-muted);
  max-width: 100%;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
  color: var(--color-text-light);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.prose p {
  margin-bottom: 1.25em;
  line-height: 1.75;
}

.prose ul,
.prose ol {
  margin-bottom: 1.25em;
  margin-left: 2em;
}

.prose li {
  margin-bottom: 0.5em;
  line-height: 1.75;
}

.prose ul li::marker {
  color: var(--color-primary);
}

.prose ol {
  counter-reset: item;
  list-style-type: none;
}

.prose ol li::before {
  content: counter(item) ". ";
  counter-increment: item;
  color: var(--color-primary);
  font-weight: 600;
}

.prose blockquote {
  border-left: 4px solid var(--color-primary);
  padding-left: 1em;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.25em;
  font-style: italic;
  color: var(--color-neutral-mid);
  background: rgba(0, 217, 255, 0.05);
  padding: 1em;
  border-radius: 0.25rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.25em;
}

.prose table thead {
  background: rgba(0, 217, 255, 0.1);
  border-bottom: 2px solid var(--color-primary);
}

.prose table th {
  padding: 0.75em;
  text-align: left;
  color: var(--color-primary);
  font-weight: 600;
}

.prose table td {
  padding: 0.75em;
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
  color: var(--color-text-muted);
}

.prose table tbody tr:hover {
  background: rgba(0, 217, 255, 0.05);
}

.prose code {
  background: rgba(0, 217, 255, 0.1);
  color: var(--color-primary);
  padding: 0.2em 0.4em;
  border-radius: 0.25rem;
  font-family: "Courier New", monospace;
  font-size: 0.9em;
}

.prose pre {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 0.5rem;
  padding: 1em;
  overflow-x: auto;
  margin-bottom: 1.25em;
}

.prose pre code {
  background: none;
  color: var(--color-primary);
  padding: 0;
}

.prose img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.5em 0;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

/* Table Responsive */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive::-webkit-scrollbar {
  height: 6px;
}

.table-responsive::-webkit-scrollbar-track {
  background: rgba(0, 217, 255, 0.05);
}

.table-responsive::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 3px;
}

/* Container & Spacing */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}

.section {
  padding: 4rem 1rem;
  animation: float-up 1s ease-out;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 2rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 8rem 2rem;
  }
}

/* Grid Utilities */
.grid {
  display: grid;
  gap: 2rem;
}

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

@media (min-width: 640px) {
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Flex Utilities */
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}

/* Text Utilities */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-sm {
  font-size: 0.875rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-xl {
  font-size: 1.25rem;
}
.text-2xl {
  font-size: 1.5rem;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.font-bold {
  font-weight: 700;
}
.font-semibold {
  font-weight: 600;
}
.tracking-wide {
  letter-spacing: 0.05em;
}
.uppercase {
  text-transform: uppercase;
}

/* Visibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Margin Utilities */
.m-0 {
  margin: 0;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}

/* Padding Utilities */
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Neon Card Style */
.card {
  background: rgba(10, 14, 39, 0.8);
  border: 1px solid rgba(0, 217, 255, 0.2);
  padding: 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  animation: float-up 1s ease-out;
}

.card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3), inset 0 0 20px rgba(0, 217, 255, 0.05);
  transform: translateY(-5px);
}

.card.accent {
  border-color: var(--color-accent);
}

.card.accent:hover {
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.3), inset 0 0 20px rgba(255, 0, 110, 0.05);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(0,217,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: float-up 1s ease-out;
}

/* Bonus Badge */
.bonus-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: rgba(0, 217, 255, 0.1);
  border: 2px solid var(--color-primary);
  border-radius: 0.5rem;
  margin: 1rem 0;
  animation: pulse-glow 2s ease-in-out infinite;
}

.bonus-badge-main {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  text-shadow: 0 0 10px var(--color-primary);
  margin-bottom: 0.5rem;
}

.bonus-badge-sub {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Disclaimer */
.disclaimer {
  font-size: 0.8rem;
  color: var(--color-neutral-mid);
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 0, 110, 0.05);
  border-left: 2px solid var(--color-accent);
  border-radius: 0.25rem;
  line-height: 1.6;
}

/* Feature Strip */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .feature-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.feature-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-card-image {
  transform: scale(1.05);
}

.feature-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover .feature-card-overlay {
  opacity: 1;
}

.feature-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text-light);
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* Step Card */
.step-card {
  text-align: center;
  animation: float-up 1s ease-out;
}

.step-badge {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-dark);
  margin: 0 auto 1rem;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.step-image {
  width: 100%;
  height: auto;
  max-width: 300px;
  margin: 1.5rem auto;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

/* Payment Methods Table */
.payment-methods {
  width: 100%;
}

.payment-methods thead {
  background: rgba(0, 217, 255, 0.1);
}

.payment-methods th {
  color: var(--color-primary);
  font-weight: 600;
  padding: 1rem;
  text-align: left;
  border-bottom: 2px solid var(--color-primary);
}

.payment-methods td {
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
  color: var(--color-text-muted);
}

.payment-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-right: 0.5rem;
}

/* FAQ Styles */
.faq-item {
  margin-bottom: 1.5rem;
  border-left: 2px solid var(--color-primary);
  padding-left: 1rem;
}

.faq-question {
  color: var(--color-primary);
  font-weight: 600;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-question::after {
  content: "▼";
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(180deg);
}

.faq-answer {
  margin-top: 1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
  animation: float-up 0.4s ease-out;
}

/* Footer */
footer {
  background: rgba(5, 8, 18, 0.9);
  border-top: 1px solid rgba(0, 217, 255, 0.2);
  padding: 3rem 1rem;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1440px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

.footer-section h3 {
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
  text-shadow: 0 0 10px var(--color-primary);
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid var(--color-primary);
  border-radius: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-primary);
  margin: 0.5rem 0;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 217, 255, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.footer-icons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.footer-icon {
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid var(--color-primary);
  border-radius: 0.25rem;
  color: var(--color-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.footer-icon:hover {
  background: var(--color-primary);
  color: var(--color-dark);
  box-shadow: 0 0 15px var(--color-primary);
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .mobile-hide {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .mobile-show {
    display: none !important;
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Print Styles */
@media print {
  body::before {
    display: none;
  }
  .btn,
  button,
  [role="button"] {
    border: 1px solid #000;
    background: #fff;
    color: #000;
  }
  .card {
    border: 1px solid #000;
  }
}
