/*
 * Livora Pro - Main Stylesheet
 * Premium Video Calling & Creator Platform
 * Theme: Dark Futuristic, Neon Gradients, Glassmorphism
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Colors */
  --bg-color: #0F0F1A;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.2);

  --color-primary: #792CA2;
  --color-secondary: #FF62BB;
  --color-accent: #FF52A0;
  
  --text-primary: #FFFFFF;
  --text-secondary: #A0A0C0;
  --text-muted: #626280;

  --color-online: #00FF7F;
  --color-offline: #808080;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --grad-accent: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  --grad-dark: linear-gradient(180deg, #16162a 0%, #0F0F1A 100%);
  --grad-glow: radial-gradient(circle, rgba(121, 44, 162, 0.15) 0%, rgba(255, 98, 187, 0.02) 60%, transparent 100%);

  /* Layout & Spacing */
  --header-height: 80px;
  --container-max-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Shadows & Effects */
  --shadow-neon: 0 8px 32px 0 rgba(121, 44, 162, 0.25);
  --shadow-accent: 0 8px 32px 0 rgba(255, 98, 187, 0.25);
  --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.5);
  --glass-backdrop: blur(16px) saturate(180%);
}

/* --- Resets & Base Styles --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--grad-glow);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}

/* --- Scroll Progress Bar --- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--grad-accent);
  z-index: 1001;
  width: 0%;
  transition: width 0.1s ease-out;
}

/* --- Loading Animation --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg-color);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--border-color);
  border-top-color: var(--color-secondary);
  border-bottom-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

/* --- Typography Utilities --- */
.text-gradient {
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
  padding: 0 20px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* --- Container --- */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-heading);
  gap: 8px;
}

.btn-primary {
  background: var(--grad-primary);
  box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(121, 44, 162, 0.4);
}

.btn-secondary {
  background: var(--grad-accent);
  box-shadow: var(--shadow-accent);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 98, 187, 0.4);
}

.btn-outline {
  border: 1.5px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  border-color: var(--color-secondary);
  background: rgba(255, 98, 187, 0.05);
  transform: translateY(-3px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid var(--border-color);
  backdrop-filter: var(--glass-backdrop);
}

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

/* --- Header & Navigation --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}

header.sticky {
  background: rgba(15, 15, 26, 0.75);
  backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid var(--border-color);
  height: 70px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-neon);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  text-shadow: 0 0 10px rgba(255, 98, 187, 0.5);
}

.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Hamburger menu button */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Nav Open Animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 40px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 15%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 98, 187, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.8rem;
  margin-bottom: 24px;
  line-height: 1.1;
  font-weight: 800;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 600px;
}

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

/* Hero Right: 3D Phone and Floating Graphics */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-container {
  position: relative;
  width: 320px;
  height: 640px;
  border-radius: 40px;
  background: #000;
  padding: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 40px rgba(121, 44, 162, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: float 6s ease-in-out infinite;
}

.mockup-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: var(--bg-color);
  position: relative;
}

.mockup-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating Elements around Hero */
.floating-element {
  position: absolute;
  pointer-events: none;
  animation: float 4s ease-in-out infinite;
}

.floating-coin-1 {
  top: 15%;
  left: 0;
  animation-delay: 0.5s;
}

.floating-coin-2 {
  bottom: 20%;
  right: -5%;
  animation-delay: 1.5s;
}

.floating-users-indicator {
  top: 60%;
  left: -20px;
  background: rgba(15, 15, 26, 0.7);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-color);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation-delay: 1s;
  box-shadow: var(--shadow-neon);
}

.user-pulse {
  width: 10px;
  height: 10px;
  background: var(--color-online);
  border-radius: 50%;
  position: relative;
}

.user-pulse::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  animation: pulse 1.5s infinite;
}

/* --- Stats Section --- */
.stats {
  padding: 80px 0;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: var(--glass-backdrop);
}

.stat-card:hover {
  border-color: var(--color-secondary);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3.2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 8px;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 500;
}

/* --- Features Grid --- */
.features {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: var(--glass-backdrop);
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-secondary);
  box-shadow: 0 10px 30px -10px rgba(255, 98, 187, 0.2);
  background: var(--bg-card-hover);
}

