.newsletter-section {
  min-height: 65vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  margin-bottom: -140px;
}

.newsletter-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.newsletter-title {
  font-size: 100px;
  color: rgb(231, 231, 231);
  margin-bottom: -40px;
  font-family: 'Lalezar';
}

.newsletter-description {
  font-size: 26px;
  color: white;
  margin-bottom: 30px;
  font-family: 'Lalezar';
}

.convertkit-form {
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 769px) and (max-width: 1199px) and (orientation: landscape) {
  .newsletter-section {
    min-height: 55vh;
    padding: 130px 20px;
  }

  .newsletter-title {
    font-size: 80px;
  }

  .newsletter-description {
    font-size: 22px;
    margin-bottom: 25px;
  }
}

@media (min-width: 769px) and (max-width: 1199px) and (orientation: portrait) {
  .newsletter-section {
    min-height: 50vh;
    padding: 50px 80px;
  }

  .newsletter-title {
    font-size: 90px;
    margin-bottom: -25px;
  }

  .newsletter-description {
    font-size: 26px;
    margin-top: -45px;
    margin-bottom: 25px;
  }

  .convertkit-form {
    max-width: 500px;
  }
}

@media screen and (max-width: 768px) and (orientation: landscape) {
  .newsletter-section {
    min-height: 70vh;
    padding: 40px 15px;
    margin-bottom: -60px;
  }

  .newsletter-title {
    font-size: 50px;
    margin-bottom: -20px;
  }

  .newsletter-description {
    font-size: 18px;
    margin-bottom: 120px;
  }
}

@media screen and (max-width: 480px) {
  .newsletter-section {
    min-height: 60vh;
    padding: 40px 15px;
    margin-bottom: -60px;
  }

  .newsletter-title {
    font-size: 50px;
    margin-top: -120px;
    margin-bottom: -20px;
  }

  .newsletter-description {
    font-size: 18px;
    margin-bottom: -30px;
    line-height: 1.4;
  }

  .convertkit-form {
    max-width: 100%;
    margin-bottom: -140px;
  }
}

@media screen and (max-width: 360px) {
  .newsletter-title {
    font-size: 100px;
    margin-bottom: -15px;
  }

  .newsletter-description {
    font-size: 16px;
  }

  .newsletter-section {
    padding: 30px 10px;
    margin-bottom: -50px;
  }
}

/* VHS Section */
.vhs-stack a {
  display: block;
  text-decoration: none;
  margin: -1px;
  padding: 0;
  line-height: 0;
}

.vhs-stack a img {
  display: block; 
  margin: 0;
  padding: 0;
}

.vhs-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 55px;
  gap: 50px;
  max-width: 1400px;
  margin: 0 auto;
  margin-top: -50px;
  margin-bottom: -70px;
}

.vhs-stack {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  flex: 1 1 500px;
  padding: 10px;
}

.vhs-box {
  width: 100%;
  max-width: 900px;
  transition: all 0.3s ease;
  margin-left: 50px;
  filter: brightness(1);
  cursor: pointer;
}

.vhs-stack:hover .vhs-box:not(:hover) {
  filter: brightness(0.4);
  transform: scale(1);
}

.vhs-stack .vhs-box:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.vhs-static-wrap {
  flex: 1 1 250px;
  max-width: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vhs-static {
  width: 100%;
  height: auto;
  max-width: 450px;
}

@media (min-width: 769px) and (max-width: 1199px) and (orientation: portrait) {
  .vhs-section {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 0;
    margin: 0 auto;
  }
  
  .vhs-stack {
    width: 90%;
    max-width: 90%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .vhs-box {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
  
  .vhs-static-wrap {
    display: none !important;
  }
  
  .vhs-static {
    display: none !important;
  }
}

@media (min-width: 769px) and (max-width: 1199px) and (orientation: landscape) {
  .vhs-section {
    flex-direction: row;
    align-items: flex-start;
    padding: 40px 55px;
    gap: 50px;
    margin: 0 auto;
    margin-bottom: -60px;
  }
  
  .vhs-stack {
    flex: 1 1 500px;
    max-width: none;
    padding: 10px;
  }

  .vhs-static {
    width: 96%;
    margin-right: 30px;
    display: block !important;
    max-width: none;
  }

  .vhs-box {
    width: 100%;
    margin-left: 100px;
    margin-right: 70px;
    max-width: 900px;
  }

  .vhs-static-wrap {
    flex: 1 1 250px; 
    max-width: 460px;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .vhs-section {
    flex-direction: column;
    align-items: center;
    padding: 2px 0px;
    margin-bottom: -120px;
  }

  .vhs-stack,
  .vhs-static-wrap {
    max-width: 100%;
    flex: none;
  }

  .vhs-static {
    display: none !important;
  }
  
  .vhs-box {
    max-width: 100%;
    margin: auto;
  }
}