/* -------------------- */
/* GLOBAL STYLES        */
/* -------------------- */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  /*background: linear-gradient(180deg, #000 0%, #111 100%);*/
  background: #26282A;
  color: #fff;
  overflow-x: hidden;
}

.hero {
  min-height: 100vh;
  text-align: center;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

/* -------------------- */
/* TEXT STYLES          */
/* -------------------- */
.headline {
  font-size: 2.3rem;
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.subtext {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.watch-heading {
  color: #ff9800;
  font-size: 1.8rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.topHeading {
  color: #ff9800;
}

/* -------------------- */
/* VIDEO THUMBNAIL AREA */
/* -------------------- */
.video-thumbnail {
  position: relative;
  display: block;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;

  /* ✨ Improved border + glow */
  border: 2px solid rgba(255, 152, 0, 0.7);
  box-shadow: 0 0 35px rgba(255, 152, 0, 0.25);
  transition: all 0.3s ease;
}

.video-thumbnail:hover {
  transform: scale(1.02);
  box-shadow: 0 0 50px rgba(255, 152, 0, 0.4);
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
  transform: scale(1.05);
}

/* Play Icon Overlay */
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #ff9800 0%, #ff5722 80%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  color: #fff;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  box-shadow: 0 0 20px rgba(255, 152, 0, 0.7);
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
}

.video-thumbnail:hover .play-overlay {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
  box-shadow: 0 0 40px rgba(255, 152, 0, 1);
}

/* -------------------- */
/* BUTTON STYLES        */
/* -------------------- */
.btn-secondary {
  padding: 14px 28px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  background: #ff9800;
  color: #000;
  font-weight: 600;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #ffa726;
  transform: scale(1.05);
}

/* -------------------- */
/* POPUP STYLES         */
/* -------------------- */
.popup {
  display: none;
  position: fixed;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

.popup-content {
  background: #111;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  margin: 100px auto;
  position: relative;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 152, 0, 0.3);
  animation: popupFade 0.4s ease-in-out;
}

@keyframes popupFade {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup-content h2 {
  text-align: center;
  margin-top: 0;
  color: #ff9800;
  font-size: 1.6rem;
}

/* -------------------- */
/* FORM STYLES          */
/* -------------------- */
.form-group {
  margin-bottom: 15px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #333;
  border-radius: 6px;
  background: #222;
  color: #fff;
  transition: border 0.3s ease, background 0.3s ease;
}

.form-group input:focus {
  border-color: #ff9800;
  background: #1b1b1b;
  outline: none;
}

/* Submit button */
.btn {
  width: 100%;
  background: #ff9800;
  color: #000;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: #ffa726;
  transform: scale(1.03);
}

/* Close icon */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #fff;
}

/* -------------------- */
/* RESPONSIVE DESIGN    */
/* -------------------- */
@media (max-width: 768px) {
  .headline { 
    font-size: 1.7rem; 
  }

  .play-overlay { 
    width: 70px; 
    height: 70px; 
    font-size: 45px; 
  }

  .popup-content {
    margin: 70px auto;
  }
}

img.thumbnailImg {
  height: 500px;
  border-radius: 10px;
}


/* -------------------- */
/* RATING SECTION       */
/* -------------------- */
.rating-section {
  background: #1b1b1b;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.rating-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ff9800;
}

.rating-section p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
}

.rating-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.rating-card {
  background: #26282A;
  border: 1px solid #ff9800;
  border-radius: 10px;
  padding: 20px;
  max-width: 250px;
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 152, 0, 0.2);
}

.rating-card p {
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.rating-card span {
  font-size: 0.85rem;
  color: #ff9800;
}

/* -------------------- */
/* FOOTER STYLES        */
/* -------------------- */
.footer {
  background: #111;
  padding: 30px 20px;
  text-align: center;
  color: #ccc;
}

.footer a {
  color: #ff9800;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

