/* ═══════════════════════════════════════════════════════════════════
   Sweet.co — Landing Page Styles
   ═══════════════════════════════════════════════════════════════════ */

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

/* ── Base ───────────────────────────────────────────────────────── */
html { height: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica,
               Arial, sans-serif;
  color: #ffffff;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Background Video ───────────────────────────────────────────── */
#bgVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
  pointer-events: none;
}

/* ── Overlay ────────────────────────────────────────────────────── */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.52);
  z-index: -1;
}

/* ── Content Container ──────────────────────────────────────────── */
.content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 100svh;
  min-height: 100vh;
  padding: 52px 20px 48px;
}

/* ── Language Switcher ──────────────────────────────────────────── */
.lang-switcher {
  display: flex;
  gap: 6px;
  align-self: flex-end;
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 10;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, 0.50);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.18s ease;
}

.lang-flag {
  font-size: 0.9rem;
  line-height: 1;
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.80);
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.40);
  color: #ffffff;
}

/* ── Logo ───────────────────────────────────────────────────────── */
.logo-wrap { display: flex; justify-content: center; }

.logo {
  width: 160px;
  max-width: 68vw;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.6));
}

/* ── Page Title ─────────────────────────────────────────────────── */
.page-title {
  font-size: clamp(2.4rem, 10vw, 5.5rem);
  font-weight: 900;
  text-align: center;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.65);
  max-width: 700px;
  line-height: 1.0;
  padding: 0 4px;
}

/* ── Live Section wrapper ───────────────────────────────────────── */
.live-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 460px;
}

/* ── Live Card (shared by countdown + watch-live states) ────────── */
.live-card {
  width: 100%;
  background: rgba(155, 108, 52, 0.60);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 22px;
  border: 1px solid rgba(255, 200, 110, 0.22);
  padding: 10px 22px 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  overflow: visible;
}

/* ── Countdown (State 1) ────────────────────────────────────────── */
.card-heading {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  line-height: 1.4;
  margin-bottom: 6px;
}

.countdown {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
}

.unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 0, 0, 0.32);
  border-radius: 14px;
  padding: 14px 16px 12px;
  min-width: 0;
  flex: 1;
  gap: 6px;
}

.unit span {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.unit em {
  font-style: normal;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.70);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Chaturbate logo inside countdown card — overlaps card bottom */
.cb-logo-card {
  width: 78%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.5));
  margin-top: -4px;
  margin-bottom: -22px;
}

/* ── Watch Live (State 2) ───────────────────────────────────────── */
.cb-logo {
  width: 160px;
  max-width: 62vw;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.5));
}

/* ── Buttons (shared base) ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.45); }
.btn:active { transform: translateY(-1px); }

/* Live */
.btn-live {
  background: linear-gradient(135deg, #f56565 0%, #ed8936 100%);
  color: #fff;
  min-width: 220px;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  padding: 16px 40px;
}
.btn-live:hover { background: linear-gradient(135deg, #fc6868 0%, #f5972a 100%); }

/* Glass */
.btn-glass {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.btn-glass:hover { background: rgba(255, 255, 255, 0.20); }

/* Chaturbate CTA — estado normal */
.btn-chaturbate {
  min-width: 220px;
}

/* Chaturbate CTA — estado EN VIVO */
.btn-chaturbate.is-live {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border: none;
  animation: pulse-live 2s ease-in-out infinite;
}
.btn-chaturbate.is-live:hover {
  background: linear-gradient(135deg, #34d369 0%, #1eb854 100%);
}

@keyframes pulse-live {
  0%, 100% { box-shadow: 0 4px 24px rgba(34, 197, 94, 0.40); }
  50%       { box-shadow: 0 4px 40px rgba(34, 197, 94, 0.80); }
}

/* ── WhatsApp CTA Section ───────────────────────────────────────── */
.wa-section {
  width: 100%;
  max-width: 460px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 22px 26px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.40);
}

.wa-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
}

.wa-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.65;
}

.wa-desc strong { color: rgba(255, 255, 255, 0.85); }

.btn-wa-cta {
  background: #a07040;
  color: #ffffff;
  padding: 14px 30px;
  font-size: 0.88rem;
  text-transform: none;
  letter-spacing: 0.04em;
}
.btn-wa-cta:hover { background: #b8844a; }

.wa-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
  flex-shrink: 0;
}

.wa-btn-icon img {
  width: 13px;
  height: 13px;
  object-fit: contain;
}

.wa-subtitle {
  font-style: italic;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.5;
}

/* ── Social Icons ───────────────────────────────────────────────── */
.socials {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  max-width: 460px;
  width: 100%;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  min-width: 0;
  flex-shrink: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease;
}

.social-icon:hover {
  transform: scale(1.18) translateY(-2px);
  background: rgba(255, 255, 255, 0.24);
}

.social-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ── Responsive ─────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .content { padding: 58px 24px 40px; }
  .lang-switcher { top: 14px; }
  .socials { gap: 10px; }
  .social-icon { width: 48px; height: 48px; }
  .social-icon img { width: 24px; height: 24px; }
}

@media (max-width: 400px) {
  .unit span  { font-size: 1.8rem; }
  .unit em    { font-size: 0.58rem; }
  .unit       { padding: 10px 6px 8px; gap: 4px; }
  .countdown  { gap: 6px; }

  .content { gap: 20px; padding: 58px 20px 40px; }

  .live-card, .wa-section { border-radius: 18px; }

  .wa-title { font-size: 1.1rem; }

  .socials { gap: 8px; }
  .social-icon { width: 44px; height: 44px; }
  .social-icon img { width: 22px; height: 22px; }
}

@media (max-width: 340px) {
  .unit span  { font-size: 1.5rem; }
  .unit em    { font-size: 0.52rem; }
  .unit       { padding: 8px 4px 6px; }
  .countdown  { gap: 4px; }

  .socials { gap: 6px; }
  .social-icon { width: 40px; height: 40px; }
  .social-icon img { width: 20px; height: 20px; }
}

/* ── Footer ─────────────────────────────────────────────────────── */
.site-footer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  letter-spacing: 0.04em;
  padding-top: 4px;
}
