/* Centering container for video page */
.video-page-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #f9f9f9;
  padding: 20px;
}

/* Styling for video wrapper */
.video-wrapper {
  text-align: center;
  max-width: 800px;
  width: 100%;
  padding: 20px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* Centered video styling */
.center-video {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Text styling below the video */
.coming-soon-text {
  font-size: 1.2em;
  color: #333;
  font-weight: 500;
  margin-top: 10px;
}

/* Back button styling */
.back-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1em;
  font-weight: bold;
  color: #fff;
  background-color: #000;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s, transform 0.2s;
}

.back-btn:hover {
  background-color: #444;
  transform: translateY(-2px);
}
