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

body {
  background-color: #0d0d0d;
  color: #fff;
  font-family: "Helvetica", Arial, sans-serif;
  line-height: 1.4;
}

.text-primary {
  color: #9fe870;
}

.container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 0px;
}

/* Header */
.header {
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px !important;
}

.header-logo {
  display: flex;
  align-items: center;
  /* gap: 12px; */
  margin-left: 0px;
}

.logo-icon {
  width: 30px;
  height: 40px;
  /* background: #9fe870; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #0d0d0d;
}

.logo-text {
  font-size: 19px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Clash Display", sans-serif;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #9fe870;
}

/* Video Section */
.video-section {
  position: relative;
  width: 100%;
  /* background-color: #000; */
  min-height: 25vh;
  display: flex;
  justify-content: center;
}

@media (min-width: 769px) {
  .video-section {
    padding-top: 0px;
    padding-bottom: 0px;
  }

}

@media (max-width: 768px) {
  .video-container {
    height: auto;
    aspect-ratio: 16 / 9;
    position: relative;
  }

  .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .video-overlay {
    justify-content: flex-start;
    /* Start from top */
    align-items: center;
    padding: 0;
    padding-top: 60px;
    /* Add top padding to move content up */
  }

  .play-button {
    width: 70px !important;
    height: 70px !important;
    margin-bottom: 8px !important;
    border: 6px solid #ccc !important;
    position: static;
    margin-top: -50px !important;
  }

  .play-icon {
    font-size: 18px;
  }

  .video-status {
    font-size: 18px !important;
    text-align: center;
    margin: 0;
    line-height: 1.1;
    white-space: nowrap;
  }

  .unmute-text {
    font-size: 14px;
  }

  .viewer-count {
    position: absolute;
    top: 0px !important;
    /* Higher up */
    /*right: 100px;*/
    left: auto;
    transform: none;
    font-size: 12px !important;
    padding: 4px 8px !important;
    margin-bottom: 0;
  }

  .video-status .text-primary {
    font-size: 11px;
    margin-top: 2px;
    display: block;
  }

  .video-center-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 40px;
    /* Move the center group up */
  }
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  background-color: #000;
  overflow: hidden;
  max-width: 1700px;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #000;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background-color: #000;
  overflow: hidden;
}

.responsive-video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background-color: #000;
  overflow: hidden;
  height: 400px;
}

@media (min-width: 769px) {
  .video-container,
  .video-wrapper,
  .responsive-video-container {
    height: 70vh;
    padding-bottom: 0;
    min-height: 950px;
    max-height: 1000px;
  }
}

