/* ==========================================================================
   SNAPREELS — ULTRA-PREMIUM LUXURY STREAMING LANDING PAGE STYLES
   ========================================================================== */

:root {
  /* Color Palette — Light Purple Atmospheric Environment */
  --bg-deep: #180D30;
  --bg-surface: #20123D;
  --bg-card: #27164A;
  --glass-surface: rgba(255, 255, 255, 0.08);
  
  --accent-violet: #A855F7;
  --accent-magenta: #E879F9;
  --accent-blue: #60A5FA;
  
  /* STRICT Download App Button Gradient Tokens: Green → Lime → Yellow */
  --green-primary: #22C55E;
  --green-dark: #16A34A;
  --yellow-bright: #FACC15;
  --yellow-gold: #EAB308;
  --grad-gy-btn: linear-gradient(135deg, #22C55E 0%, #16A34A 45%, #FACC15 85%, #EAB308 100%);
  --grad-gy-hover: linear-gradient(135deg, #10B981 0%, #22C55E 40%, #FDE047 80%, #FACC15 100%);
  
  --text-primary: #FFFFFF;
  --text-secondary: #C4B5FD;
  --text-muted: #94A3B8;
  
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-highlight: rgba(168, 85, 247, 0.35);
  
  --grad-text: linear-gradient(135deg, #FFFFFF 0%, #F3E8FF 30%, #E879F9 70%, #A855F7 100%);
  --grad-glow: radial-gradient(circle, rgba(168, 85, 247, 0.35) 0%, rgba(232, 121, 249, 0.2) 40%, transparent 70%);
  
  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

/* Atmospheric Background */
.ambient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% -20%, #4C248C 0%, #261348 50%, #150A2B 100%);
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-1 {
  width: 650px;
  height: 650px;
  top: -150px;
  left: 20%;
  background: rgba(168, 85, 247, 0.32);
}

.orb-2 {
  width: 550px;
  height: 550px;
  bottom: -100px;
  right: 15%;
  background: rgba(232, 121, 249, 0.25);
  animation-delay: -6s;
}

.orb-3 {
  width: 450px;
  height: 450px;
  top: 40%;
  left: -100px;
  background: rgba(139, 92, 255, 0.28);
  animation-delay: -12s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
}

/* Page Layout */
.page-container {
  position: relative;
  z-index: 10;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 1440px;
  margin: 0 auto;
  padding: 70px 2rem 0 2rem;
}

/* Navigation Bar (100% Full Edge-to-Edge Width) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 90;
  width: 100%;
  height: 70px;
  background: linear-gradient(90deg, rgba(139, 92, 255, 0.28) 0%, rgba(217, 70, 239, 0.3) 50%, rgba(79, 140, 255, 0.28) 100%), rgba(9, 9, 13, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(217, 70, 239, 0.35);
  box-shadow: 0 4px 30px rgba(217, 70, 239, 0.25);
}

.nav-container {
  width: 100%;
  max-width: 100%;
  height: 100%;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, #FF5500 0%, #FFA800 50%, #FACC15 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(255, 100, 0, 0.45);
}

.logo-core {
  width: 14px;
  height: 14px;
  background: #FFFFFF;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  margin-left: 2px;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 1.5px;
  background: linear-gradient(135deg, #FF6B00 0%, #FFA800 50%, #FACC15 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 10px rgba(255, 107, 0, 0.25));
}

.brand-accent {
  background: linear-gradient(135deg, #FFA800 0%, #FACC15 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* BUTTON 1 — NAVBAR (STRICT GREEN + YELLOW GRADIENT) */
.btn-download-gy {
  padding: 11px 24px;
  border-radius: 100px;
  background: var(--grad-gy-btn);
  color: #051A0D;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: 1px solid rgba(250, 204, 21, 0.4);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-download-gy:hover {
  background: var(--grad-gy-hover);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 30px rgba(250, 204, 21, 0.45), 0 0 20px rgba(34, 197, 94, 0.5);
  color: #000000;
}

.btn-download-gy i {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.btn-download-gy:hover i {
  transform: translate(2px, -2px);
}

/* Hero Section Grid */
.hero-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
}

/* Left Hero Content */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 580px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(139, 92, 255, 0.08);
  border: 1px solid var(--border-highlight);
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-magenta);
  box-shadow: 0 0 10px var(--accent-magenta);
  animation: pulseDot 2s infinite;
}

.badge-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #E2D9FF;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--text-primary);
}

.text-gradient {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 30px rgba(139, 92, 255, 0.35));
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-weight: 400;
}

