body {
  margin: 0;
  padding: 20px;
  font-family: Arial, sans-serif;
  background: #f0f0f0;
}

h1 {
  text-align: center;
  color: #333;
  margin-bottom: 40px;
  font-size: 2.5em;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.video-container {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.photo-container {
  position: relative;
  background: white;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  overflow: hidden;
}

.photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.number {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0,0,0,0.7);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-weight: bold;
}

.word-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 2em;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
  pointer-events: none;
}

.photo-container:hover .photo {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.photo-container:hover .word-overlay {
  opacity: 1;
}

.questions-container {
  max-width: 1200px;
  margin: 40px auto;
  overflow: hidden;
  padding: 20px;
}

.question {
  font-size: 2em;
  color: #333;
  margin: 40px 0;
  white-space: nowrap;
  animation: scrollText 20s linear infinite;
  opacity: 0.9;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  font-weight: bold;
}

.question:nth-child(2n) {
  animation-direction: reverse;
}

.question:nth-child(3n) {
  animation-duration: 25s;
}

.question:nth-child(4n) {
  animation-duration: 22s;
}

.question:nth-child(5n) {
  animation-duration: 28s;
}

@keyframes scrollText {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@media (max-width: 768px) {
  .question {
    font-size: 1.5em;
    animation-duration: 15s !important;
  }
}