@media (max-width: 768px) {
  .video-container video,
  .video-wrapper video,
  .responsive-video-container video {
    object-fit: cover;
  }
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

video {
  max-height: 100%;
}

.intro-video {
  display: block;
}

.main-video {
  display: none;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 2;
  color: white;
  text-align: center;
  pointer-events: none;
}

.viewer-count {
  background: rgba(0, 0, 0, 0.39);
  padding: 8px 16px;
  /* border-radius: 20px; */
  font-size: 14px;
  margin-bottom: 30px;
  display: inline-block;
}

.play-button {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: white;
  border: 7px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  animation: pulse-ring 1s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.play-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

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

.play-icon {
  font-size: 30px;
  color: black;
}

.video-status {
  font-weight: bold;
  font-size: 24px;
}

.video-status .text-primary {
  display: block;
  margin-top: 10px;
}

/* Main Content */
.main-content {
  padding: 0px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.main-title {
  font-size: 46px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0;
  margin-top: 15px;
}

.subtitle {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.3;
  margin-top: 25px;
  font-weight: inherit;
}

.subtitle strong {
  color: #fff;
  font-weight: bold;
}

.action-button {
  background: transparent;
  border: 2px solid #9fe870;
  color: #fff;
  padding: 11px 32px;
  font-size: 20px;
  text-transform: uppercase;
  cursor: not-allowed;
  width: 90%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.action-button.enabled {
  cursor: pointer;
  background: white;
  color: #0d0d0d;
  font-weight: bold;
  margin-left: 20px;
}

.action-button.enabled:hover {
  background: #8fd660;
  transform: translateY(-2px);
}

.action-button.disabled {
  opacity: 0.6;
}

/* Footer */
.footer {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 20px;
  margin-top: 130px;
  width: 90%;
  gap: 60px;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.disclaimer {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  text-align: center;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .action-button.enabled {
    margin-left: 0;
  }

  .copyright {
    margin-right: 0px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .main-title {
    font-size: 34px;
    font-weight: normal;
  }

  .subtitle {
    font-size: 17px;
    font-weight: 50;
    margin-left: 70px;
    margin-right: 70px;
    margin-bottom: 10px !important;
    margin-top: 0;
  }

  .nav-links {
    display: none;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    margin-top: 0px;
    width: 100% !important;
  }
}

/* Video watched state */
.video-watched .action-button {
  background: white;
  color: #0d0d0d;
  cursor: pointer;
  font-weight: bold;
}

.video-watched .action-button::after {
  background-color: #9fe870;
}

.contact-arrows {
  display: none;
  justify-content: space-around;
  margin-top: 10px;
  animation: bounce 2s infinite;
}

.contact-arrows img {
  width: 64px;
  height: 64px;
  transform: rotate(180deg);
}

.arrows {
  display: none;
  justify-content: space-around;
  margin-top: 10px;
  animation: bounce 2s infinite;
}

.arrows img {
  width: 64px;
  height: 64px;
  transform: rotate(180deg);
}

.video-watched .arrows {
  display: flex;
}

.arrow {
  font-size: 48px;
  color: black;
}

.arrow img {
  width: 64px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.availability-section {
  display: none;
  padding: 10px 0;
}

.availability-section.visible {
  display: block;
}

.spots-grid {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  /* border-radius: 12px; */
  margin-bottom: 40px;
  position: relative;
  width: 100%;
  overflow-x: auto;
}

#spotsContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
  gap: 0 !important;
  /* No gap by default (mobile) */
}

@media (min-width: 768px) {
  #spotsContainer {
    flex-direction: row;
    /* Horizontal layout */
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 40px !important;
  }
}

.spots-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 10px;
  justify-items: center;
}

@media (max-width: 768px) {
  .logo-icon {
    margin-left: 10px;
  }

  .logo {
    margin-top: 30px;
    margin-left: -20px;
  }

  .spots-container {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    /* 5 columns */
    gap: 10px !important;
    padding: 10px 10px !important;
    justify-items: center;
    width: 100% !important;
    overflow: hidden !important;
  }

  .spots-grid {
    display: flex !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 10px auto !important;
    width: 90% !important;
    height: auto !important;
  }

  .spot {
    width: 70px !important;
    height: 100px !important;
    gap: 6px;
  }

  .spot-avatar {
    width: 40px !important;
    height: 40px !important;
  }

  .spot-status {
    font-size: 10px !important;
    padding: 2px 5px !important;
  }

  .urgency-section {
    flex-direction: column !important;
    text-align: center !important;
    gap: 20px !important;
  }

  .urgency-message {
    flex-direction: column !important;
    gap: 15px !important;
    text-align: center;
  }

  .warning-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 24px !important;
  }

  .urgency-text h3 {
    font-size: 24px !important;
  }

  .urgency-text p {
    font-size: 20px !important;
  }

  .gain-access-btn {
    width: 81% !important;
    min-width: auto !important;
    font-size: 16px !important;
    padding: 10px 30px !important;
  }

  .access-button {
    /* margin-left: 80px !important; */
  }

  .availability-section {
    display: none;
    padding: 7px 0;
  }
}

.spot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  user-select: none;
  width: 90px;
  height: 130px;
  text-align: center;
}

.spot-avatar {
  width: 98px;
  height: 130px;
  border-radius: 50%;
  background: #555;
  background-image: url("/images/human.png");
  background-size: cover;
  position: relative;
  transition: all 0.3s ease;
}

.spot.taken .spot-avatar {
  filter: grayscale(100%);
  opacity: 0.5;
}

.spot.free .spot-avatar {
  filter: none;
  opacity: 1;
  background-color: #9fe870;
}

.spot.loading .spot-avatar {
  background: #333;
  background-image: none;
}

.spot.loading .spot-avatar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(51, 51, 51, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.spot.loading .spot-avatar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 3;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.spot-status {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 12px;
  /* border-radius: 12px; */
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.spot.free .spot-status {
  color: #9fe870;
  opacity: 1;
}

.loading-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0d0d0d, transparent);
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 0px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.loading-overlay.visible {
  opacity: 1;
}

.loading-text {
  font-size: 32px;
  text-align: center;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.urgency-section {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.urgency-section.visible {
  display: flex;
}

.urgency-message {
  display: flex;
  align-items: center;
  gap: 20px;
}

.warning-icon {
  width: 60px;
  height: 60px;
  background: #2a2b2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  color: white;
}

.urgency-text h3 {
  color: #9fe870;
  font-size: 32px;
  font-weight: bold;
  margin: 0;
}

.urgency-text p {
  font-size: 32px;
  margin: 0;
}

.gain-access-btn {
  background: #9fe870;
  color: #0d0d0d;
  border: none;
  padding: 16px 40px;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  /* border-radius: 8px; */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 450px;
  transition: all 0.3s ease;
}

.gain-access-btn:hover {
  background: #8fd660;
  transform: translateY(-2px);
}

.gain-access-btn .arrow {
  /* transform: rotate(45deg); */
  font-size: 24px;
}

/* Final Step Section */
.final-step-section {
  display: none;
  padding: 0px 0;
  background: #0d0d0d;
}

.final-step-section.visible {
  display: block;
}

.final-step-title {
  text-align: center;
  margin-bottom: 23px;
  margin-top: 20px;
}

.final-step-title h2 {
  font-size: 80px;
  font-weight: 700;
  color: #9fe870;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  line-height: 1;
}

.final-step-title p {
  font-size: 32px;
  color: #fff;
  margin: 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 50px;
}

@media (min-width: 1024px) {
  .metrics-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.metric-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 1024px) {
  .metric-card {
    flex-direction: column;
    max-width: none;
  }
}

@media (max-width: 412px) {
  .form-left {
    /* margin-left: 29px !important; */
  }
}

@media (max-width: 480px) {
  .form-left {
    /* margin-left: 24px !important; */
  }
}

@media (max-width: 768px) {
  .banner {
    display: flex;
    justify-content: center !important;
    width: 100% !important;
    margin-top: 30px;
  }
  .metric-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    max-width: 370px;
    margin: 0 auto;
    width: 90%;
    height: 104px;
  }

  .final-step-title {
    margin-bottom: 12px;
    margin-top: 10px;
  }

  .metric-visual {
    height: 91px !important;
    width: 80px !important;
  }

  .form-right {
    padding: 11px !important;
  }

  .profit-control {
    width: 90% !important;
    height: 130px;
    margin-bottom: 16px;
  }

  .footer {
    padding: 15px 0 !important;
  }

  .form-left {
    /* margin-left: 30px; */
  }
}

.metric-visual {
  position: relative;
  height: 370px;
  background: #222;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-visual-1 {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0MDAgMzAwIj48cmVjdCBmaWxsPSIjMTExIiB3aWR0aD0iNDAwIiBoZWlnaHQ9IjMwMCIvPjxjaXJjbGUgY3g9IjIwMCIgY3k9IjE1MCIgcj0iODAiIGZpbGw9IiMzMzMiLz48L3N2Zz4=");
}

.metric-visual-2 {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0MDAgMzAwIj48cmVjdCBmaWxsPSIjMTExIiB3aWR0aD0iNDAwIiBoZWlnaHQ9IjMwMCIvPjxjaXJjbGUgY3g9IjIwMCIgY3k9IjE1MCIgcj0iODAiIGZpbGw9IiMzMzMiLz48L3N2Zz4=");
}

.metric-visual-3 {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0MDAgMzAwIj48cmVjdCBmaWxsPSIjMTExIiB3aWR0aD0iNDAwIiBoZWlnaHQ9IjMwMCIvPjxjaXJjbGUgY3g9IjIwMCIgY3k9IjE1MCIgcj0iODAiIGZpbGw9IiMzMzMiLz48L3N2Zz4=");
}

.metric-icon-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metric-glow {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(255, 255, 255, 0.5);
}

.metric-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(to bottom, #333, #2a2a2a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
  position: relative;
  z-index: 2;
}

.metric-icon svg {
  width: 65px;
  height: 65px;
  fill: #fff;
}

.metric-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.metric-title {
  font-size: 32px;
  font-weight: 500;
  color: #fff;
  margin: 0;
}

.metric-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.metric-value {
  font-size: 36px;
  font-weight: 600;
  color: #9fe870;
  margin: 0;
}

.metric-indicator {
  width: 30px;
  height: 30px;
  border: 2px solid #9fe870;
  border-radius: 50%;
  padding: 5px;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

.metric-indicator-dot {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 50%;
}

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

.earnings-title {
  font-size: 80px;
  font-weight: 700;
  color: #9fe870;
  text-transform: uppercase;
  margin: 0 0 80px 0;
  line-height: 1;
}

.profit-calculator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.profit-label {
  display: flex;
  align-items: center;
  gap: 20px;
}

.warning-icon-profit {
  width: 50px;
  height: 50px;
  background: #232423;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.profit-label p {
  font-size: 36px;
  color: #fff;
  margin: 0;
}

.profit-control {
  background-color: rgb(28 28 28 / var(--tw-bg-opacity));
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  position: relative;
  max-width: 600px;
  width: 100%;
  height: 105px;
  --tw-bg-opacity: 1;
}

.days-label {
  position: absolute;
  top: -20px;
  left: 2%;
  background-color: rgb(28 28 28 / var(--tw-bg-opacity));
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 8px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  --tw-bg-opacity: 1;
}

.days-value {
  color: #9fe870;
}

.profit-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: -10px;
}

.profit-slider {
  flex: 1;
  min-width: 275px;
  position: relative;
  /* Add this */
}

.profit-slider input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.profit-slider::before {
  content: "";
  position: absolute;
  top: 65%;
  left: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transform: translateY(-50%);
  width: var(--slider-progress, 20%);
  /* Remove the calc() and -10px */
  pointer-events: none;
  z-index: 1;
}

.profit-slider input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 6px rgba(255, 255, 255, 0.8),
    0 0 12px rgba(255, 255, 255, 0.4), 0 0 18px rgba(255, 255, 255, 0.2);
}

.profit-slider input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  margin-top: -7px;
  /* Adjust as needed */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 6px rgba(255, 255, 255, 0.8),
    0 0 12px rgba(255, 255, 255, 0.4), 0 0 18px rgba(255, 255, 255, 0.2);
}

/* Add appearance: none for better cross-browser support */
.profit-slider input[type="range"] {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  /* Change from rgba to transparent */
  border-radius: 2px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
}

.profit-display {
  font-size: 48px;
  font-weight: bold;
  color: #aaff15;
  text-align: center;
  min-width: 200px;
}

/* Countdown Section */
.countdown-section {
  text-align: center;
  padding: 20px 0;
  display: none;
}

.countdown-section.visible {
  display: block;
}

.countdown-text {
  font-size: 36px;
  color: #fff;
  margin-bottom: 20px;
}

.countdown-text .start-making {
  color: #9fe870;
  font-weight: bold;
}

.countdown-timer {
  font-size: 120px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Contact Form Section */
.contact-form-section {
  display: none;
  padding: 0px 0;
  /* background: #000; */
}

.contact-form-section.visible {
  display: block;
}

.form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 0px;
  padding: 0 20px;
  /* margin-top: -50px; */
}

.form-left {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.form-title {
  font-size: 48px;
  font-weight: inherit;
  color: #9fe870;
  margin-bottom: 10px;
  line-height: 1.1;
}

.form-subtitle {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1.1;
}

.form-arrows {
  display: flex;
  gap: 20px;
  /* margin-bottom: 0px; */
  /* margin-left: 110px; */
  width: 60%;
  justify-content: center;
}

.form-arrow {
  font-size: 48px;
  color: #9fe870;
  animation: slideRight 0.5s infinite;
}

.form-arrow:nth-child(2) {
  animation-delay: 0.2s;
}

.form-arrow:nth-child(3) {
  animation-delay: 0.4s;
}

.form-arrow:nth-child(4) {
  animation-delay: 0.6s;
}

.form-arrow:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes slideRight {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.5;
  }

  50% {
    transform: translateX(10px);
    opacity: 1;
  }
}

/* .no-experience {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 46px;
            border-radius: 30px;
            border: 2px solid rgba(255, 255, 255, 0.2);
        } */

.exclamation-icon {
  width: 50px;
  height: 50px;
  background: #1a1818;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 18px;
}

.no-experience-text {
  color: #fff;
  font-size: 34px;
  font-weight: 500;
}

.form-right {
  /* background: rgba(255, 255, 255, 0.05); */
  padding: 40px;
  border-radius: 12px;
  /* border: 1px solid rgba(255, 255, 255, 0.1); */
  /* margin-top: 55px; */
}

.form-group {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  /* border-radius: 8px; */
  color: #fff;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-input:focus {
  outline: none;
  border-color: #9fe870;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.phone-input-container {
  display: flex;
  gap: 10px;
}

.country-code {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 16px;
  color: #fff;
  font-size: 16px;
  min-width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-btn {
  width: 100%;
  background: #9fe870;
  color: #000;
  border: none;
  padding: 18px;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  /* border-radius: 8px; */
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #8fd660;
  transform: translateY(-2px);
}

.security-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.security-badge {
  opacity: 0.6;
  font-size: 14px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.details {
  display: block;
}

.arrows svg {
  color: #9fe870;
}

@media (max-width: 768px) {
  .details {
    display: none;
  }

  .experience {
    width: 100%;
    justify-content: center;
  }

  .metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(to bottom, #333, #2a2a2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 2;
  }

  .metric-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
  }

  .no-experience-text {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
  }

  .exclamation-icon {
    width: 42px;
    height: 42px;
    background: #1a1818;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 18px;
  }

  .form-right {
    margin-top: -15px !important;
    margin: auto;
  }

  .form-arrows {
    margin-bottom: -30px !important;
    /* margin-left: 70px; */
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    order: 1;
  }

  .contact-form-section {
    padding: 0px 0 !important;
  }

  .video-section {
    margin-bottom: 0px !important;
    height: 400px;
  }

  .form-group {
    margin-bottom: 10px;
  }

  .form-input {
    padding: 15px 19px;
  }

  .form-container {
    grid-template-columns: 1fr;
    gap: 23px;
    text-align: center;
    padding: 0 10px !important;
    margin-top: 15px;
  }

  .form-title,
  .form-subtitle {
    font-size: 34px;
  }

  .form-title {
    font-size: 33px !important;
    margin-bottom: 5px !important;
    width: 100%;
  }

  .no-experience {
    gap: 5px !important;
    /* padding: 10px 42px !important;
                margin-left: 11px; */
    width: 100%;
    display: flex;
    justify-content: center;
    order: 0;
    align-items: center;
  }

  .form-subtitle {
    /* margin-left: 75px; */
    margin-bottom: 5px !important;
    font-size: 30px !important;
    width: 100%;
    font-weight: inherit;
  }

  .countdown-text {
    font-size: 20px;
    margin-bottom: 0 !important;
  }

  .countdown-timer {
    font-size: 60px;
  }

  .final-step-title h2 {
    font-size: 37px;
    margin-bottom: 5px;
  }

  .metrics-grid {
    margin-bottom: 23px !important;
    gap: 17px;
  }

  .final-step-title p {
    font-size: 24px;
  }

  .submit-btn {
    width: 100%;
    font-size: 15px;
  }

  .earnings-title {
    font-size: 30px;
    margin-bottom: 15px !important;
  }

  .profit-label {
    gap: 5px;
  }

  .metric-title {
    font-size: 19px;
  }

  .metric-value {
    font-size: 28px;
  }

  .profit-label p {
    font-size: 22px;
  }

  .profit-display {
    font-size: 32px;
  }

  .profit-calculator {
    flex-direction: column;
    text-align: center;
  }

  .profit-controls {
    flex-direction: column;
    gap: 7px;
    margin-top: -10px;
  }

  .loading-text {
    font-size: 20px;
    text-align: center;
    animation: pulse 1.5s ease-in-out infinite;
    margin-bottom: 10px !important;
  }
}

.iti__country-list--dropup {
  background-color: black !important;
}

.iti {
  width: 100% !important;
}

.unmute-text {
  color: limegreen;
  font-size: 18px;
  margin-top: 5px;
}

.viewer-count {
  position: absolute;
  top: 0px;
  /* background-color: rgba(0, 0, 0, 0.7); */
  padding: 6px 12px;
  /* border-radius: 20px; */
  font-size: 14px;
  font-weight: bold;
}

.iti__country-list {
  background-color: black !important;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
  background-color: #111;
  margin: 60px auto;
  padding: 30px;
  border: 1px solid #555;
  width: 90%;
  max-width: 800px;
  color: #fff;
  border-radius: 8px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}

.modal-text {
  font-size: 16px;
  line-height: 1.6;
}

.modal .close {
  color: #aaa;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 30px;
  cursor: pointer;
}

.modal .close:hover {
  color: #fff;
}

body.modal-open {
  overflow: hidden;
}

/* Video Controls Styling */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px 4px;
  /* bottom space for progress bar */
  box-sizing: border-box;
  color: white;
  font-family: Arial, sans-serif;
  font-size: 14px;
  z-index: 1000;
}

/* Wrapper around progress to fit layout */
.progress-wrapper {
  flex: 1;
  position: relative;
  height: 20px;
  /* reserve space */
  display: flex;
  align-items: flex-end;
}

/* Slim, flush progress track */
.progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #444;
  /* dark track */
  /* border-radius: 2px; */
  overflow: hidden;
  pointer-events: none;
}

/* Green progress fill */
.progress-bar {
  height: 100%;
  background: #9fe870;
  width: 0%;
  position: relative;
  transition: width 0.1s ease;
}

/* White circular handle */
.progress-bar::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 12px;
  background: white;
  border-radius: 50%;
}

