@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600;1,700&display=swap');

:root {
  --primary: #FF0069;
  --bg: #000000;
  --white: #FFFFFF;
  --gray-dark: #1a1a1a;
  --gray-border: #333;
  --gray-text: #9ca3af;
  --radius: 12px;
}

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

html {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100vw;
  min-height: 100dvh;
}

img {
  max-width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== APP BANNER ===== */
.app-banner {
  background: var(--primary);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.app-banner-left {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 8px;
}

.app-banner .close-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 4px;
}

.app-banner .close-btn svg {
  width: 12px;
  height: 12px;
}

.app-banner .app-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.app-banner .app-info .title {
  font-size: 13px;
  font-weight: 700;
  color: white;
  font-style: italic;
  letter-spacing: -0.5px;
}

.app-banner .app-info .subtitle {
  font-size: 11px;
  color: white;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.3px;
}

.app-banner .install-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 30%, transparent 60%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
}

.hero-nav .logo {
  max-height: 30px;
}

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

.hero-bottom {
  position: absolute;
  top: 55%;
  left: 0;
  right: 0;
  z-index: 20;
  transform: translateY(-50%);
  text-align: center;
  color: white;
}

.hero-bottom .online-count {
  font-size: 17px;
  margin-bottom: 12px;
}

.hero-bottom h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-bottom .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  height: 48px;
  width: 320px;
  max-width: 90%;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  margin: 16px 0 8px;
  transition: opacity 0.2s;
}

.hero-bottom .cta-btn:hover {
  opacity: 0.9;
}

.hero-bottom .cam-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: white;
}

/* ===== NEW APP BADGE ===== */
.new-app-badge {
  background: linear-gradient(135deg, var(--primary), #cc0054);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: pulse-glow 2s ease-in-out infinite;
  margin-bottom: 8px;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 0 8px rgba(255, 0, 105, 0.4);
  }

  50% {
    box-shadow: 0 0 20px rgba(255, 0, 105, 0.8);
  }
}

/* ===== CONTENT WRAPPER ===== */
.content {
  background: var(--bg);
  padding: 32px;
  text-align: center;
  max-width: 672px;
  margin: 0 auto;
}

.content section {
  margin-bottom: 48px;
}

.content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-text);
  margin-bottom: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 9999px;
  height: 52px;
  width: 320px;
  max-width: 100%;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: opacity 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-primary svg {
  fill: white;
}

/* ===== INTERESTS ===== */
.interests-img {
  margin: 20px auto;
  max-width: 360px;
}

.list-card {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.list-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

.list-card li svg {
  flex-shrink: 0;
  width: 20px;
}

/* ===== FEATURES ===== */
.features-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-text);
}

.features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

/* ===== EXPERIENCE ===== */
.experience-img {
  margin: 0 auto 20px;
  max-width: 360px;
}

.experience-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.experience-list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-text);
}

.experience-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

/* ===== PERKS ===== */
.perks-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.perk-card {
  background: var(--gray-dark);
  border-radius: 8px;
  padding: 24px;
  text-align: left;
}

.perk-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.perk-header img {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.perk-header-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.perk-content p {
  font-size: 13px;
  color: var(--gray-text);
  margin: 0;
}

/* ===== GLOBAL STATS ===== */
.stats-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 24px;
  text-align: left;
}

.stat-card img {
  width: 80px;
}

.stat-number {
  font-size: 22px;
  font-weight: 700;
}

.stat-label {
  font-size: 13px;
  color: var(--gray-text);
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  color: var(--primary);
  border-radius: 8px;
  padding: 16px;
  text-align: left;
  cursor: pointer;
}

.faq-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}

.faq-header h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: none;
}

