/* Fonts loaded via <link> tags in HTML for non-blocking render */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --sky-blue: #87CEEB;
  --pink: #FF69B4;
  --green: #00FF7F;
  --yellow: #FFD700;
  --purple: #9B59B6;
  --orange: #FF6B35;
  --dark: #1a1a2e;
  --darker: #0f0f23;
  --white: #ffffff;
  --light-gray: #f0f0f0;
  --pixel-font: 'Press Start 2P', cursive;
  --body-font: 'Space Grotesk', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  background: var(--darker);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--darker);
}
::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 4px;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.star {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--white);
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

.star:nth-child(odd) { animation-duration: 4s; }
.star:nth-child(3n) { animation-duration: 2.5s; background: var(--yellow); }
.star:nth-child(5n) { animation-duration: 5s; background: var(--pink); }

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* ===== FLOATING BUBBLES ===== */
.bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -80px;
  border-radius: 50%;
  opacity: 0.15;
  animation: float-up linear infinite;
}

.bubble:nth-child(1) { left: 5%; width: 40px; height: 40px; background: var(--pink); animation-duration: 18s; animation-delay: 0s; }
.bubble:nth-child(2) { left: 15%; width: 25px; height: 25px; background: var(--green); animation-duration: 22s; animation-delay: 3s; }
.bubble:nth-child(3) { left: 30%; width: 50px; height: 50px; background: var(--yellow); animation-duration: 16s; animation-delay: 1s; }
.bubble:nth-child(4) { left: 45%; width: 30px; height: 30px; background: var(--purple); animation-duration: 20s; animation-delay: 5s; }
.bubble:nth-child(5) { left: 60%; width: 35px; height: 35px; background: var(--sky-blue); animation-duration: 24s; animation-delay: 2s; }
.bubble:nth-child(6) { left: 75%; width: 45px; height: 45px; background: var(--orange); animation-duration: 17s; animation-delay: 4s; }
.bubble:nth-child(7) { left: 88%; width: 28px; height: 28px; background: var(--pink); animation-duration: 21s; animation-delay: 6s; }
.bubble:nth-child(8) { left: 50%; width: 20px; height: 20px; background: var(--green); animation-duration: 19s; animation-delay: 7s; }

@keyframes float-up {
  0% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
  50% { opacity: 0.25; }
  100% { transform: translateY(-110vh) rotate(360deg); opacity: 0; }
}

/* ===== PIXEL CLOUDS ===== */
.clouds {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  animation: drift linear infinite;
}

.cloud::before,
.cloud::after {
  content: '';
  position: absolute;
  background: inherit;
  border-radius: 50%;
}

.cloud:nth-child(1) {
  width: 120px; height: 40px; top: 10%;
  animation-duration: 35s;
}
.cloud:nth-child(1)::before { width: 50px; height: 50px; top: -25px; left: 20px; }
.cloud:nth-child(1)::after { width: 35px; height: 35px; top: -15px; left: 60px; }

.cloud:nth-child(2) {
  width: 160px; height: 50px; top: 25%;
  animation-duration: 45s; animation-delay: -15s;
}
.cloud:nth-child(2)::before { width: 60px; height: 60px; top: -30px; left: 30px; }
.cloud:nth-child(2)::after { width: 45px; height: 45px; top: -20px; left: 80px; }

.cloud:nth-child(3) {
  width: 100px; height: 35px; top: 50%;
  animation-duration: 40s; animation-delay: -8s;
}
.cloud:nth-child(3)::before { width: 40px; height: 40px; top: -20px; left: 15px; }
.cloud:nth-child(3)::after { width: 30px; height: 30px; top: -12px; left: 50px; }

@keyframes drift {
  0% { transform: translateX(-200px); }
  100% { transform: translateX(calc(100vw + 200px)); }
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
  font-family: var(--pixel-font);
  font-size: 0.9rem;
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--sky-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--pink);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  transition: width 0.3s;
}

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

/* Legal dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.3s;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
}

.nav-dropdown-menu a::after {
  display: none;
}

/* Mobile menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== SECTION COMMON ===== */
section {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
}

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

.section-title {
  font-family: var(--pixel-font);
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
}

.hero-badge {
  display: inline-block;
  font-family: var(--pixel-font);
  font-size: 0.55rem;
  padding: 0.5rem 1rem;
  border: 2px solid var(--pink);
  border-radius: 50px;
  color: var(--pink);
  margin-bottom: 2rem;
  animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
  0%, 100% { border-color: var(--pink); box-shadow: 0 0 10px rgba(255, 105, 180, 0.2); }
  50% { border-color: var(--purple); box-shadow: 0 0 20px rgba(155, 89, 182, 0.3); }
}