.feature-icon-container {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(121, 44, 162, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-secondary);
  border: 1px solid rgba(255, 98, 187, 0.2);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

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

/* --- How It Works: Timeline --- */
.how-it-works {
  padding: 100px 0;
  background: radial-gradient(circle at center, rgba(121, 44, 162, 0.05) 0%, transparent 80%);
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--border-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--bg-color);
  border: 4px solid var(--color-secondary);
  top: 15px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 10px var(--color-secondary);
}

.left {
  left: 0;
}

.right {
  left: 50%;
}

.right::after {
  left: -10px;
}

.timeline-content {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  position: relative;
  border-radius: var(--radius-md);
  backdrop-filter: var(--glass-backdrop);
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.timeline-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.step-number {
  position: absolute;
  top: -15px;
  font-size: 2.2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: rgba(255, 98, 187, 0.2);
}

.left .step-number {
  right: 20px;
}

.right .step-number {
  left: 20px;
}

/* --- Creators Carousel/Grid --- */
.creators {
  padding: 100px 0;
}

.creators-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

.creator-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: var(--glass-backdrop);
}

.creator-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-neon);
}

.creator-img-wrap {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
}

.creator-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.creator-card:hover .creator-img-wrap img {
  transform: scale(1.08);
}

.creator-status {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(15, 15, 26, 0.75);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--border-color);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-dot.online {
  background-color: var(--color-online);
  box-shadow: 0 0 8px var(--color-online);
}

.status-dot.offline {
  background-color: var(--color-offline);
}

.creator-rating {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(15, 15, 26, 0.75);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFA500;
  border: 1px solid var(--border-color);
}

.creator-info {
  padding: 24px;
}

.creator-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.creator-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.creator-country {
  font-size: 1.2rem;
  line-height: 1;
}

.creator-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.creator-card .btn {
  width: 100%;
}

/* --- Coin Packages Section --- */
.coins {
  padding: 100px 0;
  background: radial-gradient(circle at bottom, rgba(255, 98, 187, 0.05) 0%, transparent 70%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: var(--glass-backdrop);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-secondary);
  background: var(--bg-card-hover);
}

.pricing-card.popular {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-neon);
  background: linear-gradient(180deg, rgba(121, 44, 162, 0.1) 0%, rgba(15, 15, 26, 0.95) 100%);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-accent);
  color: white;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-accent);
  white-space: nowrap;
}

.coin-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.coin-amount {
  font-size: 1.1rem;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 24px;
}

.price-tag {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  margin-bottom: 24px;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

/* --- App Screenshots Slider --- */
.screenshots {
  padding: 100px 0;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  padding: 40px 0;
}

.slider-track-wrap {
  width: 100%;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 30px;
}

.slider-slide {
  flex: 0 0 240px;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
  transition: all 0.5s ease;
  position: relative;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-slide.active {
  transform: scale(1.05);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-neon);
}

/* Slider Navigation Buttons */
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.1);
}

/* --- Testimonials --- */
.testimonials {
  padding: 100px 0;
  background: radial-gradient(circle at top, rgba(121, 44, 162, 0.03) 0%, transparent 60%);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 20px;
  box-sizing: border-box;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: var(--glass-backdrop);
  text-align: center;
}

.review-stars {
  color: #FFA500;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.testimonial-card p {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.user-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-secondary);
}

.user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.user-info {
  text-align: left;
}

.user-name {
  font-weight: 700;
  font-size: 1rem;
}

.user-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* --- FAQ Accordion --- */
.faq {
  padding: 100px 0;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: var(--glass-backdrop);
}

.accordion-header {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: rgba(255, 255, 255, 0.02);
}

.accordion-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  background: var(--color-secondary);
  color: white;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.accordion-item.active .accordion-body {
  max-height: 1000px; /* high value for animation buffer */
  padding: 0 24px 24px 24px;
  border-color: var(--border-color);
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0), padding 0.3s ease;
}

/* --- Download CTA Banner --- */
.download-cta {
  padding: 100px 0;
}

