/* ========================================
   DESIGN SYSTEM — Copa 2026 Sales Page
   ======================================== */

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: rgba(255,255,255,0.04);
  --gold: #f5c842;
  --gold-dark: #c9a227;
  --neon: #00e5ff;
  --neon-glow: rgba(0,229,255,0.35);
  --green: #00e676;
  --red: #ff3040;
  --white: #ffffff;
  --text: #e0e0e0;
  --text-muted: #9e9e9e;
  --glass-border: rgba(255,255,255,0.08);
  --glass-bg: rgba(255,255,255,0.03);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.features-grid,
.numbers-grid,
.price-features,
.ig-comments-wrapper,
.faq-list {
  text-align: left;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* UTILITY */
.text-white { color: var(--white); }
.text-gold { color: var(--gold); }
.text-neon { color: var(--neon); }
.mt-large { margin-top: 48px; }

.glow-text {
  text-shadow: 0 0 20px rgba(245,200,66,0.5), 0 0 60px rgba(245,200,66,0.2);
}

/* ========== TICKER ========== */
.ticker-wrap {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), var(--gold));
  overflow: hidden;
  white-space: nowrap;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 8px 0;
}

.ticker { display: inline-block; animation: ticker-scroll 40s linear infinite; }

.ticker-inner {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--bg-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-primary);
  box-shadow: 0 4px 25px rgba(245,200,66,0.3);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(245,200,66,0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.btn-large { padding: 20px 48px; font-size: 18px; }

.pulse-anim { animation: pulse 2.5s ease-in-out infinite; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 25px rgba(245,200,66,0.3); }
  50% { box-shadow: 0 4px 40px rgba(245,200,66,0.6), 0 0 60px rgba(245,200,66,0.2); }
}

/* ========== GLASS CARD ========== */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ========== SECTION TITLES ========== */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 17px;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== HERO ========== */
.hero {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse at 50% 0%, rgba(245,200,66,0.06) 0%, transparent 60%),
              var(--bg-primary);
  overflow: hidden;
}

.hero-bg-particles {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(245,200,66,0.15), rgba(245,200,66,0.05));
  border: 1px solid rgba(245,200,66,0.3);
  color: var(--gold);
  padding: 8px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 90px);
  line-height: 0.95;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.4s both;
}

/* VIDEO */
.video-wrapper {
  position: relative;
  max-width: 300px;
  margin: 0 auto 40px;
  border-radius: var(--radius);
  overflow: hidden;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.video-glow {
  position: absolute; inset: -2px;
  background: linear-gradient(135deg, var(--gold), var(--neon), var(--gold));
  border-radius: calc(var(--radius) + 2px);
  z-index: -1;
  opacity: 0.5;
  filter: blur(8px);
  animation: glowRotate 6s linear infinite;
}

@keyframes glowRotate {
  0% { filter: blur(8px) hue-rotate(0deg); }
  100% { filter: blur(8px) hue-rotate(360deg); }
}

.video-wrapper video {
  width: 100%;
  display: block;
  border-radius: var(--radius);
  aspect-ratio: 9/16;
  object-fit: cover;
}

.unmute-btn {
  position: absolute;
  bottom: 16px; right: 16px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.unmute-btn:hover { background: rgba(0,0,0,0.9); }

/* ========== CAROUSEL ========== */
.album-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.carousel-container {
  overflow: hidden;
  padding: 30px 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.carousel-track {
  display: flex;
  gap: 20px;
  animation: carousel-slide 30s linear infinite;
  width: max-content;
}

.player-card {
  flex-shrink: 0;
  width: 200px;
  transition: transform 0.4s ease;
}
.player-card:hover { transform: scale(1.08) translateY(-8px); }

.card-inner {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: var(--transition);
}
.card-inner:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(245,200,66,0.2);
}

.card-inner img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

@keyframes carousel-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); }
}

/* ========== NUMBERS ========== */
.numbers-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.num-card {
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.num-card::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon), transparent);
  opacity: 0.5;
}
.num-card:hover { transform: translateY(-6px); border-color: rgba(0,229,255,0.2); }

