:root {
  /* Colors */
  --bg-dark: #0f1115;
  --bg-darker: #0a0b0e;
  --bg-card: rgba(255, 255, 255, 0.03);
  --primary-neon: #a2ff00;
  --secondary-purple: #9d4edd;
  --text-main: #f8f9fa;
  --text-muted: #8b949e;
  --border-subtle: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Layout */
  --container-width: 1200px;
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Background gradient effect */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(162, 255, 0, 0.05) 0%, rgba(157, 78, 221, 0.05) 25%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

/* Common Layout */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

header {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 17, 21, 0.8);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--primary-neon);
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-neon);
}

main {
  flex: 1;
}

/* Typography styles */
h1, h2, h3 {
  line-height: 1.2;
}

h1 {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.gradient-text {
  background: linear-gradient(to right, var(--primary-neon), #38b000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

p.lead {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Store Badges */
.store-badges {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: center;
  flex-wrap: wrap; /* Added for responsiveness */
}

.store-badge img {
  height: 50px;
  width: auto;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.store-badge:hover img {
  transform: translateY(-4px) scale(1.05);
  filter: drop-shadow(0 8px 15px rgba(162, 255, 0, 0.3));
}

.coming-soon-text {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.coming-soon-text::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-neon);
  box-shadow: 0 0 10px var(--primary-neon);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(162, 255, 0, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(162, 255, 0, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(162, 255, 0, 0); }
}

/* Hero Section */
.hero {
  padding: 8rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

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

@keyframes float {
  0% { transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(0px); }
  50% { transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(-20px); }
  100% { transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(0px); }
}

.hero-image img {
  width: 100%;
  max-width: 425px;
  max-height: 750px;
  filter: drop-shadow(-20px 20px 30px rgba(0, 0, 0, 0.5));
  transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
  transition: transform 0.5s ease, filter 0.5s ease;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}

.hero-image:hover img {
  animation-play-state: paused;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) scale(1.05);
  filter: drop-shadow(-10px 10px 20px rgba(162, 255, 0, 0.3));
}

.glow-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--secondary-purple);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Content Pages (Privacy, Terms) */
.page-header {
  padding: 6rem 0 4rem;
  text-align: center;
}

.page-header h1 {
  font-size: 3.5rem;
}

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

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(20px);
}

.glass-card h2 {
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
  color: var(--text-main);
}

.glass-card h2:first-child {
  margin-top: 0;
}

.glass-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.glass-card ul {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  list-style-type: none;
}

.glass-card ul li {
  margin-bottom: 0.5rem;
  position: relative;
}

.glass-card ul li::before {
  content: '→';
  color: var(--primary-neon);
  position: absolute;
  left: -1.5rem;
}

/* Footer */
footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary-neon);
}

.copyright {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 4rem 0;
    gap: 3rem;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .store-badges {
    justify-content: center;
  }
  
  .coming-soon-text {
    justify-content: center;
  }
  
  .hero-image img {
    transform: none;
    max-width: 80%;
  }

  .hero-image:hover img {
    transform: scale(1.02);
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }
  
  .store-badges {
    justify-content: center;
  }
  
  .coming-soon-text {
    justify-content: center;
  }
  
  .glass-card {
    padding: 2rem;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