.cta-banner {
  background: linear-gradient(135deg, rgba(121, 44, 162, 0.2) 0%, rgba(255, 98, 187, 0.05) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: var(--glass-backdrop);
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 98, 187, 0.2) 0%, transparent 70%);
  top: -150px;
  left: -150px;
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* --- Interactive Forms --- */
.form-group {
  margin-bottom: 24px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 1rem;
  color: white;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--color-secondary);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 15px rgba(255, 98, 187, 0.15);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.file-upload-wrapper {
  position: relative;
  width: 100%;
}

.file-upload-box {
  border: 2px dashed var(--border-color);
  background: rgba(255, 255, 255, 0.01);
  padding: 30px;
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload-box:hover {
  border-color: var(--color-secondary);
  background: rgba(255, 98, 187, 0.02);
}

.file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  font-size: 2rem;
  color: var(--color-secondary);
  margin-bottom: 12px;
}

.upload-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* --- Floating Elements --- */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-whatsapp:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.scroll-top-btn {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: rgba(15, 15, 26, 0.8);
  backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  color: white;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-5px);
}

/* --- Footer --- */
footer {
  background-color: #0b0b14;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 30px 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(121, 44, 162, 0.08) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 24px;
}

.footer-col p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-icon:hover {
  border-color: var(--color-secondary);
  background: rgba(255, 98, 187, 0.1);
  transform: translateY(-3px);
  color: var(--color-secondary);
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  position: relative;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--grad-accent);
  border-radius: 2px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: 5px;
}

/* Newsletter Subscription */
.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form .form-control {
  border-radius: var(--radius-full);
  padding: 12px 20px;
}

.newsletter-form .btn {
  padding: 12px 24px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
}

.footer-bottom-links a:hover {
  color: var(--text-secondary);
}

/* --- Internal Pages Base Hero --- */
.page-hero {
  padding: calc(var(--header-height) + 60px) 0 60px 0;
  text-align: center;
  background: radial-gradient(circle at bottom, rgba(121, 44, 162, 0.08) 0%, transparent 60%);
  border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Creators Page: Benefits & Registration --- */
.benefits {
  padding: 100px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  gap: 24px;
  backdrop-filter: var(--glass-backdrop);
}

.benefit-icon {
  font-size: 2.5rem;
  line-height: 1;
  color: var(--color-secondary);
}

.benefit-info h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.benefit-info p {
  color: var(--text-secondary);
}

.creator-flow {
  padding: 80px 0;
  background: var(--grad-dark);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.flow-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.flow-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 20px auto;
  box-shadow: var(--shadow-neon);
}

.flow-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.flow-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Registration Section & Form */
.registration {
  padding: 100px 0;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 50px;
  backdrop-filter: var(--glass-backdrop);
  box-shadow: var(--shadow-card);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* --- Features Page: Deep Dive --- */
.features-detail-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}

.features-detail-section:nth-child(even) {
  background: rgba(255, 255, 255, 0.01);
}

.feature-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-detail-grid.reverse {
  direction: rtl;
}

.feature-detail-grid.reverse .feature-detail-content {
  direction: ltr;
}

.feature-detail-content h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.feature-detail-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.feature-detail-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
}

.feature-detail-list svg {
  color: var(--color-secondary);
  flex-shrink: 0;
}

.feature-visual-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: var(--glass-backdrop);
  text-align: center;
  box-shadow: var(--shadow-card);
}

/* --- About Page: Timeline & Vision --- */
.about-mission {
  padding: 100px 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mission-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: var(--glass-backdrop);
}

.mission-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
}

.mission-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.mission-card p {
  color: var(--text-secondary);
}

.about-story {
  padding: 100px 0;
  border-top: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.01);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-content h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.story-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-card);
}

/* --- Contact Page --- */
.contact-section {
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  display: flex;
  gap: 20px;
  backdrop-filter: var(--glass-backdrop);
}

.contact-info-icon {
  font-size: 2rem;
  color: var(--color-secondary);
  line-height: 1;
}

.contact-info-content h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.contact-info-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-info-content a:hover {
  color: var(--color-secondary);
}

/* --- Legal Pages CSS --- */
.legal-container {
  padding: calc(var(--header-height) + 60px) 0 100px 0;
  max-width: 900px;
  margin: 0 auto;
}