/* Control button styles */
.control-btn,
.fullscreen-btn {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s ease;
}

.control-btn:hover,
.fullscreen-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.time-display {
  min-width: 80px;
  text-align: right;
  font-size: 13px;
  font-weight: normal;
  color: white;
}

/* Additional controls on the right */
.additional-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.menu-dots {
  display: flex;
  gap: 2px;
  padding: 8px;
  cursor: pointer;
}

.menu-dots span {
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
}

.fullscreen-btn {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 16px;
}

.fullscreen-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Position video containers relatively */
.video-container {
  position: relative;
  height: 400px;
}

@media (min-device-width: 769px) and (max-device-width: 1366px) {
    .banner {
  display: flex;
  justify-content: end;
  margin-top: 35px;
  width: 78% !important;
}
  .header-content {
    display: flex !important;
    justify-content: space-around !important;
    align-items: center !important;
  }

  .main-container {
    max-width: 750px;
  }

  .ipad-container {
    max-width: 770px;
  }

  #spotsContainer {
    gap: 0px !important;
    padding: 20px;
  }

  .spot-avatar {
    width: 43px !important;
    height: 42px !important;
  }

  .spot {
    height: 75px;
  }

  .spots-container {
    grid-template-columns: repeat(5, 1fr);
    grid-auto-rows: auto;
  }

  .spot-status {
    font-size: 9px;
  }

  .spots-grid {
    padding: 0px;
  }

  .urgency-section.visible {
    display: flex;
    justify-content: center;
  }

  .profit-calculator {
    display: flex;
    justify-content: center;
  }

  .metric-visual {
    height: 110px;
    width: 85px;
  }

  .metric-card {
    flex-direction: row;
    max-width: 540px;
    padding: 13px;
  }

  .metric-icon {
    width: 75px;
    height: 75px;
  }

  .metric-icon svg {
    width: 50px;
    height: 50px;
  }

  .countdown-text {
    margin-bottom: 0;
  }

  .countdown-timer {
    font-size: 70px;
  }

  .final-step-title {
    margin-top: 10;
  }

  .final-step-title h2 {
    font-size: 47px;
    margin: 0;
  }

  .countdown-section {
    padding: 10px 0;
  }

  .earnings-title {
    font-size: 37px;
    margin: 0px 0 20px 0;
  }

  .metrics-grid {
    margin-bottom: 30px;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 31px;
  }

  .profit-control {
    max-width: 700px;
  }

  .form-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    text-align: center;
    gap: 15px;
    width: 100%;
    max-width: 1000px;
  }

  .form-left {
    width: 100%;
    align-items: center;
    margin-top: 30px;
  }

  .form-right {
    width: 95%;
    /* optional spacing between sections */
    padding: 0px 170px 42px 218px;
  }

  .form-subtitle {
    font-size: 44px;
    margin-bottom: 10px;
  }

  .form-arrows {
    order: 2;
  }

  .no-experience {
    order: 1;
  }

  .video-container,
  .video-wrapper,
  .responsive-video-container {
    height: 0vh;
    min-height: 466px;
  }

  .video-wrapper video {
    object-fit: cover;
  }

  .earnings-section {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-content: center;
    align-items: center;
  }
}