.hero h1 {
  font-family: var(--pixel-font);
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--pink), var(--purple), var(--sky-blue), var(--green));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-mascot {
  display: block;
  width: 180px;
  height: 180px;
  margin: 0 auto 2rem;
  image-rendering: pixelated;
  animation: bounce 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(255, 105, 180, 0.3));
  border-radius: 16px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.store-badge {
  position: relative;
  display: inline-block;
  opacity: 0.5;
  transition: opacity 0.3s;
  cursor: default;
}

.store-badge img {
  height: 50px;
  filter: grayscale(100%);
}

.store-badge .coming-soon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--pixel-font);
  font-size: 0.45rem;
  background: var(--pink);
  color: var(--white);
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  white-space: nowrap;
}

/* ===== FEATURES ===== */
.features {
  background: linear-gradient(180deg, transparent, rgba(155, 89, 182, 0.05), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:nth-child(1):hover { border-color: var(--pink); box-shadow: 0 10px 40px rgba(255, 105, 180, 0.1); }
.feature-card:nth-child(2):hover { border-color: var(--green); box-shadow: 0 10px 40px rgba(0, 255, 127, 0.1); }
.feature-card:nth-child(3):hover { border-color: var(--purple); box-shadow: 0 10px 40px rgba(155, 89, 182, 0.1); }

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  image-rendering: pixelated;
  filter: drop-shadow(0 5px 15px rgba(255, 105, 180, 0.2));
}

.feature-card h3 {
  font-family: var(--pixel-font);
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--yellow);
  line-height: 1.6;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: linear-gradient(180deg, transparent, rgba(0, 255, 127, 0.03), transparent);
}

.steps {
  display: flex;
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--yellow), var(--green));
  border-radius: 2px;
  z-index: 0;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: var(--darker);
  border: 3px solid;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pixel-font);
  font-size: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.step:nth-child(1) .step-number { border-color: var(--pink); color: var(--pink); }
.step:nth-child(2) .step-number { border-color: var(--yellow); color: var(--yellow); }
.step:nth-child(3) .step-number { border-color: var(--green); color: var(--green); }

.step:hover .step-number {
  transform: scale(1.1);
}

.step:nth-child(1):hover .step-number { box-shadow: 0 0 30px rgba(255, 105, 180, 0.3); }
.step:nth-child(2):hover .step-number { box-shadow: 0 0 30px rgba(255, 215, 0, 0.3); }
.step:nth-child(3):hover .step-number { box-shadow: 0 0 30px rgba(0, 255, 127, 0.3); }

.step-label {
  font-family: var(--pixel-font);
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.step h3 {
  font-family: var(--pixel-font);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  color: var(--white);
  line-height: 1.6;
}

.step p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  max-width: 250px;
  margin: 0 auto;
}

/* ===== PRICING ===== */
.pricing {
  background: linear-gradient(180deg, transparent, rgba(255, 215, 0, 0.03), transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.pricing-card.free::before {
  background: linear-gradient(90deg, var(--sky-blue), var(--green));
}

.pricing-card.premium::before {
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--yellow));
}

