/* TokenLords Landing Page - Modern Conversion-Focused Design */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Orbitron:wght@500;600;700;800;900&display=swap');

:root {
  --color-bg: #000000;
  --color-bg-elevated: rgba(5, 6, 10, 0.98);
  --color-bg-card: rgba(8, 10, 18, 0.95);
  --color-primary: #ff9500;
  --color-primary-glow: rgba(255, 149, 0, 0.4);
  --color-secondary: #6366f1;
  --color-accent: #22d3ee;
  --color-text: #f8fafc;
  --color-text-muted: rgba(248, 250, 252, 0.6);
  --color-border: rgba(255, 255, 255, 0.08);
  --color-success: #10b981;
  --color-error: #ef4444;
  --gradient-primary: linear-gradient(135deg, #ff9500 0%, #ff5500 100%);
  --gradient-hero: linear-gradient(135deg, #ff9500 0%, #ff5500 50%, #ff3d00 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 149, 0, 0.1) 0%, transparent 50%);
  --shadow-glow: 0 0 60px rgba(255, 149, 0, 0.3);
  --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Particle Field Background */
.particle-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0.3;
  animation: float-up linear infinite;
  filter: blur(1px);
}

@keyframes float-up {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}

/* Main Layout */
.landing-page {
  position: relative;
  min-height: 100vh;
}

.landing-page::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 149, 0, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(34, 211, 238, 0.05) 0%, transparent 50%);
  animation: bg-rotate 60s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes bg-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.landing-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 100vh;
}

.landing-content {
  padding: 2rem 0;
}

/* Auth Sidebar */
.auth-sidebar {
  padding: 2rem 0;
}

.auth-sticky {
  position: sticky;
  top: 2rem;
}

/* Hero Section */
.hero-section {
  padding: 3rem 0 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start !important;
  text-align: left !important;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 149, 0, 0.1);
  border: 1px solid rgba(255, 149, 0, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-align: left !important;
  width: 100%;
}

.title-line {
  display: block;
  margin-bottom: 0.25rem;
  text-align: left !important;
}

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

.gradient-text {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.free-to-play {
  font-size: 0.85em;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  max-width: 540px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  text-align: left !important;
  align-self: flex-start;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.stat-counter {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(255, 149, 0, 0.4);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 50px rgba(255, 149, 0, 0.5);
}

.btn-hero-primary svg {
  width: 20px;
  height: 20px;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--color-text);
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Hero YouTube Video */
.hero-video {
  margin-top: 1.5rem;
  width: 100%;
  max-width: 640px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--color-border);
}

.hero-video iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Hero CTA below video */
.hero-section .hero-cta {
  margin-top: 1.5rem;
}

/* Section Styling */
.section-header {
  margin-bottom: 2.5rem;
}

.section-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
}

/* Features Section */
.features-section {
  padding: 3rem 0;
}

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

.feature-card {
  padding: 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(255, 149, 0, 0.3);
  transform: translateY(-4px);
}

.feature-card.highlight {
  background: var(--gradient-card), var(--color-bg-card);
  border-color: rgba(255, 149, 0, 0.2);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* How It Works Section */
.how-section {
  padding: 3rem 0;
}

.steps-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.step-card {
  flex: 1;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
}

.step-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.step-card h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--color-primary);
  opacity: 0.5;
}

/* Social Proof Section */
.social-section {
  padding: 2rem 0;
}

.testimonial-card {
  padding: 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: rgba(255, 149, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.testimonial-author strong {
  display: block;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.live-activity {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 100px;
  font-size: 0.85rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.live-text {
  color: var(--color-success);
  font-weight: 500;
}

/* Final CTA Section */
.final-cta-section {
  position: relative;
  padding: 4rem 2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  text-align: center;
  margin: 2rem 0;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 149, 0, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
}

.final-cta-section p {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  position: relative;
}

.btn-final-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: var(--gradient-primary);
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-glow);
}

.btn-final-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 80px rgba(255, 149, 0, 0.5);
}

.cta-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  padding: 0.25rem 0.6rem;
  background: var(--color-success);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: 100px;
  text-transform: uppercase;
}

