.trend-section {
  width: 100%;
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
}

/* .trend-container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
} */
.player-poster[data-poster] .play-wrapper[data-poster] {
  height: 15% !important;
}
.trend-content {
  flex: 1;
}

.trend-content h1 {
  font-size: 3rem;
  color: #ea4335;
  font-weight: 800;
  margin-bottom: 0.5rem;
  font-family: "YouTube Sans ExtraBold";
  text-align: center;
}

.trend-content h3 {
  font-size: 1.1rem;
  color: #212121;
  margin-bottom: 0.8rem;
  font-family: "YouTube Sans Bold";
  text-align: center;
}

.trend-content p {
  font-size: 20px;
  color: #212121;
  line-height: 1.3;
  margin: 0 auto;
  font-family: "YouTube Sans";
  text-align: center;
  max-width: 900px;
}

.bags-learn {
  position: absolute;
  right: 4rem;
  bottom: 0;
  width: 100px;
}

.bags-learn-left {
  position: absolute;
  left: 4rem;
  bottom: 0;
  width: 110px;
}
.challenge-sub-head {
  font-size: 30px !important;
  color: #000 !important;
  /* margin-bottom: 5px; */
  margin: 0 0 0 5px !important;
}
/* Responsive Design */
@media (max-width: 768px) {
  .trend-container {
    flex-direction: column;
    text-align: center;
  }

  .trend-icon {
    width: 50px;
  }

  .trend-content h1 {
    font-size: 1.8rem;
  }

  .trend-content h3 {
    font-size: 1rem;
  }

  .trend-content p {
    font-size: 0.9rem;
  }
  .challenge-sub-head {
    font-size: 25px !important;
  }
  .challenge-content .desc {
    font-size: 19px !important;
    margin: 10px 0 !important;
  }
}

@media (max-width: 480px) {
  .trend-content h1 {
    font-size: 30px;
  }

  .trend-content p {
    font-size: 0.85rem;
  }

  .trend-icon {
    width: 40px;
  }
  .trend-section {
    padding: 2rem 1rem 5rem;
  }
}

/* Trend cards layout */
:root {
  --bg: #f1f4f5;
  --blue: #4285f4;
  /* adjust to match exact */
  --yellow: #fbbc04;
  --green: #34a853;
  --card-radius: 18px;
  --card-padding: 32px;
  --text-dark: #0f1720;
}

.trend-cards {
  background: var(--bg);
  padding: 48px 2%;
}

/* grid: two columns on wide screens */
.trend-grid {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  justify-items: stretch;
}

/* base card */
.card {
  background: #fff;
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  color: white;
  min-height: max-content;
  box-shadow: 0 8px 30px rgba(16, 24, 40, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

/* content */
.card-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  font-family: "Youtube Sans Bold";
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-copy {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 0 20px;
  opacity: 0.95;
}

/* pill button */
.card-btn {
  align-self: flex-start;
  background: #ffffff;
  color: #202124;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(16, 24, 40, 0.06);
  font-family: "Youtube Sans Bold";
}

/* theme colors */
.card-blue {
  background: var(--blue);
}

.card-yellow {
  background: var(--yellow);
}

.card-green {
  background: var(--green);
}

/* tweak yellow text & button for contrast */
/* .card-yellow .card-copy { color: rgba(0,0,0,0.75); } */
/* .card-yellow .card-btn { background: rgba(255,255,255,0.95); } */

/* responsive */
@media (max-width: 920px) {
  .card-wide {
    width: 80%;
  }

  .trend-grid {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .trend-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .card-wide {
    grid-column: auto;
    width: 100%;
  }

  .card {
    min-height: 180px;
    padding: 24px;
  }

  .card-title {
    font-size: 1.25rem;
  }
}

.challenges-section {
  width: 100%;
  padding: 3rem 1rem 5rem;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.challenges-container {
  max-width: 1000px;
  text-align: center;
}

.challenges-container h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #202124;
  font-family: "YouTube Sans ExtraBold";
}

.challenges-container h1 span {
  color: #ea4335;
  font-family: "YouTube Sans ExtraBold";
}

.challenges-container h3 {
  font-size: 1.1rem;
  color: #202124;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: "YouTube Sans Bold";
}

.challenges-container h3 b {
  font-size: 1.1rem;
  color: #202124;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-family: "YouTube Sans SemiBold";
}

.challenges-container p {
  font-size: 1.1rem;
  color: #202124;
  margin-bottom: 2rem;
}

.challenges-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  border: 2px dashed #333;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem;
}

.challenge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}

.challenge-item img {
  width: 45px;
  height: 45px;
  margin-bottom: 0.5rem;
}

.challenge-item h4 {
  font-size: 1.1rem;
  color: #202124;
  font-weight: 700;
  font-family: "YouTube Sans Bold";
}

.challenge-item p {
  font-size: 0.9rem;
  color: #202124;
  line-height: 1.2;
  max-width: 350px;
}

.register-btn {
  margin-top: 2rem;
  background: #ea4335;
  color: #ffffff;
  border: none;
  padding: 0.7rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Youtube Sans Bold";
}

.register-btn:hover {
  background: #e00027;
  transform: translateY(-2px);
}

/* Responsive Layout */
@media (max-width: 768px) {
  .challenges-box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    margin: 1.5rem;
  }

  .challenge-item p {
    max-width: 100%;
  }

  .challenges-container h1 {
    font-size: 1.6rem;
  }

  .register-btn {
    padding: 0.6rem 1.8rem;
  }
}

