/* ============================================
   AfterUp Marketing Site - Styles
   "הלילה רק מתחיל"
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg-primary: #0A0A0F;
  --bg-secondary: #12121A;
  --bg-card: rgba(255, 255, 255, 0.03);
  --accent-primary: #6C63FF;
  --accent-secondary: #FF2D78;
  --gold: #D4AF37;
  --deep-purple: #2D1B4E;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --gradient-premium: linear-gradient(135deg, #6C63FF, #FF2D78);
  --gradient-gold: linear-gradient(135deg, #D4AF37, #F5D76E);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-glow-purple: 0 0 40px rgba(108, 99, 255, 0.3);
  --shadow-glow-pink: 0 0 40px rgba(255, 45, 120, 0.3);
  --shadow-glow-gold: 0 0 40px rgba(212, 175, 55, 0.3);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Heebo', 'Inter', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--accent-secondary);
}

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

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

.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  background: var(--gradient-premium);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(108, 99, 255, 0.3); }
  50% { box-shadow: 0 0 40px rgba(108, 99, 255, 0.6); }
}

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.stagger-children .animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }
.stagger-children .animate-on-scroll:nth-child(7) { transition-delay: 0.35s; }
.stagger-children .animate-on-scroll:nth-child(8) { transition-delay: 0.4s; }
.stagger-children .animate-on-scroll:nth-child(9) { transition-delay: 0.45s; }
.stagger-children .animate-on-scroll:nth-child(10) { transition-delay: 0.5s; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}

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

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.navbar-logo span {
  background: var(--gradient-premium);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 0 8px rgba(108, 99, 255, 0.4));
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.navbar-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color var(--transition-base);
  position: relative;
}

.navbar-links a:hover {
  color: var(--text-primary);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-premium);
  transition: width var(--transition-base);
}

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

.navbar-cta {
  padding: 8px 24px;
  border-radius: 50px;
  background: var(--gradient-premium);
  color: white !important;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.navbar-cta::after {
  display: none !important;
}

.navbar-cta:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow-purple);
  color: white !important;
}

/* Language toggle */
.lang-toggle-item {
  list-style: none;
}

.lang-toggle {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 6px 14px;
  border-radius: 50px;
  font-family: 'Inter', 'Heebo', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lang-toggle:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: white;
  transform: scale(1.05);
  box-shadow: var(--shadow-glow-purple);
}

/* ─── LTR (English) mode overrides ─── */
body.lang-en {
  font-family: 'Inter', 'Heebo', sans-serif;
  text-align: left;
}

body.lang-en .faq-question {
  text-align: left;
}

body.lang-en .legal-content ul {
  padding-right: 0;
  padding-left: 24px;
}

body.lang-en .legal-table th,
body.lang-en .legal-table td {
  text-align: left;
}

body.lang-en .navbar-links {
  right: auto;
  left: -100%;
  border-left: none;
  border-right: 1px solid var(--glass-border);
}

body.lang-en .navbar-links.active {
  left: 0;
  right: auto;
}

body.lang-en .navbar-links a::after {
  right: auto;
  left: 0;
}

body.lang-en .btn-submit {
  align-self: flex-start;
}

body.lang-en .form-group input,
body.lang-en .form-group textarea,
body.lang-en .form-group select {
  direction: ltr;
}

body.lang-en .company-details td:first-child {
  text-align: left;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  margin: 6px 0;
  transition: var(--transition-base);
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

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

/* Background effects */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 45, 120, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

.bokeh-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(108, 99, 255, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 45, 120, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.04) 0%, transparent 50%);
  z-index: 0;
}

/* Floating bokeh particles */
.bokeh-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.bokeh-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: bokeh-float linear infinite;
}

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

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 24px;
}

/* Hero logo */
.hero-logo {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  border-radius: 50%;
  animation: fade-up 0.8s ease both, float 6s ease-in-out 1s infinite;
  filter: drop-shadow(0 0 40px rgba(108, 99, 255, 0.4)) drop-shadow(0 0 80px rgba(255, 45, 120, 0.2));
}

/* Hero nightlife photo strip */
.hero-photos {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 56px auto 56px;
  max-width: 700px;
  animation: fade-up 0.8s ease both 0.5s;
  opacity: 0;
}