/* Auth Card */
.auth-card {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
}

/* Standalone auth pages (reset / new password) */
.auth-standalone {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-standalone-container {
  width: 100%;
  max-width: 460px;
}

.auth-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.logo-icon {
  font-size: 1.75rem;
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Beta version badge for login page */
.auth-logo .beta-badge {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
  margin-left: 0.5rem;
}

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

/* Auth Tabs */
.auth-tabs {
  position: relative;
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 1.5rem;
}

.auth-tabs .tab {
  flex: 1;
  padding: 0.75rem;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.auth-tabs .tab.active {
  color: var(--color-text);
}

.tab-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: rgba(255, 149, 0, 0.15);
  border: 1px solid rgba(255, 149, 0, 0.3);
  border-radius: var(--radius-sm);
  transition: transform 0.3s ease;
}

/* Form Styling */
.input-group {
  margin-bottom: 1rem;
}

.input-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.input-group .optional {
  font-weight: 400;
  opacity: 0.6;
}

.input-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.input-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 149, 0, 0.1);
}

/* Primary Button */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  background: var(--gradient-primary);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 149, 0, 0.4);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.btn-register {
  position: relative;
  overflow: hidden;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

/* OAuth Section */
.oauth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}

.oauth-divider::before,
.oauth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.oauth-divider span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.oauth {
  display: flex;
  gap: 0.75rem;
}

.btn-oauth {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-oauth:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Form Footer */
.form-footer {
  text-align: center;
  margin-top: 1rem;
}

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

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

.terms-hint {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 1rem;
}

.terms-hint a {
  color: var(--color-text);
  text-decoration: underline;
}

/* Error & Success Messages */
.error {
  padding: 0.875rem 1rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md);
  color: var(--color-error);
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
  animation: shake 0.4s ease;
}