.legal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 50px;
  backdrop-filter: var(--glass-backdrop);
}

.legal-card h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.legal-meta {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.legal-content h2 {
  font-size: 1.6rem;
  margin: 30px 0 15px 0;
}

.legal-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 1rem;
}

.legal-content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.legal-content li {
  margin-bottom: 8px;
}

/* --- Animations & Keyframes --- */

/* Float animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Spin animation */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Pulse animation */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 255, 127, 0.7);
  }
  70% {
    transform: scale(1.3);
    box-shadow: 0 0 0 8px rgba(0, 255, 127, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(0, 255, 127, 0);
  }
}

/* Custom Animate-on-Scroll CSS Classes */
.reveal {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.reveal-active {
  opacity: 1;
}

.reveal.fade-in {
  transition: opacity 0.8s ease;
}

.reveal.slide-up {
  transform: translateY(40px);
}

.reveal.slide-up.reveal-active {
  transform: translateY(0);
}

.reveal.slide-left {
  transform: translateX(-50px);
}

.reveal.slide-left.reveal-active {
  transform: translateX(0);
}

.reveal.slide-right {
  transform: translateX(50px);
}

.reveal.slide-right.reveal-active {
  transform: translateX(0);
}

.reveal.scale-in {
  transform: scale(0.9);
}

.reveal.scale-in.reveal-active {
  transform: scale(1);
}

/* --- Media Queries (Mobile First Responsive Design) --- */

/* Medium Devices (Tablets, 768px and up) */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::after {
    left: 31px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-item::after {
    left: 21px;
  }

  .right {
    left: 0%;
  }

  .left::after, .right::after {
    left: 21px;
  }

  .left .step-number, .right .step-number {
    left: 20px;
    right: auto;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .feature-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-detail-grid.reverse {
    direction: ltr;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Navigation specific responsive break */
@media (max-width: 850px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(10, 10, 18, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border-color);
    flex-direction: column;
    padding: 100px 40px 40px 40px;
    transition: right 0.4s ease;
    z-index: 1005;
  }

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

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    font-size: 1.2rem;
    display: block;
    padding: 10px 0;
  }

  .header-actions {
    margin-right: 40px;
  }
}

/* Small Devices (Mobile, 576px and down) */
@media (max-width: 575px) {
  .hero-content h1 {
    font-size: 2.3rem;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
  }

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

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

  .pricing-card.popular {
    transform: none;
  }

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

  .header-actions .btn-primary {
    display: none; /* Hide Download on mobile header to save space */
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 30px 20px;
  }

  .cta-banner h2 {
    font-size: 2.2rem;
  }

  .cta-btns {
    flex-direction: column;
    gap: 15px;
  }

  .cta-btns .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .flow-grid {
    grid-template-columns: 1fr;
  }
  
  .legal-card {
    padding: 30px 20px;
  }
  
  .legal-card h1 {
    font-size: 2rem;
  }
}

/* --- Touch Active States & Mobile Feedback --- */
input, button, select, textarea, a, .btn, .slider-btn, .accordion-header, .social-icon {
  -webkit-tap-highlight-color: transparent;
}

@media (hover: none) {
  .btn:active {
    transform: scale(0.95) translateY(0) !important;
    opacity: 0.9;
  }
  .slider-btn:active {
    background: var(--color-primary) !important;
    transform: scale(0.9) !important;
  }
  .social-icon:active {
    border-color: var(--color-secondary) !important;
    background: rgba(255, 98, 187, 0.2) !important;
  }
  .pricing-card:active, .feature-card:active, .creator-card:active {
    border-color: var(--color-secondary) !important;
    background: var(--bg-card-hover) !important;
  }
  .accordion-header:active {
    background: rgba(255, 255, 255, 0.05) !important;
  }
}

/* Touch targets optimization */
.nav-links a {
  padding: 12px 0; /* Increase touch target */
}

.header-actions .btn {
  padding: 10px 24px;
}

/* --- Simulated Payment Checkout Modal --- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(12px);
  z-index: 1500;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  backdrop-filter: var(--glass-backdrop);
  box-shadow: var(--shadow-neon);
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 16px;
}

.modal-header h3 {
  font-size: 1.5rem;
}

.close-modal-btn {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.close-modal-btn:hover {
  color: var(--text-primary);
}

.payment-package-info {
  background: rgba(121, 44, 162, 0.1);
  border: 1px solid rgba(121, 44, 162, 0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.payment-package-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.payment-package-price {
  font-weight: 800;
  color: var(--color-secondary);
  font-size: 1.3rem;
}

.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.payment-method-card {
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.01);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.payment-method-card:hover {
  border-color: var(--color-secondary);
  background: rgba(255, 98, 187, 0.02);
}

.payment-method-card.selected {
  border-color: var(--color-secondary);
  background: linear-gradient(135deg, rgba(121, 44, 162, 0.2) 0%, rgba(255, 98, 187, 0.1) 100%);
  box-shadow: 0 0 15px rgba(255, 98, 187, 0.15);
}

.payment-method-icon {
  font-size: 1.8rem;
}

.payment-method-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.payment-form-section {
  display: none;
  animation: fadeIn 0.4s ease;
}

.payment-form-section.active {
  display: block;
}

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

.upi-qr-box {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  width: 180px;
  height: 180px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Payment Loading Spinner Overlay */
.payment-loading {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  text-align: center;
}

.payment-loading.active {
  display: flex;
}

.payment-success-screen {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  text-align: center;
  animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.payment-success-screen.active {
  display: flex;
}

@keyframes scaleUp {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 255, 127, 0.1);
  border: 3px solid var(--color-online);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-online);
  font-size: 3rem;
  margin-bottom: 24px;
  animation: pulseSuccess 1.5s infinite;
}

@keyframes pulseSuccess {
  0% { box-shadow: 0 0 0 0 rgba(0, 255, 127, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(0, 255, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 255, 127, 0); }
}

/* Play store tag styling */
.play-store-compliance {
  border-top: 1px solid var(--border-color);
  margin-top: 40px;
  padding-top: 20px;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: left;
}

.age-gate-badge {
  background: #ff3333;
  color: white;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 800;
  display: inline-block;
  vertical-align: middle;
  margin-left: 8px;
}

/* --- App-Only Creator Registration Styles --- */
.app-apply-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: var(--glass-backdrop);
  box-shadow: var(--shadow-card);
  margin-top: 40px;
}

.apply-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 992px) {
  .apply-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .apply-steps-grid {
    grid-template-columns: 1fr;
  }
}

