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

html,
body {
  background: #0a0a0a;
  height: 100%;
  min-height: 100%;
}

body {
  background: #0a0a0a;
  color: #f5f0e8;
  font-family: "Outfit", sans-serif;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  width: 100%;
}

.container {
  display: flex;
  flex-direction: column;
  height: 100svh;
  inset: 0;
  min-height: 100svh;
  position: fixed;
  width: 100%;
}

.video-wrap {
  inset: 0;
  overflow: hidden;
  position: absolute;
}

.video-wrap video {
  animation: none;
  filter: brightness(1.14) contrast(1.08) saturate(1.08);
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  transform: scale(1);
  width: 100%;
}

.vignette {
  background: radial-gradient(ellipse at center, transparent 52%, rgba(10, 10, 10, 0.45) 100%);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.gradient-overlay {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.42) 45%, transparent);
  inset: 0;
  position: absolute;
  top: 34%;
}

.dim-overlay {
  background: rgba(8, 8, 8, 0.05);
  inset: 0;
  position: absolute;
}

.grain {
  animation: grain 0.5s steps(1) infinite;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  position: absolute;
}

.content {
  margin-top: auto;
  padding: 16px 24px calc(16px + env(safe-area-inset-bottom));
  position: relative;
  text-align: center;
  z-index: 10;
}

.headline {
  animation: fade-up 0.6s 0.25s forwards;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(12px);
}

.headline .white {
  animation: white-glow 3s ease-in-out infinite;
  color: #f5f0e8;
}

.headline .gold {
  animation: gold-glow 2.5s ease-in-out infinite;
  color: #c9a96e;
  font-style: italic;
}

.cta-wrap {
  animation: scale-up 0.5s 0.5s forwards;
  margin: 0 auto 12px;
  max-width: 384px;
  opacity: 0;
  transform: scale(0.9);
}

.cta-btn {
  align-items: center;
  animation: cta-bounce 2.8s ease-in-out infinite, cta-pulse-glow 2.2s ease-in-out infinite;
  backdrop-filter: blur(12px);
  background: linear-gradient(135deg, rgba(0, 175, 240, 0.15) 0%, rgba(0, 175, 240, 0.05) 50%, rgba(0, 175, 240, 0.15) 100%);
  border: 1.5px solid rgba(0, 175, 240, 0.4);
  border-radius: 16px;
  display: flex;
  overflow: hidden;
  padding: 16px 20px;
  position: relative;
  text-decoration: none;
  transition: transform 0.3s;
  width: 100%;
}

.cta-btn:active {
  transform: scale(0.95);
}

.shine-sweep {
  animation: shine-sweep 3s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  inset: 0;
  position: absolute;
  transform: translateX(-100%);
}

.cta-content {
  align-items: center;
  display: flex;
  flex: 1;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.of-logo {
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(0, 175, 240, 0.3), 0 4px 12px rgba(0, 175, 240, 0.2);
  flex-shrink: 0;
  height: 44px;
  overflow: hidden;
  width: 44px;
}

.of-logo img,
.avatar img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cta-text-wrap {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}

.cta-main-text {
  color: #f5f0e8;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.cta-sub-text {
  color: rgba(0, 175, 240, 0.8);
  font-size: 11px;
  margin-top: 2px;
}

.cta-arrow {
  align-items: center;
  animation: cta-arrow-pulse 2.2s ease-in-out infinite;
  background: #00aff0;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 175, 240, 0.4);
  display: flex;
  height: 36px;
  justify-content: center;
  position: relative;
  transition: transform 0.3s;
  width: 36px;
  z-index: 1;
}

.cta-btn:hover .cta-arrow {
  transform: scale(1.1);
}

.bio-card {
  align-items: center;
  animation: fade-up 0.5s 0.62s forwards;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  display: flex;
  gap: 12px;
  margin: 0 auto 12px;
  max-width: 320px;
  opacity: 0;
  padding: 10px 16px;
  transform: translateY(8px);
}

.avatar-wrap {
  flex-shrink: 0;
  height: 40px;
  position: relative;
  width: 40px;
}

.avatar {
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(201, 169, 110, 0.4);
  height: 40px;
  overflow: hidden;
  width: 40px;
}

.avatar img {
  object-position: center 35%;
}

.verified-badge {
  align-items: center;
  background: rgba(201, 169, 110, 0.8);
  border: 2px solid #0a0a0a;
  border-radius: 50%;
  bottom: -2px;
  display: flex;
  height: 16px;
  justify-content: center;
  position: absolute;
  right: -2px;
  width: 16px;
}

.verified-badge svg {
  height: 10px;
  width: 10px;
}

.bio-text {
  display: flex;
  flex-direction: column;
}

.bio-text p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 14px;
  line-height: 1.4;
  text-align: left;
}

