:root {
  --bg-color: #E7E7D9;
  --stripe-gradient: linear-gradient(45deg, #E3E1D2 25%, #E7E5D5 25%, #E7E7D9 50%, #E5E3D4 50%, #E9E7D8 75%, #E6E4D5 75%);
  --stripe-size: 2px 2px;
  --bold-font: "Arial Black", "Helvetica Bold", "Impact", "Franklin Gothic Medium", "Arial Narrow Bold", sans-serif;
}

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

html,
body {
  height: 100%;
  background: var(--stripe-gradient);
  background-size: var(--stripe-size);
  background-color: var(--bg-color);
}

main {
  min-height: 100vh;
}

.btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  font-family: var(--bold-font);
  padding: 1.2rem 2.8rem;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 12px;
  min-width: 180px;
  letter-spacing: 1.2px;
  position: relative;
  overflow: hidden;

  border: 4px solid #ffffff;
  background: linear-gradient(145deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 20, 0.9));
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3);
  text-shadow: 0 0 8px #dc2626, 0 0 4px #dc2626, 0 2px 4px rgba(0, 0, 0, 0.8);

  border: 4px solid #b91c1c;
}

.btn:hover {
  background: linear-gradient(145deg, #dc2626, #b91c1c);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.6), 0 8px 16px rgba(220, 38, 38, 0.4);
  text-shadow: 0 0 12px #ffffff, 0 0 6px #ffffff, 0 2px 6px rgba(0, 0, 0, 1);
  border-color: #ffffff;
  transform: translateY(-3px) scale(1.03);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}


.split-layout {
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.poster-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.buttons-section {
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 50rem;
}

@media (orientation: portrait), (orientation: landscape) and (max-width: 768px) {
  .split-layout {
    flex-direction: column;
    align-items: center;
  }

  .poster-section {
    padding: 1rem;
  }

  .buttons-section {
    flex: 1;
    padding: 1rem 1rem;
    justify-content: flex-start;
  }
}

@media (orientation: portrait) {
  .buttons-section {
    min-height: 30vh;
  }
}

@media (orientation: landscape) and (max-width: 768px) {
  .poster-section {
    min-height: 60vh;
  }
}

@media (orientation: landscape) and (min-width: 769px) {
  .split-layout {
    flex-direction: row;
    height: 100vh;
  }

  .poster-section {
    height: 100vh;
  }

  .buttons-section {
    padding: 2rem;
  }
}

.hero-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.hero-img {
  mask: linear-gradient(to bottom, transparent, black 5%, black 95%, transparent),
        linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-composite: intersect;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (orientation: portrait) {
  .hero-img-container {
    max-width: 90vw;
    max-height: 65vh;
  }

  .hero-img {
    max-width: 100%;
    max-height: 65vh;
    width: auto;
    height: auto;
  }
}

@media (orientation: landscape) and (min-width: 769px) {
  .hero-img-container {
    height: 100vh;
    max-width: none;
  }

  .hero-img {
    height: 100vh;
    max-height: 100vh;
    width: auto;
    max-width: none;
  }
}



@media (orientation: landscape) and (max-width: 768px) {
  .hero-img-container {
    max-width: 100%;
    max-height: 60vh;
  }

  .hero-img {
    max-height: 60vh;
    max-width: 100%;
  }
}

.button-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 400px;
  align-items: center;
}

.email-signup {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.email-input {
  padding: 1.2rem 1.5rem;
  border: 3px solid #34495e;
  background: rgba(52, 73, 94, 0.9);
  color: #ffffff;
  font-size: 1rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  font-family: var(--bold-font);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
  outline: none;
  border-color: #e74c3c;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 3px rgba(231, 76, 60, 0.3), 0 4px 12px rgba(0, 0, 0, 0.2);
  background: rgba(44, 62, 80, 0.95);
}

@media (min-width: 769px) {
  .email-signup {
    flex-direction: row;
  }

  .email-input {
    flex: 1;
  }

  .signup-btn {
    flex-shrink: 0;
  }
}

.video-player {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  border: 3px solid #b91c1c;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3);
  margin-top: 1rem;
  overflow: hidden;
  object-fit: fill;
  object-position: center;
}

@media (max-width: 540px) {
  .button-container {
    gap: 1rem;
    width: 90%;
    max-width: 320px;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    min-height: 48px;
  }

  .email-input {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
    min-height: 48px;
  }

}

