/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-purple: #6b21a8;
  --primary-purple-dark: #4c1d95;
  --primary-purple-light: #a855f7;
  --accent-orange: #f97316;
  --accent-gold: #fbbf24;
  --accent-yellow: #fde047;
  --bg-dark: #1a0a2e;
  --bg-darker: #0f0518;
  --text-white: #ffffff;
  --text-light: #e2e8f0;
  --text-muted: #a78bfa;
  --gradient-main: linear-gradient(
    135deg,
    #1a0a2e 0%,
    #4c1d95 50%,
    #6b21a8 100%
  );
  --gradient-section: linear-gradient(180deg, #2d1052 0%, #1a0a2e 100%);
  --gradient-button: linear-gradient(135deg, #f97316 0%, #fbbf24 100%);
  --gradient-glow: radial-gradient(
    ellipse at center,
    rgba(168, 85, 247, 0.4) 0%,
    transparent 70%
  );
  --shadow-glow: 0 0 60px rgba(168, 85, 247, 0.5);
  --shadow-orange: 0 4px 30px rgba(249, 115, 22, 0.4);

  /* Legal page/panel colors */
  --card-bg: rgba(16, 7, 34, 0.9);
  --card-border: rgba(168, 85, 247, 0.25);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg-darker);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ========== Utility Classes ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== Navigation ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
  background: rgba(26, 10, 46, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

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

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white);
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

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

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-button);
  transition: width 0.3s ease;
}

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

.btn-get-started {
  background: transparent;
  border: 2px solid var(--accent-orange);
  color: var(--text-white);
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-get-started:hover {
  background: var(--accent-orange);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: var(--text-white);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ========== Hero Section ========== */
.hero {
  min-height: 100vh;
  background: var(--gradient-main);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(249, 115, 22, 0.1) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 3px;
  text-shadow: 0 0 40px rgba(168, 85, 247, 0.5);
}

.hero-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-light);
}

.hero-content p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 30px;
  max-width: 450px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gradient-button);
  color: var(--bg-dark);
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(249, 115, 22, 0.5);
}

.btn-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--text-white);
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-white);
  transform: translateY(-3px);
}

.hero-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
  border-radius: 40px;
  padding: 10px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(168, 85, 247, 0.3);
  position: relative;
  z-index: 2;
}

.phone-mockup.secondary {
  position: absolute;
  right: -20px;
  top: 80px;
  transform: scale(0.85) rotate(5deg);
  z-index: 1;
  opacity: 0.9;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1a0a2e 0%, #4c1d95 100%);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-header {
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--accent-orange);
  letter-spacing: 2px;
}

.phone-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 15px;
}

.phone-nav span {
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.7rem;
  color: var(--text-light);
}

.phone-nav span.active {
  background: var(--gradient-button);
  color: var(--bg-dark);
}

.phone-content {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.content-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  gap: 12px;
}

.content-image {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-screen img.app-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 32px;
  transition: transform 0.6s ease;
}

.phone-mockup:hover .phone-screen img.app-screen {
  transform: scale(1.08);
}

.content-info h4 {
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.content-info p {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.content-stats {
  display: flex;
  gap: 15px;
  font-size: 0.65rem;
  color: var(--text-light);
}

/* Floating Coins */
.floating-coin {
  position: absolute;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
  animation: float 4s ease-in-out infinite;
}

.coin-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  width: 40px;
  height: 40px;
}

.coin-2 {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
  width: 60px;
  height: 60px;
}

.coin-3 {
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
  width: 45px;
  height: 45px;
}

.coin-4 {
  bottom: 30%;
  right: 10%;
  animation-delay: 0.5s;
}

.coin-5 {
  top: 40%;
  left: 20%;
  animation-delay: 1.5s;
  width: 35px;
  height: 35px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(15deg);
  }
}

/* Sparkles */
.sparkle {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--accent-gold);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
  animation: sparkle 2s ease-in-out infinite;
}

.sparkle-1 {
  top: 15%;
  right: 25%;
  animation-delay: 0s;
}

.sparkle-2 {
  top: 50%;
  left: 8%;
  animation-delay: 0.5s;
  width: 15px;
  height: 15px;
}

.sparkle-3 {
  bottom: 35%;
  right: 20%;
  animation-delay: 1s;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* ========== About Section ========== */
.about {
  padding: 112px 0;
  background: linear-gradient(180deg, #4c1d95 0%, #2d1052 40%, #1a0a2e 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.1));
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--accent-gold);
}

.about-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 30px;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(249, 115, 22, 0.2)
  );
  padding: 15px 25px;
  border-radius: 50px;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.app-badge-icon {
  width: 45px;
  height: 45px;
  background: var(--gradient-button);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-badge span {
  font-weight: 600;
  font-size: 0.95rem;
}

.about-phones {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.about-phone {
  width: 200px;
  height: 400px;
  background: linear-gradient(145deg, #2d2d2d, #1a1a1a);
  border-radius: 30px;
  padding: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.about-phone:nth-child(2) {
  transform: translateY(40px);
}

.about-phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1a0a2e, #4c1d95);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.about-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.4s ease;
}

.about-phone:hover .about-phone-screen img {
  transform: scale(1.05);
}

/* ========== Features Section ========== */
.features {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a0a2e 0%, #2d1052 50%, #1a0a2e 100%);
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.features-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: var(--text-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 10;
}

.feature-card {
  background: linear-gradient(
    145deg,
    rgba(45, 16, 82, 0.8),
    rgba(26, 10, 46, 0.9)
  );
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-button);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-orange);
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.2);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-button);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.feature-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--bg-dark);
}