.hero-photo {
  flex: 1;
  max-width: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--glass-border);
  transition: all var(--transition-base);
  position: relative;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.6) 0%, transparent 50%);
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-photo:hover {
  border-color: rgba(108, 99, 255, 0.5);
  box-shadow: var(--shadow-glow-purple);
}

.hero-photo:hover img {
  transform: scale(1.08);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fade-up 0.8s ease both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: #00FF88;
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fade-up 0.8s ease both 0.1s;
  opacity: 0;
}

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

.hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  animation: fade-up 0.8s ease both 0.2s;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-up 0.8s ease both 0.3s;
  opacity: 0;
  margin-top: 40px;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-store-apple {
  background: white;
  color: #0A0A0F;
}

.btn-store-google {
  background: var(--glass-bg);
  color: white;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-store:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-store-icon {
  width: 24px;
  height: 24px;
}

.btn-store-text {
  text-align: start;
  line-height: 1.2;
}

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

.btn-store-text span {
  display: block;
  font-size: 1rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: float 3s ease-in-out infinite;
}

.hero-scroll-indicator svg {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--accent-primary), transparent);
}

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

.feature-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-base);
  overflow: hidden;
  border: 1px solid;
}

/* Unique gradient background + border for each feature card */
.feature-card:nth-child(1) { /* Radar */
  background: linear-gradient(145deg, rgba(108, 99, 255, 0.12) 0%, rgba(108, 99, 255, 0.03) 100%);
  border-color: rgba(108, 99, 255, 0.25);
}
.feature-card:nth-child(1):hover {
  border-color: rgba(108, 99, 255, 0.5);
  box-shadow: 0 0 40px rgba(108, 99, 255, 0.2), inset 0 0 60px rgba(108, 99, 255, 0.05);
}

.feature-card:nth-child(2) { /* Private After */
  background: linear-gradient(145deg, rgba(255, 45, 120, 0.12) 0%, rgba(255, 45, 120, 0.03) 100%);
  border-color: rgba(255, 45, 120, 0.25);
}
.feature-card:nth-child(2):hover {
  border-color: rgba(255, 45, 120, 0.5);
  box-shadow: 0 0 40px rgba(255, 45, 120, 0.2), inset 0 0 60px rgba(255, 45, 120, 0.05);
}

.feature-card:nth-child(3) { /* VIP */
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.03) 100%);
  border-color: rgba(212, 175, 55, 0.3);
}
.feature-card:nth-child(3):hover {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.2), inset 0 0 60px rgba(212, 175, 55, 0.05);
}

.feature-card:nth-child(4) { /* Stories */
  background: linear-gradient(145deg, rgba(0, 200, 255, 0.12) 0%, rgba(0, 200, 255, 0.03) 100%);
  border-color: rgba(0, 200, 255, 0.25);
}
.feature-card:nth-child(4):hover {
  border-color: rgba(0, 200, 255, 0.5);
  box-shadow: 0 0 40px rgba(0, 200, 255, 0.2), inset 0 0 60px rgba(0, 200, 255, 0.05);
}

.feature-card:nth-child(5) { /* Ping */
  background: linear-gradient(145deg, rgba(0, 255, 136, 0.12) 0%, rgba(0, 255, 136, 0.03) 100%);
  border-color: rgba(0, 255, 136, 0.25);
}
.feature-card:nth-child(5):hover {
  border-color: rgba(0, 255, 136, 0.5);
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.2), inset 0 0 60px rgba(0, 255, 136, 0.05);
}

.feature-card:nth-child(6) { /* Cards */
  background: linear-gradient(145deg, rgba(255, 152, 0, 0.12) 0%, rgba(255, 152, 0, 0.03) 100%);
  border-color: rgba(255, 152, 0, 0.25);
}
.feature-card:nth-child(6):hover {
  border-color: rgba(255, 152, 0, 0.5);
  box-shadow: 0 0 40px rgba(255, 152, 0, 0.2), inset 0 0 60px rgba(255, 152, 0, 0.05);
}

.feature-card:nth-child(7) { /* Mole */
  background: linear-gradient(145deg, rgba(76, 175, 80, 0.12) 0%, rgba(76, 175, 80, 0.03) 100%);
  border-color: rgba(76, 175, 80, 0.25);
}
.feature-card:nth-child(7):hover {
  border-color: rgba(76, 175, 80, 0.5);
  box-shadow: 0 0 40px rgba(76, 175, 80, 0.2), inset 0 0 60px rgba(76, 175, 80, 0.05);
}

