body {
  color: white;
  font-family: Arial, sans-serif;
  text-align: center;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #fff;
}

p {
  font-size: 16px;
  opacity: 0.8;
}

.video-wrapper {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

video {
  width: 100%;
  display: block;
  border: 2px solid white;
  border-radius: 10px;
  margin-top: 20px;
}

/* Message overlay */
.message {
  position: absolute;
  left: 0;
  bottom: 15%;
  width: 100%;
  text-align: center;
  color: #fff;
  font-family: Georgia, serif;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 3s ease forwards;
  animation-delay: 8s;
}

.to {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.text {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.from {
  font-size: 1rem;
  opacity: 0.8;
}

@keyframes fadeIn {
  to { opacity: 1; }
}