.fullscreen-fake {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: black;
}

#mainProgressContainer,
#finalProgressContainer {
  pointer-events: none;
}

#mainVideoControls,
#finalMainVideoControls {
  display: none;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  height: 400px;
}

.intro-video {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.video-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.81);
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

#finalIntroVideo,
#finalIntroVideoOverlay {
  display: none !important;
}

#countdownSection {
  display: none;
}
#countdownSection.visible {
  display: block;
}
#contactFormSection {
  display: none;
}
#contactFormSection.visible {
  display: block;
}

.video-container mux-player,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #000;
}

@media (min-width: 769px) {
  .video-container,
  .video-wrapper,
  .responsive-video-container {
    height: 70vh;
    padding-bottom: 0;
    min-height: 950px;
    max-height: 1000px;
  }
}

@media (max-width: 768px) {
  .video-container mux-player,
  .video-container video,
  .video-wrapper mux-player,
  .video-wrapper video,
  .responsive-video-container mux-player,
  .responsive-video-container video {
    object-fit: cover;
  }

  .resume-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  .resume-btn {
    width: 65%;
    justify-content: center;
  }
}

.video-wrapper mux-player,
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

mux-player,
video {
  max-height: 100%;
}

/* Mux Player Styles */
mux-player {
  --controls: none;
  --media-object-fit: cover;
  --media-object-position: center;
}