.apply-step-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.apply-step-box:hover {
  transform: translateY(-5px);
  border-color: var(--color-secondary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.apply-step-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.apply-step-box h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.apply-step-box p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.apply-download-cta {
  border-top: 1px solid var(--border-color);
  padding-top: 40px;
  text-align: center;
}

.apply-download-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.apply-download-cta p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* --- Premium Interactive Micro-Animations --- */

/* Metallic Shimmer Effect for Buttons */
.btn-primary, .btn-secondary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after, .btn-secondary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -150%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: button-shimmer 4s infinite linear;
  pointer-events: none;
}

@keyframes button-shimmer {
  0% {
    left: -150%;
  }
  60% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

/* Active Press / Tap Feedback */
.btn:active {
  transform: scale(0.96) translateY(-1px) !important;
  transition: transform 0.1s ease;
}

/* Dynamic Pulsating Glow for Online Creators */
.status-dot.online {
  animation: status-glow-pulse 2s infinite ease-in-out;
}

@keyframes status-glow-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 127, 0.8);
  }
  70% {
    transform: scale(1.25);
    box-shadow: 0 0 0 8px rgba(0, 255, 127, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 255, 127, 0);
  }
}

/* Breathing Neon Glow Pulse for Primary Buttons */
.btn-primary {
  animation: download-glow-pulse 3s infinite ease-in-out;
}

@keyframes download-glow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(121, 44, 162, 0.4), var(--shadow-neon);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(121, 44, 162, 0), var(--shadow-neon);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(121, 44, 162, 0), var(--shadow-neon);
  }
}

/* Enhanced Glow Hover for Popular Cards */
.pricing-card.popular:hover {
  box-shadow: 0 0 30px rgba(255, 98, 187, 0.35), var(--shadow-neon);
}