.error:empty {
  display: none;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

.success-message {
  padding: 0.875rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  color: var(--color-success);
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

.success-message:empty {
  display: none;
}

/* Security Badges */
.security-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.security-badges span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .landing-container {
    grid-template-columns: 1fr 380px;
    gap: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .landing-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }
  
  .auth-sidebar {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  
  .auth-sticky {
    position: static;
  }
  
  .hero-section {
    text-align: left !important;
    padding: 1.5rem 0 2rem;
    align-items: flex-start !important;
  }
  
  .hero-title {
    text-align: left !important;
  }
  
  .hero-subtitle {
    margin-left: 0;
    margin-right: auto;
    text-align: left !important;
    align-self: flex-start;
  }
  
  .hero-stats {
    justify-content: flex-start;
  }
  
  .hero-cta {
    justify-content: flex-start;
    align-self: flex-start;
  }
  
  .section-header {
    text-align: center;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Disable heavy animations on tablet */
  .landing-page::before {
    animation: none;
    opacity: 0.5;
  }
}

@media (max-width: 768px) {
  .landing-container {
    padding: 1rem;
    gap: 1.5rem;
  }
  
  .landing-content {
    padding: 0;
  }
  
  .hero-section {
    padding: 1rem 0 1.5rem;
  }
  
  .hero-badge {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
  
  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-video {
    margin-top: 1.5rem;
    max-width: 100%;
  }

  .hero-stats {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .stat-value {
    font-size: 1.25rem;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .features-section,
  .how-section,
  .social-section {
    padding: 1.5rem 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .feature-card {
    padding: 1.25rem;
  }
  
  .feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  
  .feature-title {
    font-size: 0.9rem;
  }
  
  .feature-desc {
    font-size: 0.85rem;
  }
  
  .steps-container {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .step-card {
    padding: 1.25rem;
  }
  
  .step-number {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .step-card h3 {
    font-size: 0.9rem;
  }
  
  .step-card p {
    font-size: 0.8rem;
  }
  
  .step-arrow {
    transform: rotate(90deg);
    font-size: 1.25rem;
  }
  
  .testimonial-card {
    padding: 1.25rem;
  }
  
  .testimonial-content p {
    font-size: 0.95rem;
  }
  
  .auth-card {
    padding: 1.25rem;
    border-radius: var(--radius-lg);
  }
  
  .auth-header {
    margin-bottom: 1rem;
  }
  
  .auth-logo {
    gap: 0.4rem;
  }
  
  .logo-icon {
    font-size: 1.5rem;
  }
  
  .logo-text {
    font-size: 1.1rem;
  }
  
  .auth-tagline {
    font-size: 0.8rem;
  }
  
  .auth-tabs {
    margin-bottom: 1rem;
  }
  
  .auth-tabs .tab {
    padding: 0.6rem;
    font-size: 0.85rem;
  }
  
  .input-group {
    margin-bottom: 0.75rem;
  }
  
  .input-group label {
    font-size: 0.8rem;
    margin-bottom: 0.35rem;
  }
  
  .input-group input {
    padding: 0.75rem 0.875rem;
    font-size: 16px; /* Prevents zoom on iOS */
  }
  
  .btn-primary {
    padding: 0.875rem;
    font-size: 0.9rem;
  }
  
  .oauth-divider {
    margin: 1rem 0;
  }
  
  .oauth-divider span {
    font-size: 0.7rem;
  }
  
  .oauth {
    gap: 0.5rem;
  }
  
  .btn-oauth {
    padding: 0.65rem;
    font-size: 0.8rem;
  }
  
  .final-cta-section {
    padding: 2.5rem 1.5rem;
    margin: 1rem 0;
    border-radius: var(--radius-lg);
  }
  
  .final-cta-section h2 {
    font-size: 1.25rem;
  }
  
  .final-cta-section p {
    font-size: 0.9rem;
  }
  
  .btn-final-cta {
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
  }
  
  /* Disable particle field on mobile */
  .particle-field {
    display: none;
  }
  
  /* Simplify background on mobile */
  .landing-page::before {
    animation: none;
    background: 
      radial-gradient(circle at 50% 0%, rgba(255, 149, 0, 0.15) 0%, transparent 50%);
  }
}

@media (max-width: 480px) {
  .landing-container {
    padding: 0.75rem;
    gap: 1rem;
  }
  
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-stats {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  
  .stat-counter {
    flex: 0 0 calc(33.33% - 0.5rem);
    text-align: center;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
  }
  
  .section-title {
    font-size: 1.1rem;
  }
  
  .oauth {
    flex-direction: column;
  }
  
  .security-badges {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  
  .auth-card {
    padding: 1rem;
  }
  
  .auth-tabs .tab {
    padding: 0.5rem;
    font-size: 0.8rem;
  }
  
  .input-group input {
    padding: 0.7rem 0.75rem;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.35rem;
  }
  
  .hero-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.6rem;
  }
  
  .stat-value {
    font-size: 1.1rem;
  }
  
  .stat-label {
    font-size: 0.65rem;
  }
  
  .feature-card {
    padding: 1rem;
  }
  
  .step-card {
    padding: 1rem;
  }
  
  .step-number {
    font-size: 1.75rem;
  }
}

/* Fix for iOS safe areas */
@supports (padding: max(0px)) {
  .landing-container {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }
}

/* Animation Utilities */
.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hidden panels */
[hidden] {
  display: none !important;
}

/* ==========================================================
   Distribution Pools Section
   ========================================================== */
.distribution-section {
  margin: 3rem 0;
}

.distribution-pools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pool-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pool-icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.pool-token-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.pool-eur-icon {
  font-size: 1.5rem;
  font-weight: 700;
  color: #10b981;
}

.pool-timer-icon {
  font-size: 1.5rem;
}

.pool-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

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

.pool-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.pool-tlrpg .pool-value {
  color: #ffd700;
}

.pool-eur .pool-value {
  color: #10b981;
}

.pool-subtext {
  font-size: 0.65rem;
  color: var(--color-text-muted);
}

.pool-glow {
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  pointer-events: none;
}

.pool-glow-gold {
  background: #ffd700;
}

.pool-glow-green {
  background: #10b981;
}

/* Timer Display */
.timer-display {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-sm);
  min-width: 40px;
}

.timer-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.timer-label {
  font-size: 0.55rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
}

.timer-separator {
  font-family: 'Orbitron', sans-serif;
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-top: -0.75rem;
}

/* ==========================================================
   Token Price Section
   ========================================================== */
.token-price-section {
  margin: 3rem 0;
}

.token-price-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  overflow: hidden;
}

.price-display-row {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.price-left {
  flex-shrink: 0;
}

.token-hero-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 60px rgba(16, 185, 129, 0.4);
  animation: token-float 4s ease-in-out infinite;
}

@keyframes token-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.price-right {
  flex: 1;
}

.current-price {
  margin-bottom: 1.5rem;
}

.price-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.price-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #10b981;
  text-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

.price-stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-item .stat-label {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.stat-item .stat-value {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.stat-item .stat-value.positive {
  color: #10b981;
}

.price-chart-container {
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

.price-dot-pulse {
  animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { r: 5; opacity: 1; }
  50% { r: 8; opacity: 0.7; }
}

.price-formula {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(16, 185, 129, 0.05);
  border-radius: var(--radius-md);
  flex-wrap: wrap;
}

.formula-headline {
  font-size: 1rem;
  font-weight: 600;
  color: #10b981;
  width: 100%;
  text-align: center;
  margin-bottom: 0.25rem;
}

.price-formula code {
  font-family: 'Orbitron', monospace;
  font-size: 0.9rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
}

.formula-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ==========================================================
   Ways to Earn Section
   ========================================================== */
.ways-to-earn-section {
  margin: 3rem 0;
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.way-card {
  position: relative;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: way-slide-in 0.6s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

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

.way-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 149, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.way-card-highlight {
  background: linear-gradient(145deg, rgba(255, 149, 0, 0.1) 0%, transparent 50%);
  border-color: rgba(255, 149, 0, 0.2);
}

.way-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
}

.way-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.way-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.way-description {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.way-glow {
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

/* Coming Soon Section */
.coming-soon-section {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.coming-soon-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.coming-soon-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.coming-soon-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.coming-soon-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-primary);
}

.cs-icon {
  font-size: 1.5rem;
}

.cs-title {
  font-weight: 600;
  color: #fff;
}

.cs-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  background: rgba(255, 149, 0, 0.2);
  color: var(--color-primary);
  border-radius: 4px;
}

/* ==========================================================
   Responsive - Distribution & Token Price
   ========================================================== */
@media (max-width: 900px) {
  .distribution-pools-grid {
    grid-template-columns: 1fr;
  }
  
  .price-display-row {
    flex-direction: column;
    text-align: center;
  }
  
  .token-hero-image {
    width: 120px;
    height: 120px;
  }
  
  .price-value {
    font-size: 2rem;
  }
  
  .price-stats {
    justify-content: center;
  }
  
  .ways-grid {
    grid-template-columns: 1fr;
  }
  
  .coming-soon-grid {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .pool-card {
    padding: 1rem;
  }
  
  .pool-icon-wrapper {
    width: 48px;
    height: 48px;
  }
  
  .pool-token-icon {
    width: 36px;
    height: 36px;
  }
  
  .pool-value {
    font-size: 1.25rem;
  }
  
  .timer-unit {
    padding: 0.4rem 0.5rem;
    min-width: 40px;
  }
  
  .timer-value {
    font-size: 1rem;
  }
  
  .token-hero-image {
    width: 100px;
    height: 100px;
  }
  
  .price-value {
    font-size: 1.75rem;
  }
  
  .way-card {
    padding: 1.25rem;
  }
  
  .way-icon {
    font-size: 2rem;
  }
  
  .way-title {
    font-size: 1rem;
  }
  
  .way-description {
    font-size: 0.85rem;
  }
}