.feature-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-white);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========== Download Section ========== */
.download {
  padding: 80px 0;
  background: var(--gradient-main);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.store-btn.apple {
  background: #000;
  color: #fff;
  border: 2px solid #333;
}

.store-btn.google {
  background: #fff;
  color: #000;
}

.store-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.store-btn svg {
  width: 28px;
  height: 28px;
}

.store-btn-text {
  text-align: left;
}

.store-btn-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.8;
}

.store-btn-text strong {
  font-size: 1.1rem;
}

/* ========== Footer ========== */
.footer {
  padding: 40px 0;
  background: var(--bg-darker);
  text-align: center;
  border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
  list-style: none;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-orange);
}

/* ========== Contact Modal ========== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: linear-gradient(135deg, #2d1052 0%, #1a0a2e 100%);
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(168, 85, 247, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 0 80px rgba(168, 85, 247, 0.4);
}

.modal-overlay.active .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 20px;
  height: 20px;
  fill: var(--text-white);
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--accent-gold);
}

.modal-header p {
  color: var(--text-light);
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-light);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 10px;
  color: var(--text-white);
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-orange);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--gradient-button);
  border: none;
  border-radius: 30px;
  color: var(--bg-dark);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-orange);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(249, 115, 22, 0.5);
}

.form-success {
  text-align: center;
  padding: 20px;
  color: var(--accent-gold);
  font-weight: 600;
  display: none;
}

.form-success.active {
  display: block;
}

/* ========== Legal Page Styles ========== */
.legal-hero {
  min-height: 45vh;
  padding-top: 100px;
  padding-bottom: 80px;
  background: var(--gradient-main);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-glow);
  pointer-events: none;
}

.legal-hero .legal-hero-inner {
  max-width: 900px;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.legal-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.legal-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto 20px;
  line-height: 1.7;
}

.legal-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.9rem;
}

.legal-hero .badge svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-orange);
}

.legal-content-wrapper {
  padding: 80px 20px 120px;
  background: linear-gradient(
    180deg,
    rgba(26, 10, 46, 0.95) 0%,
    rgba(26, 10, 46, 0.95) 100%
  );
}

.legal-card {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  background: var(--card-bg);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    var(--shadow-glow);
  overflow: hidden;
}

.legal-card-header {
  padding: 40px 35px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.legal-card-header h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.legal-card-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-card-body {
  padding: 8px 35px;
  color: #ffffff;

  /* color: var(--text-light); */
  font-size: 1rem;
  line-height: 1.75;
}

.legal-card-body p,
.legal-card-body text,
.legal-card-body ul,
.legal-card-body ol,
.legal-card-body h2,
.legal-card-body h1,
.legal-card-body h3,
.legal-card-body h5,
.legal-card-body h4,
.legal-card-body span,
.legal-card-body li,
.legal-card-body strong,
.legal-card-body a {
  margin-bottom: 18px;
  color: #ffffff !important;
}

.legal-card-body a {
  color: var(--accent-orange);
  text-decoration: underline;
}

.legal-card-body ul,
.legal-card-body ol {
  margin-left: 1.25rem;
  color: #ffffff;
}

.legal-card-body li {
  margin-bottom: 10px;
  color: #ffffff;
}

.legal-error {
  padding: 40px 30px;
  text-align: center;
  color: var(--accent-orange);
}

.legal-error code {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  font-family:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 0.85rem;
  word-break: break-all;
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
  .hero-container,
  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content h2 {
    font-size: 1.4rem;
  }

  .hero-content p {
    margin: 0 auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-phones {
    margin-top: 50px;
    margin-right: 110px;
  }

  .phone-mockup.secondary {
    right: auto;
    left: 55%;
  }

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

  .about-container {
    gap: 50px;
  }

  .about-content {
    order: 2;
  }

  .about-phones {
    order: 1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 10, 46, 0.98);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content h2 {
    font-size: 1.2rem;
  }

  .phone-mockup {
    width: 220px;
    height: 440px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .features-title {
    font-size: 2rem;
  }

  .phone-screen img,
  .about-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
    margin: 0 auto;
  }

  .about-phone {
    width: 180px;
    height: 360px;
  }

  .floating-coin {
    display: none;
  }

  .sparkle {
    display: none;
  }

  .modal {
    padding: 30px 20px;
  }
}

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .download-buttons {
    flex-direction: column;
    align-items: center;
  }

  .store-btn {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
}