/* Hide Mux Player controls initially */
mux-player::part(controls) {
  display: none !important;
}

/* Show controls when needed */
.show-controls mux-player::part(controls) {
  display: flex !important;
}

.progress-container {
  cursor: pointer;
  /* Added this */
  /* pointer-events: none; <- Removed this */
}

mux-player::part(controls) {
  display: none !important;
}

mux-player::part(control-bar) {
  display: none !important;
}

.final-main-video {
  display: block !important;
}

/* === Resume Overlay === */
.resume-overlay {
  position: absolute;
  inset: 0;
  background: rgba(155, 233, 135, 0.85); /* green veil */
  display: none;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 20;
  padding: 24px;
}
.resume-overlay.visible {
  display: flex;
}
.resume-card {
  max-width: 640px;
  width: 100%;
}
.resume-title {
  font: 700 20px/1.3 system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  letter-spacing: 0.3px;
  color: #0a0a0a;
  margin-bottom: 20px;
}
.resume-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.resume-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  padding: 14px 18px;
  font: 600 14px/1 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  cursor: pointer;
  background: #0f0f0f;
  color: #fff;
}
.resume-btn.secondary {
  background: #222;
}
.resume-icon {
  font-size: 16px;
}

.resume-overlay {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* default off */
}
.resume-overlay.visible {
  display: flex;
  pointer-events: auto; /* clickable when visible */
  z-index: 9999;
}

.banner {
  display: flex;
  justify-content: end;
  
  width: 100%;
}
.iti-mobile .iti__country-list {
  max-height: 86%;
  width: 86%;
}