.pricing-card.premium {
  border-color: var(--purple);
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.pricing-card.free:hover { border-color: var(--green); }
.pricing-card.premium:hover { border-color: var(--pink); }

.pricing-tag {
  font-family: var(--pixel-font);
  font-size: 0.5rem;
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.pricing-card.free .pricing-tag {
  background: rgba(0, 255, 127, 0.1);
  color: var(--green);
  border: 1px solid rgba(0, 255, 127, 0.3);
}

.pricing-card.premium .pricing-tag {
  background: rgba(255, 105, 180, 0.1);
  color: var(--pink);
  border: 1px solid rgba(255, 105, 180, 0.3);
}

.pricing-card h3 {
  font-family: var(--pixel-font);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--pixel-font);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.pricing-card.free .pricing-price { color: var(--green); }
.pricing-card.premium .pricing-price { color: var(--pink); }

.pricing-period {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.pricing-features li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  flex-shrink: 0;
}

.pricing-card.free .pricing-features li::before { background: var(--green); }
.pricing-card.premium .pricing-features li::before { background: var(--pink); }

.pricing-btn {
  display: inline-block;
  font-family: var(--pixel-font);
  font-size: 0.55rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 2px solid;
  transition: all 0.3s;
  cursor: pointer;
  background: transparent;
  color: var(--white);
}

.pricing-card.free .pricing-btn {
  border-color: var(--green);
}

.pricing-card.free .pricing-btn:hover {
  background: var(--green);
  color: var(--darker);
  box-shadow: 0 5px 25px rgba(0, 255, 127, 0.3);
}

.pricing-card.premium .pricing-btn {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--darker);
}

.pricing-card.premium .pricing-btn:hover {
  box-shadow: 0 5px 25px rgba(255, 105, 180, 0.4);
  transform: scale(1.05);
}

/* ===== CTA ===== */
.cta {
  text-align: center;
  padding: 8rem 2rem;
}

.cta h2 {
  font-family: var(--pixel-font);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--pink), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.cta .store-badges {
  margin-top: 2rem;
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem 2rem;
  position: relative;
  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand .nav-logo {
  margin-bottom: 0.8rem;
  display: inline-block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  max-width: 300px;
}

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

.footer-links-group h4 {
  font-family: var(--pixel-font);
  font-size: 0.5rem;
  color: var(--yellow);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-group a {
  display: block;
  padding: 0.3rem 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links-group a:hover {
  color: var(--pink);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--pink);
  background: rgba(255, 105, 180, 0.1);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding-top: 120px;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.legal-content h1 {
  font-family: var(--pixel-font);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-content .last-updated {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-family: var(--pixel-font);
  font-size: 0.85rem;
  color: var(--yellow);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content p,
.legal-content ul,
.legal-content ol {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
}

.legal-content li {
  list-style: disc;
  margin-bottom: 0.5rem;
}

.legal-content ol li {
  list-style: decimal;
}

.legal-content a {
  color: var(--pink);
  text-decoration: underline;
  text-decoration-color: rgba(255, 105, 180, 0.3);
  transition: text-decoration-color 0.3s;
}

.legal-content a:hover {
  text-decoration-color: var(--pink);
}

.placeholder-note {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--yellow);
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--pink);
  color: var(--darker);
  padding: 0.8rem 1.5rem;
  font-family: var(--pixel-font);
  font-size: 0.5rem;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 0;
}

/* ===== FAQ SECTION ===== */
.faq {
  background: linear-gradient(180deg, transparent, rgba(155, 89, 182, 0.03), transparent);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.faq-item[open] {
  border-color: var(--purple);
}

.faq-item summary {
  padding: 1.2rem 1.5rem;
  font-family: var(--pixel-font);
  font-size: 0.6rem;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  line-height: 1.8;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-family: var(--body-font);
  font-size: 1.2rem;
  color: var(--pink);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-answer a {
  color: var(--pink);
  text-decoration: underline;
  text-decoration-color: rgba(255, 105, 180, 0.3);
}

.faq-answer a:hover {
  text-decoration-color: var(--pink);
}

/* ===== 404 PAGE ===== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  position: relative;
  z-index: 1;
}

.error-content {
  max-width: 600px;
  padding: 2rem;
}

.error-title {
  font-family: var(--pixel-font);
  font-size: 2rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.error-code {
  font-family: var(--pixel-font);
  font-size: 5rem;
  color: var(--yellow);
  margin-bottom: 1rem;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.error-message {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.error-btn {
  display: inline-block;
  font-family: var(--pixel-font);
  font-size: 0.7rem;
  padding: 1rem 2.5rem;
  border: 2px solid var(--green);
  border-radius: 50px;
  color: var(--green);
  transition: all 0.3s;
}

.error-btn:hover {
  background: var(--green);
  color: var(--darker);
  box-shadow: 0 5px 25px rgba(0, 255, 127, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(15, 15, 35, 0.98);
    flex-direction: column;
    padding: 5rem 2rem;
    transition: right 0.3s;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  }

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

  .nav-toggle {
    display: flex;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.03);
    border: none;
    margin-top: 0.5rem;
    border-radius: 8px;
  }

  .hero h1 {
    font-size: 1.2rem;
  }

  .hero-badge {
    font-size: 0.45rem;
  }

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

  .steps {
    flex-direction: column;
  }

  .steps::before {
    display: none;
  }

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

  .footer-container {
    flex-direction: column;
  }

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

  .section-title {
    font-size: 0.9rem;
  }

  .cta h2 {
    font-size: 1rem;
  }
}

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

  .hero p {
    font-size: 0.95rem;
  }

  section {
    padding: 4rem 1.2rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }
}
