:root {
  --bg-light: #ffffff;
  --bg-card: #f8f9fa;
  --accent-magenta: #e81c4f;
  --accent-magenta-hover: #ff2a61;
  --text-main: #1a1a1a;
  --text-muted: #555555;
  --nav-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
}

/* Typography styles */
h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
  color: var(--text-main);
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-main);
}

p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--glass-border);
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

.logo span {
  color: var(--accent-magenta);
}

/* Buttons */
.cta-button {
  display: inline-block;
  background: var(--accent-magenta);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 28, 79, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: var(--accent-magenta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 28, 79, 0.4);
}

.nav-btn {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.large-btn {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.mobile-only-btn {
  display: none;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* Hero Section */
.hero {
  padding: 120px 5% 40px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.hero-content {
  z-index: 10;
  position: relative;
}

.text-center {
  text-align: center;
}

.main-iframe-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 5%;
  display: flex;
  justify-content: center;
}

.hero-video-container {
  position: relative;
  width: 100%;
  max-width: 770px; /* Reduced by 30px as requested */
  height: 572px; /* Reduced by 50px as requested */
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  border: none;
  margin: 0 auto;
}

.hero-video-container iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* Social Proof */
.social-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px 5%;
  background: #fcfcfc;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
}

.proof-item i {
  color: var(--accent-magenta);
  font-size: 1.3rem;
}

/* Details Section */
.details {
  padding: 80px 5%;
  background: #fff;
}

.details-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  padding: 50px;
  border-radius: 24px;
  border: 1px solid var(--glass-border);
}

/* Payments Section */
.payments {
  text-align: center;
  padding: 60px 5%;
}

.payments p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-weight: 600;
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
}

.payment-icons i {
  font-size: 2.2rem;
  color: #888;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.payment-icons i:hover {
  color: var(--text-main);
  opacity: 1;
}

.paysafe {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #888;
  opacity: 0.6;
}

/* Footer */
footer {
  text-align: center;
  padding: 40px;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }

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

@keyframes fadeIn {
  to { opacity: 1; }
}

.pulse-anim {
  animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 12px 5%;
  }

  .mobile-only-btn {
    display: inline-block;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 30px;
  }

  .main-iframe-container {
    padding: 0 15px;
    margin-bottom: 40px;
  }

  .hero-video-container {
    max-width: 185px; /* Single column width */
    height: 2240px; /* Reduced by another 80px as requested */
    margin: 0 auto;
  }

  .social-proof {
    flex-direction: column;
    gap: 20px;
    padding: 30px 5%;
  }

  .details-content {
    padding: 30px 20px;
  }

  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
}