/* BUTTON 2 — HERO (STRICT GREEN + YELLOW GRADIENT) */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.btn-hero-download-gy {
  height: 60px;
  padding: 0 36px;
  border-radius: 100px;
  background: var(--grad-gy-btn);
  color: #051A0D;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  border: 1px solid rgba(250, 204, 21, 0.5);
  box-shadow: 0 12px 35px rgba(34, 197, 94, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-hero-download-gy .btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: 0.6s ease;
}

.btn-hero-download-gy:hover {
  background: var(--grad-gy-hover);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 45px rgba(250, 204, 21, 0.5), 0 0 30px rgba(34, 197, 94, 0.6);
  color: #000000;
}

.btn-hero-download-gy:hover .btn-shine {
  left: 150%;
}

.btn-hero-download-gy .btn-icon {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

.hero-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Category Pills Row */
.category-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cat-pill {
  padding: 5px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.cat-pill:hover {
  border-color: var(--accent-violet);
  color: #FFF;
  background: rgba(139, 92, 255, 0.15);
}

/* ==========================================================================
   FLAGSHIP SMARTPHONE SHOWCASE (RIGHT SIDE)
   ========================================================================== */

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

.phone-wrapper {
  position: relative;
  perspective: 1200px;
  padding: 10px;
}

.phone-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 480px;
  height: 640px;
  background: var(--grad-glow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(45px);
  animation: floatGlow 10s ease-in-out infinite alternate;
}

/* Floating Glass Widgets */
.floating-widget {
  position: absolute;
  z-index: 25;
  background: rgba(17, 17, 23, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  padding: 10px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  animation: floatWidget 6s ease-in-out infinite alternate;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.floating-widget:hover {
  transform: scale(1.06) translateY(-4px) !important;
  border-color: var(--accent-violet);
}

.widget-1 { top: 12%; left: -45px; animation-delay: 0s; }
.widget-2 { top: 52%; right: -35px; animation-delay: -2s; }
.widget-3 { bottom: 6%; left: -25px; animation-delay: -4s; }

.widget-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
}

.widget-icon i { width: 16px; height: 16px; }

.release-icon { background: linear-gradient(135deg, #8B5CFF, #4F8CFF); }
.trending-icon { background: linear-gradient(135deg, #FF416C, #FF4B2B); }
.ep-icon { background: linear-gradient(135deg, #D946EF, #8B5CFF); }

.widget-content { display: flex; flex-direction: column; }
.widget-value { font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; color: #FFF; line-height: 1.1; }
.widget-label { font-size: 0.68rem; color: var(--text-secondary); }

/* Smartphone Metallic Frame */
.smartphone-frame {
  position: relative;
  z-index: 10;
  width: 295px;
  height: 575px;
  background: #000000;
  border-radius: 46px;
  box-shadow: 
    0 0 0 3px #1F1F2C,
    0 0 0 5px #38384A,
    0 0 0 6px rgba(139, 92, 255, 0.3),
    0 25px 60px rgba(0, 0, 0, 0.85),
    0 10px 30px rgba(139, 92, 255, 0.25);
  overflow: hidden;
  transition: transform 0.15s ease-out;
  transform-style: preserve-3d;
}

.phone-hardware {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 36px;
  z-index: 40;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.dynamic-island {
  margin-top: 10px;
  width: 90px;
  height: 24px;
  background: #000;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px;
  gap: 8px;
}

.camera-lens { width: 9px; height: 9px; border-radius: 50%; background: #0C0F1A; }
.sensor { width: 5px; height: 5px; border-radius: 50%; background: #070912; }

/* Phone Screen (OTT DISCOVERY INTERFACE) */
.phone-screen {
  position: absolute;
  inset: 4px;
  border-radius: 48px;
  background: var(--bg-surface);
  overflow: hidden;
}

.ott-app-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #08080C;
}

/* App Header */
.app-header {
  padding: 44px 16px 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.app-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: #FFF;
}

.mini-logo {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: linear-gradient(135deg, #8B5CFF, #D946EF);
}

.app-header-icons {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.app-header-icons i { width: 16px; height: 16px; }

/* App Category Pills */
.app-categories {
  display: flex;
  gap: 6px;
  padding: 10px 16px;
  overflow-x: auto;
  scrollbar-width: none;
}

.app-categories::-webkit-scrollbar { display: none; }

.app-cat-btn {
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
}

.app-cat-btn.active {
  background: var(--accent-violet);
  color: #FFF;
  border-color: var(--accent-violet);
}

/* App Scrollable Content Area */
.app-content-scroll {
  flex: 1;
  overflow-y: auto;
  padding: 10px 16px 70px 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  scrollbar-width: none;
}

.app-content-scroll::-webkit-scrollbar { display: none; }

/* Billboard Card */
.billboard-card {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.billboard-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.poster-bg-1 {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(13, 9, 26, 0.95) 100%), 
                    radial-gradient(circle at 70% 30%, #8B5CFF 0%, #050507 90%);
}

.billboard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #09090D 0%, rgba(9, 9, 13, 0.4) 60%, transparent 100%);
}

.billboard-info {
  position: absolute;
  bottom: 12px;
  left: 14px;
  right: 14px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.badge-ott {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent-magenta);
}

.billboard-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFF;
}

.billboard-meta {
  font-size: 0.62rem;
  color: var(--text-secondary);
}

.billboard-actions {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.ott-play-btn {
  padding: 5px 12px;
  border-radius: 8px;
  background: #FFF;
  color: #000;
  font-size: 0.65rem;
  font-weight: 700;
  border: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.ott-play-btn i { width: 12px; height: 12px; fill: #000; }

.ott-list-btn {
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  color: #FFF;
  font-size: 0.65rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 4px;
}

.ott-list-btn i { width: 12px; height: 12px; }

/* OTT Sections & Posters */
.ott-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.section-head h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: #FFF;
}

.section-head span {
  font-size: 0.62rem;
  color: var(--accent-violet);
  cursor: pointer;
}

.poster-carousel {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.poster-carousel::-webkit-scrollbar { display: none; }

.poster-card {
  flex-shrink: 0;
  width: 100px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.horizontal-card { width: 140px; }

.poster-img {
  width: 100%;
  height: 135px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.horizontal-card .poster-img { height: 85px; }

.poster-bg-1 {
  background-image: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(13, 9, 26, 0.94) 100%), 
                    url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?auto=format&fit=crop&w=600&q=80');
  background-size: cover;
  background-position: center;
}

.poster-bg-2 {
  background-image: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.9) 100%),
                    url('https://images.unsplash.com/photo-1574267432553-4b4628081c31?auto=format&fit=crop&w=400&q=80');
  background-size: cover;
  background-position: center;
}

.poster-bg-3 {
  background-image: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.9) 100%),
                    url('https://images.unsplash.com/photo-1517604931442-7e0c8ed2963c?auto=format&fit=crop&w=400&q=80');
  background-size: cover;
  background-position: center;
}

.poster-bg-4 {
  background-image: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.9) 100%),
                    url('https://images.unsplash.com/photo-1485846234645-a62644f84728?auto=format&fit=crop&w=400&q=80');
  background-size: cover;
  background-position: center;
}

.poster-bg-5 {
  background-image: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.9) 100%),
                    url('https://images.unsplash.com/photo-1478720568477-152d9b164e26?auto=format&fit=crop&w=500&q=80');
  background-size: cover;
  background-position: center;
}

.poster-bg-6 {
  background-image: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.9) 100%),
                    url('https://images.unsplash.com/photo-1509198397868-475647b2a1e5?auto=format&fit=crop&w=500&q=80');
  background-size: cover;
  background-position: center;
}

.ep-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  color: var(--yellow-bright);
  font-size: 0.52rem;
  font-weight: 800;
}

.poster-title-wrap h6 {
  font-size: 0.7rem;
  font-weight: 700;
  color: #FFF;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.poster-sub {
  font-size: 0.58rem;
  color: var(--text-muted);
}

/* App Bottom Navigation */
.app-bottom-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: rgba(9, 9, 13, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.nav-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.58rem;
}

.nav-tab.active { color: var(--accent-violet); }
.nav-tab i { width: 18px; height: 18px; }

.phone-glass-glare {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
  z-index: 35;
  border-radius: 50px;
}

/* Modal Styling */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(3, 3, 5, 0.88);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active { opacity: 1; pointer-events: auto; }

.glass-modal {
  width: 100%;
  max-width: 430px;
  background: rgba(15, 15, 23, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
  text-align: center;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: none; color: var(--text-secondary);
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}

.modal-badge { font-size: 0.65rem; font-weight: 800; letter-spacing: 2px; color: var(--accent-magenta); margin-bottom: 8px; }
.modal-title { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: #FFF; margin-bottom: 8px; }
.modal-desc { font-size: 0.88rem; color: var(--text-secondary); margin-bottom: 1.75rem; }

.store-buttons { display: flex; flex-direction: column; gap: 1rem; }

.store-btn {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px; border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFF; text-decoration: none;
  transition: all 0.3s ease; cursor: pointer;
}

.store-btn-gy {
  background: var(--grad-gy-btn);
  color: #051A0D;
  border-color: rgba(250, 204, 21, 0.4);
}

.store-btn-gy:hover {
  background: var(--grad-gy-hover);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.4);
}

.store-btn.disabled { opacity: 0.5; cursor: not-allowed; }
.store-icon { width: 24px; height: 24px; }
.btn-text { display: flex; flex-direction: column; text-align: left; }
.btn-text .small { font-size: 0.65rem; color: var(--text-secondary); letter-spacing: 1px; }
.btn-text .bold { font-weight: 700; font-size: 0.95rem; }

/* Animations */
@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
  100% { transform: translate(-30px, 40px) scale(0.95); }
}

@keyframes floatGlow {
  0% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0.95; transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes floatWidget {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-left { align-items: center; max-width: 100%; }
  .hero-title { font-size: 3.5rem; }
  .badge-pill { margin: 0 auto; }
  .category-tags-row { justify-content: center; }
  .floating-widget.widget-1 { left: -10px; }
  .floating-widget.widget-2 { right: -10px; }
}

@media (max-width: 640px) {
  .page-container { padding: 0 1.25rem; }
  .hero-title { font-size: 2.75rem; }
  .btn-hero-download-gy { width: 100%; }
  .smartphone-frame { width: 280px; height: 550px; }
  .floating-widget { display: none; }
}

/* ==========================================================================
   ATTRACTIVE 5 APP SCREENSHOTS PREVIEW SECTION STYLES
   ========================================================================== */

.screenshots-section {
  padding: 4rem 0 5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 2rem;
}

.section-header.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 650px;
  margin-bottom: 3rem;
}

.badge-pill.margin-center {
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Screenshots Deck */
.screenshots-deck {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 100%;
  padding: 20px 0 40px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.screenshots-deck::-webkit-scrollbar { display: none; }

.screenshot-card {
  flex-shrink: 0;
  width: 215px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.screenshot-card:hover {
  transform: translateY(-12px) scale(1.04);
}

.shot-frame {
  width: 100%;
  height: 430px;
  border-radius: 34px;
  background: #000000;
  padding: 4px;
  box-shadow: 
    0 0 0 2px #222233,
    0 0 0 4px rgba(255, 255, 255, 0.08),
    0 20px 50px rgba(0, 0, 0, 0.8),
    0 0 25px rgba(139, 92, 255, 0.15);
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.screenshot-card:hover .shot-frame {
  box-shadow: 
    0 0 0 2px var(--accent-violet),
    0 0 0 4px rgba(217, 70, 239, 0.4),
    0 25px 60px rgba(139, 92, 255, 0.45);
}

.shot-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

/* Center Featured Card Highlight */
.screenshot-card.featured-card {
  width: 235px;
}

.screenshot-card.featured-card .shot-frame {
  height: 470px;
  box-shadow: 
    0 0 0 3px var(--accent-violet),
    0 0 0 5px rgba(217, 70, 239, 0.5),
    0 30px 70px rgba(139, 92, 255, 0.45);
}

.shot-badge {
  position: absolute;
  top: -12px;
  z-index: 30;
  padding: 4px 14px;
  border-radius: 100px;
  background: linear-gradient(135deg, #8B5CFF, #D946EF);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 15px rgba(217, 70, 239, 0.5);
}

.shot-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.shot-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #FFFFFF;
}

.shot-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

@media (max-width: 1024px) {
  .screenshots-deck {
    justify-content: flex-start;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ==========================================================================
   ATTRACTIVE PLATFORM FEATURES SHOWCASE STYLES
   ========================================================================== */

.features-section {
  padding: 4.5rem 0 3.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  width: 100%;
  margin-top: 1rem;
}

.feature-card {
  background: rgba(32, 18, 61, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  padding: 2rem 1.75rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-violet);
  background: rgba(39, 22, 74, 0.85);
  box-shadow: 0 25px 50px rgba(168, 85, 247, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.feature-icon-wrap i {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.icon-purple { background: linear-gradient(135deg, #8B5CFF, #A855F7); box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4); }
.icon-pink { background: linear-gradient(135deg, #EC4899, #E879F9); box-shadow: 0 8px 20px rgba(232, 121, 249, 0.4); }
.icon-blue { background: linear-gradient(135deg, #3B82F6, #60A5FA); box-shadow: 0 8px 20px rgba(96, 165, 250, 0.4); }
.icon-green { background: linear-gradient(135deg, #10B981, #34D399); box-shadow: 0 8px 20px rgba(52, 211, 153, 0.4); }
.icon-yellow { background: linear-gradient(135deg, #F59E0B, #FBBF24); box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4); }
.icon-magenta { background: linear-gradient(135deg, #D946EF, #C084FC); box-shadow: 0 8px 20px rgba(217, 70, 239, 0.4); }

.feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: #FFFFFF;
}

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

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

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* 5-Line Feature Highlights Summary Box */
.features-summary-box {
  margin-top: 3rem;
  width: 100%;
  background: rgba(32, 18, 61, 0.55);
  border: 1px solid rgba(168, 85, 247, 0.25);
  backdrop-filter: blur(16px);
  padding: 2.25rem 2.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.summary-box-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.features-lines-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.features-lines-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.features-lines-list li strong {
  color: #FFFFFF;
}

.line-icon {
  width: 20px;
  height: 20px;
  color: var(--accent-violet);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   LUXURY TESTIMONIALS / USER REVIEWS SECTION STYLES
   ========================================================================== */

.testimonials-section {
  padding: 4.5rem 0 6rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 3.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  width: 100%;
  margin-top: 1rem;
}

.testimonial-card {
  background: rgba(32, 18, 61, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  padding: 2.25rem 2rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-violet);
  background: rgba(39, 22, 74, 0.85);
  box-shadow: 0 25px 50px rgba(168, 85, 247, 0.3);
}

.stars-row {
  display: flex;
  gap: 4px;
  color: var(--yellow-bright);
}

.star-fill {
  width: 18px;
  height: 18px;
  fill: var(--yellow-bright);
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFFFFF;
  font-style: italic;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.avatar-1 { background: linear-gradient(135deg, #8B5CFF, #A855F7); }
.avatar-2 { background: linear-gradient(135deg, #EC4899, #E879F9); }
.avatar-3 { background: linear-gradient(135deg, #3B82F6, #60A5FA); }
.avatar-4 { background: linear-gradient(135deg, #10B981, #34D399); }

.user-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.user-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #FFFFFF;
}

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

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   5 FREQUENTLY ASKED QUESTIONS (FAQ) STYLES
   ========================================================================== */

.faq-section {
  padding: 4.5rem 0 6rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  max-width: 850px;
  margin-top: 1rem;
}

.faq-item {
  background: rgba(32, 18, 61, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-item.active {
  border-color: var(--accent-violet);
  background: rgba(39, 22, 74, 0.8);
  box-shadow: 0 15px 40px rgba(168, 85, 247, 0.25);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 1.75rem;
  background: none;
  border: none;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  gap: 16px;
}

.faq-icon {
  width: 22px;
  height: 22px;
  color: var(--accent-violet);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--accent-magenta);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 1.75rem 1.5rem 1.75rem;
}

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