.online-indicator,
.location-wrap,
.trust-line {
  align-items: center;
  display: flex;
  justify-content: center;
}

.online-indicator {
  gap: 6px;
  margin-top: 2px;
  justify-content: flex-start;
}

.online-dot {
  height: 8px;
  position: relative;
  width: 8px;
}

.online-dot .ping {
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  background: #4ade80;
  border-radius: 50%;
  height: 100%;
  opacity: 0.75;
  position: absolute;
  width: 100%;
}

.online-dot .dot {
  background: #22c55e;
  border-radius: 50%;
  height: 8px;
  position: relative;
  width: 8px;
}

.online-text {
  color: rgba(74, 222, 128, 0.8);
  font-size: 11px;
}

.typing-dots {
  align-items: center;
  display: inline-flex;
  gap: 3px;
  margin-left: 4px;
}

.typing-dots span {
  background: rgba(245, 240, 232, 0.5);
  border-radius: 50%;
  height: 4px;
  width: 4px;
}

.typing-dots span:nth-child(1) {
  animation: typing-dot 1.4s ease-in-out infinite;
}

.typing-dots span:nth-child(2) {
  animation: typing-dot 1.4s ease-in-out 0.2s infinite;
}

.typing-dots span:nth-child(3) {
  animation: typing-dot 1.4s ease-in-out 0.4s infinite;
}

.location-wrap {
  animation: fade-in 0.5s 0.85s forwards;
  gap: 8px;
  margin-bottom: 8px;
  opacity: 0;
}

.location-badge {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  display: inline-flex;
  gap: 6px;
  padding: 4px 12px;
}

.location-badge svg {
  color: #f87171;
  height: 12px;
  width: 12px;
}

.location-badge span {
  color: rgba(245, 240, 232, 0.7);
  font-size: 11px;
  font-weight: 500;
}

.trust-line {
  animation: fade-in 0.5s 0.95s forwards;
  gap: 6px;
  opacity: 0;
}

.trust-line svg {
  color: rgba(245, 240, 232, 0.3);
  height: 12px;
  width: 12px;
}

.trust-line span {
  color: rgba(245, 240, 232, 0.3);
  font-size: 10px;
  letter-spacing: 0.05em;
}

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

@keyframes scale-up {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes grain {
  0%,
  100% {
    opacity: 0.03;
  }

  50% {
    opacity: 0.05;
  }
}

@keyframes typing-dot {
  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes cta-bounce {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-5px) scale(1.025);
  }
}

@keyframes cta-pulse-glow {
  0%,
  100% {
    border-color: rgba(0, 175, 240, 0.4);
    box-shadow: 0 0 0 0 rgba(0, 175, 240, 0.12), 0 8px 20px rgba(0, 175, 240, 0.18);
  }

  50% {
    border-color: rgba(0, 175, 240, 0.75);
    box-shadow: 0 0 0 12px rgba(0, 175, 240, 0), 0 12px 26px rgba(0, 175, 240, 0.34);
  }
}

@keyframes cta-arrow-pulse {
  0%,
  100% {
    box-shadow: 0 4px 12px rgba(0, 175, 240, 0.4);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 6px 18px rgba(0, 175, 240, 0.58);
    transform: scale(1.08);
  }
}

@keyframes shine-sweep {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@keyframes white-glow {
  0%,
  100% {
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.3), 0 0 12px rgba(255, 255, 255, 0.15);
  }

  50% {
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.5), 0 0 24px rgba(255, 255, 255, 0.25), 0 0 36px rgba(255, 255, 255, 0.1);
  }
}

@keyframes gold-glow {
  0%,
  100% {
    text-shadow: 0 0 8px rgba(201, 169, 110, 0.4), 0 0 16px rgba(201, 169, 110, 0.2);
  }

  50% {
    text-shadow: 0 0 16px rgba(201, 169, 110, 0.7), 0 0 32px rgba(201, 169, 110, 0.4), 0 0 48px rgba(201, 169, 110, 0.15);
  }
}

@keyframes ping {
  75%,
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
