body {
  font-family: Arial, sans-serif;
  background: url('assets/background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #333;
  margin: 0;
  padding: 70px;
  padding-top: 5px;
  text-align: center;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  body {
    padding: 10px;
    padding-top: 5px;
  }
}

video {
  max-width: 100%;
  width: 100%;
  height: auto;
  max-height: 90vh; /* Limit height to 60% of viewport */
  border-radius: 12px;
  padding-top: 0px !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  margin-bottom: 20px;
  background-color: #000; /* Black background while loading */
}



/* Mobile video adjustments */
@media (max-width: 768px) {
  video {
    border-radius: 8px;
    margin-bottom: 10px;
    max-height: 40vh; /* Smaller max-height for mobile */
  }
}

@media (max-width: 480px) {
  video {
    max-height: 45vh; /* Even smaller for very small screens */
    margin-bottom: 8px;
  }
}

@media (max-width: 360px) {
  video {
    max-height: 40vh;
    margin-bottom: 5px;
  }
}

/* Simple video container */
.video-container {
  position: relative;
  display: inline-block;
  max-width: 100%;
  width: 100%;
  margin-top: 5px;
}

/* Mobile video container */
@media (max-width: 768px) {
  .video-container {
    border-radius: 8px;
  }
}

.callout-text {
  font-family: 'Chau Philomene One', sans-serif;
  font-weight: bold;
  font-size: 4rem;
  color: #222;
  margin: 20px 0;
  line-height: 1.1;
}

/* Mobile text sizing */
@media (max-width: 768px) {
  .callout-text {
    font-size: 2.2rem;
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .callout-text {
    font-size: 1.8rem;
    margin: 8px 0;
  }
}

@media (max-width: 360px) {
  .callout-text {
    font-size: 1.5rem;
    margin: 5px 0;
  }
}

.callout-text-arriba {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.logo-strip {
  max-width: 100%;
  height: auto;
  margin-top: 30px;
  margin-bottom: 40px;
  transition: transform 0.2s;
  cursor: pointer;
}

.logo-strip:hover {
  transform: scale(1.02);
}

/* Mobile logo spacing */
@media (max-width: 768px) {
  .logo-strip {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.poster {
  max-width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.poster:hover {
  transform: scale(1.02);
}

/* Mobile poster spacing */
@media (max-width: 768px) {
  .poster {
    margin-top: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
  }
} 