.num-val {
  font-family: var(--font-display);
  font-size: 56px;
  display: block;
  line-height: 1;
}
.plus { font-size: 36px; }

.num-label {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  margin-top: 8px;
}

.num-sub {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ========== FEATURES ========== */
.included-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.feature-card {
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,200,66,0.2);
  background: rgba(255,255,255,0.06);
}

.feature-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(245,200,66,0.15), rgba(245,200,66,0.05));
  color: var(--gold);
  font-size: 24px;
}

.feature-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.ig-comments-wrapper {
  max-width: 620px;
  margin: 40px auto 0;
  padding: 20px;
}

.ig-comment {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ig-comment:last-child { border-bottom: none; }

.ig-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
}
.ig-avatar-female {
  background: linear-gradient(135deg, #f093fb, #f5576c);
}

.ig-content { flex: 1; min-width: 0; }

.ig-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.ig-username {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}

.ig-time {
  font-size: 12px;
  color: var(--text-muted);
}

.ig-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 6px;
}

.ig-actions {
  display: flex;
  gap: 16px;
}
.ig-actions span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  cursor: pointer;
}

.ig-like {
  flex-shrink: 0;
  padding-top: 18px;
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
}

/* ========== PRICING ========== */
.price-section {
  padding: 80px 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(245,200,66,0.08) 0%, transparent 60%),
              var(--bg-secondary);
}

.pricing-card-wrapper {
  max-width: 480px;
  margin: 48px auto 0;
}

.pricing-card {
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-color: rgba(245,200,66,0.2);
}
.pricing-card::before {
  content: '';
  position: absolute; inset: -1px;
  background: linear-gradient(135deg, var(--gold), transparent 40%, transparent 60%, var(--neon));
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.15;
}

.discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ff6b35, #ff3040);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.price-old {
  color: var(--text-muted);
  font-size: 16px;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.currency {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  padding-top: 8px;
}

.amount {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--gold);
  line-height: 1;
}

.cents {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--gold);
  padding-top: 8px;
}

.price-label {
  font-weight: 700;
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.price-features li:last-child { border-bottom: none; }
.price-features li i { font-size: 14px; flex-shrink: 0; }

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}
.trust-item i { color: var(--green); font-size: 14px; }

/* ========== FAQ ========== */
.faq-section {
  padding: 80px 0;
  background: var(--bg-primary);
}

.faq-list {
  max-width: 700px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}
.faq-question:hover { color: var(--gold); }
.faq-question i { transition: transform 0.3s ease; color: var(--neon); font-size: 14px; }
.faq-item.active .faq-question i { 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: 200px; }

.faq-answer p {
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ========== FOOTER CTA ========== */
.footer-cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
  position: relative;
}
.footer-cta::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 200px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.footer-cta p {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto 32px;
}

footer {
  padding: 24px 0;
  text-align: center;
  background: var(--bg-primary);
  border-top: 1px solid rgba(255,255,255,0.04);
}

footer p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ========== SALES NOTIFICATION ========== */
.sales-notification {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(18,18,26,0.95);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 18px;
  z-index: 9999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(.4,0,.2,1), opacity 0.5s ease;
  max-width: 340px;
}

.sales-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notif-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-primary);
  font-size: 16px;
  flex-shrink: 0;
}

.notif-content { flex: 1; min-width: 0; }

.notif-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notif-action {
  font-size: 13px;
  color: var(--text-muted);
  margin: 2px 0 0;
}

.notif-time {
  font-size: 11px;
  color: var(--neon);
  margin: 2px 0 0;
}

.notif-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  transition: var(--transition);
}
.notif-close:hover { color: var(--white); }

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

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

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero { padding: 100px 0 60px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .features-grid { grid-template-columns: 1fr; }
  .btn { padding: 14px 28px; font-size: 14px; }
  .btn-large { padding: 16px 32px; font-size: 16px; }
  .player-card { width: 150px; }
  .num-val { font-size: 42px; }
  .pricing-card { padding: 30px 20px; }
  .amount { font-size: 64px; }
  .trust-badges { gap: 12px; }
  .trust-item { font-size: 11px; }
  .ig-comments-wrapper { padding: 14px; }
}