.faq-toggle {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-toggle.open {
  transform: rotate(180deg);
}

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

.faq-answer p {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card {
  background: var(--gray-dark);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
}

.testimonial-card .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-text {
  font-size: 12px;
  color: var(--gray-text);
  line-height: 1.5;
  margin-bottom: 4px;
}

.testimonial-name {
  font-size: 12px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.stars svg {
  width: 80px;
}

/* ===== DOWNLOAD APP ===== */
.app-perspective {
  max-width: 360px;
  margin: 20px auto 0;
}

/* ===== SEO CONTENT ===== */
.seo-section {
  text-align: left;
}

.seo-section h2 {
  font-size: 22px;
  text-align: center;
  margin-bottom: 16px;
}

.seo-section>p {
  text-align: center;
}

.seo-articles {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.seo-article {
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  padding: 24px;
}

.seo-article h2 {
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 8px;
}

.seo-article p {
  font-size: 13px;
  margin: 0;
}

/* ===== FOOTER ===== */
footer {
  background: rgba(255, 255, 255, 0.08);
  padding: 32px;
  text-align: center;
}

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

footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

footer .footer-links a {
  font-size: 14px;
  color: white;
}

footer .copyright {
  font-size: 11px;
  color: var(--gray-text);
  line-height: 1.6;
}

footer .copyright a {
  color: white;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 0;
  height: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ===== POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, backdrop-filter 0.5s ease, -webkit-backdrop-filter 0.5s ease;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.popup-overlay.closing {
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: opacity 0.35s ease, backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease;
}

.popup-card {
  position: relative;
  width: 100%;
  max-width: 340px;
  padding: 40px 28px 32px;
  text-align: center;
  border-radius: 24px;
  background: rgba(18, 8, 14, 0.95);
  border: 1px solid rgba(255, 0, 105, 0.12);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 80px rgba(255, 0, 105, 0.08);
  transform: scale(0.7) translateY(40px) rotate(-2deg);
  opacity: 0;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  overflow: hidden;
}

.popup-overlay.active .popup-card {
  transform: scale(1) translateY(0) rotate(0deg);
  opacity: 1;
}

.popup-overlay.closing .popup-card {
  transform: scale(0.8) translateY(20px) rotate(1deg);
  opacity: 0;
  transition: transform 0.3s ease-in, opacity 0.25s ease;
}

/* Staggered element entrance */
.popup-icon,
.popup-label,
.popup-headline,
.popup-desc,
.popup-chips,
.popup-cta,
.popup-fine {
  opacity: 0;
  transform: translateY(18px);
}

.popup-overlay.active .popup-icon {
  animation: popEl 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards;
}

.popup-overlay.active .popup-label {
  animation: popEl 0.4s ease 0.25s forwards;
}

.popup-overlay.active .popup-headline {
  animation: popEl 0.5s cubic-bezier(0.34, 1.4, 0.64, 1) 0.3s forwards;
}

.popup-overlay.active .popup-desc {
  animation: popEl 0.4s ease 0.4s forwards;
}

.popup-overlay.active .popup-chips {
  animation: popEl 0.4s ease 0.5s forwards;
}

.popup-overlay.active .popup-cta {
  animation: popEl 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
}

.popup-overlay.active .popup-fine {
  animation: popEl 0.3s ease 0.7s forwards;
}

@keyframes popEl {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Ambient orb */
.popup-orb {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 0, 105, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: orbPulse 4s ease-in-out infinite;
}

@keyframes orbPulse {

  0%,
  100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.15);
  }
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  z-index: 2;
}

.popup-close:hover {
  color: rgba(255, 255, 255, 0.7);
}

.popup-icon {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  margin: 0 auto 12px;
  box-shadow: 0 8px 32px rgba(255, 0, 105, 0.3), 0 0 0 1px rgba(255, 0, 105, 0.15);
}

.popup-label {
  position: relative;
  z-index: 1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 20px;
}

.popup-headline {
  position: relative;
  z-index: 1;
  font-size: 26px;
  font-weight: 800;
  font-style: italic;
  color: white;
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.5px;
}

.popup-desc {
  position: relative;
  z-index: 1;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin: 0 0 22px;
}

.popup-desc strong {
  color: var(--primary);
  font-weight: 600;
}

/* Feature chips */
.popup-chips {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.popup-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition: border-color 0.25s, background 0.25s;
}

.popup-chip:hover {
  border-color: rgba(255, 0, 105, 0.25);
  background: rgba(255, 0, 105, 0.06);
}

.popup-chip img {
  width: 22px;
  height: 22px;
  pointer-events: none;
  filter: drop-shadow(0 1px 3px rgba(255, 0, 105, 0.3));
}

/* CTA button */
.popup-cta {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 50px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 24px rgba(255, 0, 105, 0.4);
  transition: transform 0.15s, box-shadow 0.25s;
  overflow: hidden;
}

.popup-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: ctaSweep 3s ease-in-out 0.5s infinite;
}

@keyframes ctaSweep {
  0% {
    left: -60%;
  }

  40% {
    left: 120%;
  }

  100% {
    left: 120%;
  }
}

.popup-cta:hover {
  box-shadow: 0 6px 32px rgba(255, 0, 105, 0.55);
}

.popup-cta:active {
  transform: scale(0.97);
}

.popup-fine {
  position: relative;
  z-index: 1;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.18);
  margin: 14px 0 0;
  letter-spacing: 0.3px;
}