.feature-card:nth-child(8) { /* Chat */
  background: linear-gradient(145deg, rgba(0, 150, 255, 0.12) 0%, rgba(0, 150, 255, 0.03) 100%);
  border-color: rgba(0, 150, 255, 0.25);
}
.feature-card:nth-child(8):hover {
  border-color: rgba(0, 150, 255, 0.5);
  box-shadow: 0 0 40px rgba(0, 150, 255, 0.2), inset 0 0 60px rgba(0, 150, 255, 0.05);
}

.feature-card:nth-child(9) { /* Discover */
  background: linear-gradient(145deg, rgba(233, 30, 99, 0.12) 0%, rgba(233, 30, 99, 0.03) 100%);
  border-color: rgba(233, 30, 99, 0.25);
}
.feature-card:nth-child(9):hover {
  border-color: rgba(233, 30, 99, 0.5);
  box-shadow: 0 0 40px rgba(233, 30, 99, 0.2), inset 0 0 60px rgba(233, 30, 99, 0.05);
}

.feature-card:nth-child(10) { /* AfterCoins */
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.12) 0%, rgba(108, 99, 255, 0.08) 100%);
  border-color: rgba(212, 175, 55, 0.25);
}
.feature-card:nth-child(10):hover {
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.2), inset 0 0 60px rgba(212, 175, 55, 0.05);
}

