/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #ffffff;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Top Black Bar */
.top-bar {
  width: 100%;
  height: 12px;
  background-color: #000000;
}

/* Header */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 20px 30px;
  background-color: #ffffff;
}

.logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

/* Divider */
.divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  margin: 0 auto 30px;
  background: linear-gradient(90deg, transparent, #c9a45c 20%, #d4af37 50%, #c9a45c 80%, transparent);
  opacity: 0.6;
}

/* Main Content */
.main-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 60px;
  text-align: center;
}

/* Category Badge */
.category-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid #333333;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #333333;
  margin-bottom: 20px;
  text-transform: capitalize;
}

/* Headline */
.headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(30px, 5.5vw, 46px);
  font-weight: 600;
  font-style: normal;
  color: #0d0d0d;
  margin-bottom: 15px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

/* Subheadline */
.subheadline {
  font-size: 14px;
  font-weight: 400;
  color: #555555;
  margin-bottom: 30px;
}

/* Video Container */
.video-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 30px;
  border-radius: 0;
  overflow: hidden;
  background-color: #0000ff;
  aspect-ratio: 16 / 9;
  position: relative;
}

/* Ensure video fills container */
.video-container vturb-smartplayer {
  width: 100% !important;
  height: 100% !important;
}

/* CTA Button Container */
.cta-container {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.cta-button {
  background: linear-gradient(180deg, #f59e0b 0%, #ea580c 100%);
  color: #ffffff;
  padding: 18px 48px;
  border: none;
  border-radius: 12px;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(234, 88, 12, 0.4);
  transition: all 0.3s ease;
  text-transform: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(234, 88, 12, 0.5);
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
}

.cta-button:active {
  transform: translateY(0);
}

/* Viewers Counter */
.viewers-counter {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666666;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #00cc66;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
      opacity: 1;
      transform: scale(1);
  }

  50% {
      opacity: 0.6;
      transform: scale(1.1);
  }
}

.eye-icon {
  font-size: 14px;
  opacity: 0.7;
}

.viewer-count {
  font-weight: 600;
  color: #333333;
}

.viewer-text {
  color: #777777;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .header {
      padding: 20px 15px 25px;
  }

  .logo {
      height: 55px;
  }

  .main-content {
      padding: 0 15px 40px;
  }

  .headline {
      font-size: 26px;
  }

  .category-badge {
      font-size: 12px;
      padding: 5px 16px;
  }

  .subheadline {
      font-size: 13px;
  }
}

@media (max-width: 480px) {
  .logo {
      height: 45px;
  }

  .headline {
      font-size: 24px;
  }

  .viewers-counter {
      font-size: 13px;
  }
}