@media (max-width: 480px) {
  .challenges-container h1 {
    font-size: 1.4rem;
  }

  .challenges-container h3 {
    font-size: 1rem;
  }

  .challenge-item img {
    width: 40px;
  }
}
.trend-carousel-vod {
  background-color: #f2f2f2;
  padding-top: 50px;
  padding-bottom: 20px;
}
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.checklist-modal {
  background: #fff;
  width: 90%;
  max-width: 900px;
  padding: 30px;
  border-radius: 12px;
  overflow-y: auto;
  max-height: 90vh;
  font-family: Arial, sans-serif;
}

#checklistModal h1 {
  font-family: "YouTube Sans Bold";
  font-size: 3rem;
}

.section-title {
  color: #ea4335;
  margin-bottom: 4px;
  font-family: "YouTube Sans Bold";
}

.section-subtext {
  margin-bottom: 0.6px;
  color: #000;
  font-family: "YouTube Sans";
  font-size: 13px;
}

.checklist {
  margin-bottom: 20px;
}
.checklist strong {
  font-family: "YouTube Sans";
  color: #4285f4;
}

.checklist li {
  margin-bottom: 0;
  list-style: none;
  font-size: 14px;
}

.scoring-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 20px 0;
  text-align: center;
  font-family: Arial, sans-serif;
}

/* Dashed horizontal connector */
.scoring-line {
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  border-top: 2px dashed #999;
  z-index: 0;
}

.scoring-item {
  width: 15%;
  position: relative;
  z-index: 1;
}

.score-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  border-radius: 50%;
  border: 6px solid currentColor;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: bold;
  background: #fff;
}

.score {
  font-size: 22px;
  line-height: 1;
}

.points {
  font-size: 10px;
}

.score-stem {
  width: 2px;
  height: 30px;
  background: currentColor;
  margin: 6px auto 10px;
}

.scoring-item h4 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: bold;
}

.scoring-item p {
  font-size: 12px;
  line-height: 1.4;
  color: #333;
}

/* Color Themes */
.red {
  color: #ea4335;
  background-color: transparent !important;
}
.yellow {
  color: #fbbc04;
  background-color: transparent !important;
}
.green {
  color: #34a853;
  background-color: transparent !important;
}
.blue {
  color: #4285f4;
  background-color: transparent !important;
}

.checkbox-wrap {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
}
.checkbox-wrap label {
  margin-bottom: 0;
}
.cta-btn {
  width: 100%;
  padding: 14px;
  background: #ea4335;
  border: none;
  color: white;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.5;
}

.cta-btn:enabled {
  opacity: 1;
}
@media (max-width: 480px) {
  .scoring-item {
    width: 50%;
  }
}
iframe {
  background: transparent !important;
}
.ama-card {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 9 / 16;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 20px;
  height: 22vh !important;
}
.ama-swiper .swiper-slide {
  width: 100% !important;
}

.ama-swiper .swiper-wrapper {
  width: 100% !important;
}

.ama-swiper .swiper-slide > * {
  width: 100%;
}
.ama-card iframe {
  width: 100% !important;
  height: 100% !important;
}
#vodWrapper {
  display: flex;
  flex-flow: column-reverse;
}
a.btn-register:hover {
  color: #fff !important;
  cursor: pointer;
  text-decoration: none !important;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ea4335 !important;
  padding: 20px;
}
.swiper-container-wrapper {
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ea4335;
  background: none !important;
}
.swiper-button-next {
  right: -50px !important;
}
.swiper-button-prev {
  left: -50px !important;
}
@media screen and (max-width: 780px) {
  .swiper-button-next {
    right: 0 !important;
  }
  .swiper-button-prev {
    left: 0 !important;
  }
}
.challenge-content ul {
  padding-left: 22px;
}