/* Top glow bar on hover */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 3px;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:nth-child(1)::before { background: linear-gradient(90deg, transparent, #6C63FF, transparent); }
.feature-card:nth-child(2)::before { background: linear-gradient(90deg, transparent, #FF2D78, transparent); }
.feature-card:nth-child(3)::before { background: linear-gradient(90deg, transparent, #D4AF37, transparent); }
.feature-card:nth-child(4)::before { background: linear-gradient(90deg, transparent, #00C8FF, transparent); }
.feature-card:nth-child(5)::before { background: linear-gradient(90deg, transparent, #00FF88, transparent); }
.feature-card:nth-child(6)::before { background: linear-gradient(90deg, transparent, #FF9800, transparent); }
.feature-card:nth-child(7)::before { background: linear-gradient(90deg, transparent, #4CAF50, transparent); }
.feature-card:nth-child(8)::before { background: linear-gradient(90deg, transparent, #0096FF, transparent); }
.feature-card:nth-child(9)::before { background: linear-gradient(90deg, transparent, #E91E63, transparent); }
.feature-card:nth-child(10)::before { background: linear-gradient(90deg, transparent, #D4AF37, transparent); }

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card:hover::before {
  opacity: 1;
}

/* Corner glow orb */
.feature-card::after {
  content: '';
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.4;
  filter: blur(40px);
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.feature-card:nth-child(1)::after { background: #6C63FF; }
.feature-card:nth-child(2)::after { background: #FF2D78; }
.feature-card:nth-child(3)::after { background: #D4AF37; }
.feature-card:nth-child(4)::after { background: #00C8FF; }
.feature-card:nth-child(5)::after { background: #00FF88; }
.feature-card:nth-child(6)::after { background: #FF9800; }
.feature-card:nth-child(7)::after { background: #4CAF50; }
.feature-card:nth-child(8)::after { background: #0096FF; }
.feature-card:nth-child(9)::after { background: #E91E63; }
.feature-card:nth-child(10)::after { background: #D4AF37; }

.feature-card:hover::after {
  opacity: 0.7;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.feature-icon.icon-radar {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.25), rgba(108, 99, 255, 0.08));
  color: #6C63FF;
  box-shadow: 0 0 20px rgba(108, 99, 255, 0.15);
}

.feature-icon.icon-party {
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.25), rgba(255, 45, 120, 0.08));
  color: #FF2D78;
  box-shadow: 0 0 20px rgba(255, 45, 120, 0.15);
}

.feature-icon.icon-vip {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.08));
  color: #D4AF37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.feature-icon.icon-stories {
  background: linear-gradient(135deg, rgba(0, 200, 255, 0.25), rgba(0, 200, 255, 0.08));
  color: #00C8FF;
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.15);
}

.feature-icon.icon-ping {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.25), rgba(0, 255, 136, 0.08));
  color: #00FF88;
  box-shadow: 0 0 20px rgba(0, 255, 136, 0.15);
}

.feature-icon.icon-cards {
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.25), rgba(255, 152, 0, 0.08));
  color: #FF9800;
  box-shadow: 0 0 20px rgba(255, 152, 0, 0.15);
}

.feature-icon.icon-mole {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.25), rgba(76, 175, 80, 0.08));
  color: #4CAF50;
  box-shadow: 0 0 20px rgba(76, 175, 80, 0.15);
}

.feature-icon.icon-chat {
  background: linear-gradient(135deg, rgba(0, 150, 255, 0.25), rgba(0, 150, 255, 0.08));
  color: #0096FF;
  box-shadow: 0 0 20px rgba(0, 150, 255, 0.15);
}

.feature-icon.icon-discover {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.25), rgba(233, 30, 99, 0.08));
  color: #E91E63;
  box-shadow: 0 0 20px rgba(233, 30, 99, 0.15);
}

.feature-icon.icon-coins {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.08));
  color: #D4AF37;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

/* Feature icons with real images */
.feature-icon-image {
  overflow: hidden;
  padding: 0;
}

.feature-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.feature-icon-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.feature-card:nth-child(1) h3 { color: #9590FF; }
.feature-card:nth-child(2) h3 { color: #FF5C94; }
.feature-card:nth-child(3) h3 { color: #E8C655; }
.feature-card:nth-child(4) h3 { color: #40D8FF; }
.feature-card:nth-child(5) h3 { color: #55FFAA; }
.feature-card:nth-child(6) h3 { color: #FFB040; }
.feature-card:nth-child(7) h3 { color: #66CC6A; }
.feature-card:nth-child(8) h3 { color: #44AAFF; }
.feature-card:nth-child(9) h3 { color: #FF4081; }
.feature-card:nth-child(10) h3 { color: #E8C655; }

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Feature card screenshot background */
.feature-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  z-index: 0;
  opacity: 0.18;
  transition: opacity var(--transition-base);
  pointer-events: none;
  overflow: hidden;
}

.feature-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  mask-image: linear-gradient(to right, rgba(0,0,0,0.7) 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.feature-card:hover .feature-card-bg {
  opacity: 0.3;
}

/* ============================================
   CARDS SECTION (Collectible cards)
   ============================================ */
.cards-section {
  position: relative;
  overflow: hidden;
}

.cards-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
  border-radius: 50%;
}

.cards-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  perspective: 1200px;
}

.card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: all var(--transition-base);
}

.card-item:hover {
  transform: translateY(-12px);
}

.card-image {
  width: 100%;
  max-width: 180px;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.card-item:hover .card-image {
  filter: drop-shadow(0 8px 40px rgba(108, 99, 255, 0.4));
  transform: rotateY(-5deg) rotateX(3deg);
}

.card-label {
  text-align: center;
}

.card-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.card-rarity {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 50px;
  margin-top: 4px;
}

.rarity-tag-common {
  background: rgba(150, 150, 170, 0.2);
  color: #b0b0c0;
}

.rarity-tag-uncommon {
  background: rgba(0, 200, 0, 0.15);
  color: #66cc66;
}

.rarity-tag-rare {
  background: rgba(50, 100, 255, 0.15);
  color: #6699ff;
}

.rarity-tag-epic {
  background: rgba(180, 50, 255, 0.15);
  color: #cc77ff;
}

.rarity-tag-legendary {
  background: rgba(255, 200, 0, 0.15);
  color: #ffd700;
}

.rarity-tag-mythological {
  background: linear-gradient(135deg, rgba(255, 45, 120, 0.2), rgba(108, 99, 255, 0.2));
  color: #ff6699;
  animation: shimmer 3s linear infinite;
  background-size: 200% auto;
}

.cards-info {
  text-align: center;
  margin-top: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cards-info p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.cards-info .highlight {
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   TIERS SECTION
   ============================================ */
.tiers-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.tiers-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.08) 0%, transparent 60%);
  border-radius: 50%;
}

.tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.tier-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 8px;
  min-height: 200px;
  transition: all var(--transition-base);
  cursor: default;
  border: 1px solid var(--glass-border);
}

.tier-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 99, 255, 0.4);
  box-shadow: var(--shadow-glow-purple);
}

.tier-card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.tier-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.tier-card:hover .tier-card-image img {
  transform: scale(1.08);
}

.tier-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.85) 0%, rgba(10, 10, 15, 0.2) 60%, transparent 100%);
}

.tier-emoji {
  font-size: 2rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.tier-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.tiers-description {
  text-align: center;
  margin-top: 40px;
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-box {
  position: relative;
  padding: 80px 40px;
  border-radius: var(--radius-xl);
  background: var(--gradient-premium);
  text-align: center;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
}

.cta-box h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-box p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: inherit;
  text-decoration: none;
}

.btn-cta-primary {
  background: white;
  color: #0A0A0F;
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  filter: drop-shadow(0 0 8px rgba(108, 99, 255, 0.3));
}

.footer-brand .footer-logo span {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-premium);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-column h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-column ul {
  list-style: none;
}

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

.footer-column ul a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color var(--transition-base);
}

.footer-column ul a:hover {
  color: var(--accent-primary);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

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

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

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

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

/* ============================================
   LEGAL PAGES (Privacy, Terms)
   ============================================ */
.legal-page {
  padding-top: 100px;
  min-height: 100vh;
}

.legal-header {
  text-align: center;
  padding: 40px 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--glass-border);
}

.legal-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 8px;
  background: var(--gradient-premium);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-header .legal-version {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--accent-primary);
}

.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.legal-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul {
  padding-right: 24px;
  margin-bottom: 16px;
}

.legal-content ul li {
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.7;
}

.legal-content a {
  color: var(--accent-primary);
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.legal-table th,
.legal-table td {
  padding: 12px 16px;
  text-align: right;
  border-bottom: 1px solid var(--glass-border);
}

.legal-table th {
  background: rgba(108, 99, 255, 0.1);
  font-weight: 600;
  color: var(--accent-primary);
  font-size: 0.9rem;
}

.legal-table td {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.legal-table tr:hover td {
  background: var(--glass-bg);
}

/* Company details box */
.company-details {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 16px 0;
}

.company-details table {
  width: 100%;
}

.company-details td {
  padding: 6px 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.company-details td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  width: 120px;
}

/* ============================================
   SUPPORT PAGE
   ============================================ */
.support-page {
  padding-top: 100px;
  min-height: 100vh;
}

.support-header {
  text-align: center;
  padding: 40px 0;
  margin-bottom: 40px;
}

.support-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
  background: var(--gradient-premium);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.support-contact-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.support-contact-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition-base);
  direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

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

.form-group select option {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.btn-submit {
  padding: 14px 32px;
  border-radius: 50px;
  background: var(--gradient-premium);
  color: white;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition-base);
  align-self: flex-start;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-purple);
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 80px auto 0;
  padding: 0 24px 80px;
}

.faq-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  background: var(--gradient-premium);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: right;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition-base);
}

.faq-question:hover {
  color: var(--accent-primary);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--accent-primary);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .cards-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 960px) {
  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right var(--transition-base);
    border-left: 1px solid var(--glass-border);
  }

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

  .mobile-menu-toggle {
    display: block;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

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

  .tiers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .tier-card {
    min-height: 170px;
  }

}

@media (max-width: 640px) {
  .section-padding {
    padding: 60px 0;
  }

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

  .cards-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 16px;
  }

  .card-image {
    max-width: 140px;
  }

  .tier-emoji {
    font-size: 1.6rem;
  }

  .tier-name {
    font-size: 0.8rem;
  }

  .cta-box {
    padding: 48px 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

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

@media (max-width: 480px) {
  .hero-photos {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-photo {
    max-width: 280px;
    width: 100%;
  }

  .hero-photo img {
    height: 200px;
  }

  .cards-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .card-image {
    max-width: 120px;
  }

  .card-name {
    font-size: 0.8rem;
  }

  .tiers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .tier-card {
    min-height: 140px;
  }

  .section-padding {
    padding: 50px 0;
  }
}

/* Global floating bokeh particles (visible on all screen sizes) */
.global-bokeh-particles {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.global-bokeh-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: global-bokeh-float linear infinite;
  pointer-events: none;
}

@keyframes global-bokeh-float {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0.5);
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

/* --- Print styles --- */
@media print {
  .navbar, .hero-bg, .bokeh-overlay, .bokeh-particles, .hero-scroll-indicator, .global-bokeh-particles {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .legal-content {
    max-width: 100%;
  }
}
