* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --teal: #00c2a8;
  --teal-dim: #00c2a81a;
  --teal-border: #00c2a84d;
}

section {
  padding: clamp(40px, 6vw, 80px) 0;
}

.section-title {
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.2;
  margin-bottom: clamp(16px, 2vw, 30px);
}
.section-title span {
  color: #00c2a8;
  border-bottom: 2px solid #00c2a8;
  padding-bottom: 2px;
  font-weight: 600;
}

html,
body {
  height: 100%;
}
.container {
  max-width: 1200px;
}
html {
  scroll-behavior: smooth;
}

/* NAVBAR CSS  */
body {
  margin: 0;
  background: #0a0a0a;
  min-height: 200vh;
  padding-top: 0;
}

/* ── NAVBAR ── */
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  padding: 14px 0;
  background: transparent;
  transition:
    background 0.4s ease,
    backdrop-filter 0.4s ease,
    padding 0.3s ease,
    border-bottom 0.4s ease;
}

.custom-navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.logo {
  height: 55px;
  display: block;
}

/* Desktop links */
.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  margin: 0 4px;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 8px;
  position: relative;
  transition:
    color 0.2s ease,
    background 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #00c2a8 !important;
  background: rgba(0, 194, 168, 0.1);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: #00c2a8;
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after {
  width: calc(100% - 28px);
}

/* Register button */
.register-btn {
  background: #00c2a8;
  color: #000 !important;
  padding: 9px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  transition:
    background 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
}

.register-btn:hover {
  background: #00dfc0;
  color: #000 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 194, 168, 0.35);
}

/* Hamburger */
.navbar-toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  box-shadow: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* ── MOBILE DRAWER ── */
.mob-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mob-drawer.open {
  transform: translateX(0);
}

.mob-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.mob-drawer-logo {
  height: 38px;
  object-fit: contain;
}

.mob-close {
  width: 34px;
  height: 34px;
  border: none;
  background: #f2f2f2;
  border-radius: 50%;
  font-size: 17px;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}

.mob-close:hover {
  background: #e0e0e0;
}

.mob-nav {
  list-style: none;
  padding: 8px 0;
  margin: 0;
  flex: 1;
}

.mob-nav li {
  border-bottom: 1px solid #f5f5f5;
}

.mob-nav li a {
  display: block;
  padding: 15px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #111;
  text-decoration: none;
  transition:
    color 0.2s,
    padding-left 0.2s;
}

.mob-nav li a:hover {
  color: #00c2a8;
  padding-left: 30px;
}

.mob-cta-wrap {
  padding: 20px;
  flex-shrink: 0;
}

.mob-cta {
  display: block;
  background: #00c2a8;
  color: #000;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background 0.25s,
    box-shadow 0.25s;
}

.mob-cta:hover {
  background: #00dfc0;
  color: #000;
  box-shadow: 0 4px 16px rgba(0, 194, 168, 0.3);
}

/* Overlay */
.mob-overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  z-index: 9998;
  pointer-events: none;
  transition: background 0.3s ease;
}

.mob-overlay.active {
  background: rgba(0, 0, 0, 0.55);
  pointer-events: auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .navbar-nav,
  .d-none.d-lg-block {
    display: none !important;
  }
  .navbar-toggler {
    display: flex !important;
  }
  .logo {
    height: 60px;
  }
}
/* @media (min-width: 768px) and (max-width: 991px) {
  .logo {
    height: 104px;
    width: 100px;
  }
} */

@media (max-width: 576px) {
  .logo {
    height: 35px;
  }
  .mob-drawer {
    width: 88%;
  }
  .mob-drawer-logo {
    height: 40px;
    width: 120px;
  }
  .mob-nav li a {
    font-size: 15px;
    padding: 14px 20px;
  }
  .mob-close {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
}

/* NAVBAR CSS  */

#page-loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
#page-loader.hide {
  opacity: 0;
  visibility: hidden;
}
.loader-inner {
  text-align: center;
}
.loader-circle {
  width: 50px;
  height: 50px;
  border: 3px solid #fff3;
  border-top: 3px solid #00c2a8;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: auto;
}
.loader-text {
  color: #aaa;
  margin-top: 12px;
  font-size: 14px;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
body {
  font-family: "DM Sans", sans-serif;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
}
main {
  flex: 1;
}

/* HERO SECTION  */

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
}

.bs-hero-logo img {
  height: 150px;
  width: 500px;
  margin: 30px 0;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-left {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content {
  margin-top: 30px;
}

.register-btn-2 {
  margin-top: 10px;
  background: #00c2a826;
  border: 1px solid #00c2a880;
  color: #00c2a8;
  padding: 8px 25px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  background: #00c2a8;
  color: #ffffff;
  font-weight: 500;
}

.register-btn-2:hover {
  background: #00c2a8;
  color: #000;
  box-shadow: 0 0 15px #00c2a899;
}
.hero-logo {
  height: 50px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: "Gloock", serif;
  font-size: 50px;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 30px 0;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}
.badge-img {
  position: relative;
}
.badge-img img {
  height: 34px;
}
.badge-text {
  font-family: "Cinzel", serif;
  position: absolute;
  top: 50%;
  left: 52px;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: bold;
  color: #000;
}
.badge-side {
  border: 1px solid #e1c96d;
  padding: 3.5px 8px;
  border-radius: 4px;
  margin-left: -26px;
}

.hero-abc-logo img {
  height: 60px;
  width: 100px;
}
.presents {
  display: flex;
  align-items: center;
  gap: 10px;
}

.presents p {
  font-size: 10px;
  margin: 0;
  font-weight: 300;
}
.presents img {
  height: 3px;
  width: 80px;
}
.hero-subtitle {
  color: #00c2a8;
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
}
.hero-cta {
  display: flex;
  gap: 20px;
  align-items: end;
}
.primary-btn {
  background: #00c2a8;
  padding: 12px 25px;
  border-radius: 8px;
  color: #fff;
}
.primary-btn:hover {
  background: #fff;
  color: #000;
}
.prize-box h4 {
  color: #e1c96d;
  font-size: 2.5rem;
  margin-bottom: 0;
  font-family: "Cinzel", serif;
  font-weight: bold;
}
.includes {
  font-size: 12px;
}
.hero-right {
  position: relative;
  min-height: 630px;
}
.hero-right-trophy-mob {
  display: none;
}

.hero-bg-right {
  position: absolute;
  width: 100%;
  height: 100%;
  padding-bottom: 146px;
  object-fit: cover;
}
.hero-trophy {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 450px;
  top: 17rem;
}

/* TIMELINE SECTION  */

.timeline-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: url("../images/hero-bg-3.webp") no-repeat right center;
  background-size: contain;
}

/* LEFT SIDE */
.timeline-left {
  padding: 20px 0;
  display: flex;
  align-items: center;
}

.timeline-content {
  max-width: 900px;
}

/* RIGHT SIDE */
.timeline-right {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

/* IMAGE */
.timeline-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transform: scale(1.05);
}

/* OVERLAY */
.timeline-right::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* =========================
   HEADER
========================= */
.timeline-header h2 {
  font-size: 42px;
  color: #fff;

  /* ✅ FIXED */
  opacity: 1;
  transform: none;
}

.timeline-header span {
  color: #00c2a8;
  border-bottom: 3px solid #00a892;
  font-weight: 600;
}

.timeline-header p {
  color: #aaa;
  margin-bottom: 40px;

  /* ✅ FIXED */
  opacity: 1;
  transform: none;
}

/* =========================
   GRID
========================= */
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 2fr);
  gap: 20px;
}

/* =========================
   CARD
========================= */
.timeline-card {
  background: #343434f6;
  border-left: 3px solid transparent;
  padding: 15px;
  border-radius: 15px;
  color: #fff;

  /* ✅ FIXED */
  opacity: 1;
  transform: none;

  transition: 0.3s ease;
}

/* HOVER */
.timeline-card:hover {
  transform: translateY(-5px);
  border-left: 3px solid #00c2a8;
}

/* ACTIVE */
.timeline-card.active {
  border-left: 3px solid #00c2a8;
}

/* HIGHLIGHT CARD */
.timeline-card.highlight {
  grid-column: span 2;
  background: #00c2a8;
  color: #000;
}

/* TEXT */
.timeline-card small {
  color: #00c2a8;
  font-size: 12px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
}

.timeline-card small.red {
  color: #ff4d4d;
}

.timeline-card h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.timeline-card p {
  color: #aaa;
  margin-bottom: 0;
}

/* HIGHLIGHT TEXT */
.timeline-card.highlight p,
.timeline-card.highlight h4 {
  color: #000;
}

.timeline-card.highlight small {
  color: #fff;
  font-weight: 700;
}
/* SPONSORS SECTION  */

.sponsors-section {
  position: relative;
  overflow: hidden;
}

/* BACKGROUND IMAGE FULL WIDTH */
/* SECTION */
.sponsors-section {
  position: relative;
  overflow: hidden;
}

/* BACKGROUND */
.sponsors-bg {
  position: absolute;
  inset: 0;
  background: url("../images/sponsors-bg-b.webp") center/cover no-repeat;
  z-index: 0;
}

/* OVERLAY */
.sponsors-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* CONTENT */
.sponsors-content {
  position: relative;
  z-index: 2;
}

/* MAIN CARD */
.sponsor-card {
  background: rgba(174, 174, 174, 0.08);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px;
}

/* LOGO WRAP */
.logos-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: -10px;
}

/* LOGO ITEM */
.logo-item {
  width: 16.66%; /* 6 per row */
  padding: 10px;
}

/* IMAGE */
.logo-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #e6e6e6;
  border-radius: 10px;
  padding: 15px;
}
/* INTRO SECTION  */

.intro-section {
  min-height: 80vh;
}
.intro-section .intro-bg {
  background: url(../images/big-short-new-bg.webp) no-repeat center/cover;
  color: #fff;
}
.intro-title {
  font-size: 40px;
  font-weight: 700;
}
.intro-title span {
  color: #00c2a8;
}
.badge {
  display: inline-block;
  margin: 10px 0;
  padding: 5px 10px;
  border: 1px solid #fff;
}
.intro-desc {
  margin-top: 20px;
  color: #ccc;
}
.intro-right {
  font-size: 18px;
  text-align: right;
}
.gallery-section {
  background: url(../images/web-main-bg.webp) no-repeat left center;
  background-size: cover;
  /* min-height: 700px; */
  color: #fff;
}

.gallery-title .prev {
  font-size: 20px;
  font-weight: 700;
  border: 0.5px solid #edd36969;
  border-left: 3px solid #ffda44;
  background-color: #edd36952;
  color: #fff;
  border-radius: 10px;
  padding: 10px;
}
.gallery-title .edi {
  font-size: 20px;
  font-weight: 700;
  border: 0.5px solid #00a8926e;
  border-left: 3px solid #00a892;
  background-color: #00a89267;
  color: #fff;
  border-radius: 10px;
  padding: 10px;
}
.editions-title {
  margin-bottom: 48px;
}
.editions-title h2 {
  font-size: 44px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin: 0;
  text-transform: uppercase;
}
.editions-title h2.highlight-line {
  background: #00c2a8;
  color: #000;
  display: inline-block;
  padding: 4px 16px 4px 0;
  margin-top: 6px;
}
.editions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.edition-card {
  position: relative;
  padding: 20px;
  border: 1px solid #00a892b2;
  border-radius: 10px;
  background: #00000023;
  backdrop-filter: blur(2px);
}
.edition-card.wide {
  grid-column: span 2;
}
.edition-card .box-label {
  position: absolute;
  top: -12px;
  left: 15px;
  background: #00c2a8;
  color: #000;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 600;
}
.edition-card h6 {
  margin-top: 10px;
  font-size: 16px;
  color: #fff;
}
.edition-card p {
  font-size: 14px;
  color: #ccc;
  margin: 5px 0 0;
}

/* TERMS & CONDITION SECTION  */

.terms-layout {
  padding: 120px 0 80px;
}
.terms-wrapper {
  display: flex;
  gap: 40px;
}
.terms-content h2 {
  scroll-margin-top: 110px;
}
.terms-content h4 {
  scroll-margin-top: 140px;
}
.terms-toc {
  width: 260px;
  position: sticky;
  top: 120px;
  height: fit-content;
  border-right: 1px solid #1a1a1a;
  padding-right: 20px;
}
.terms-toc h5 {
  color: #00c2a8;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 25px;
}
.terms-toc a {
  display: block;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 10px;
  transition: 0.3s;
  font-size: 18px;
}
.terms-toc a:hover,
.terms-toc a.active {
  color: #00c2a8;
}
.terms-content {
  flex: 1;
}
.terms-content h2 {
  margin-top: 50px;
  color: #00c2a8;
  font-size: 26px;
}
.terms-content h4 {
  margin-top: 25px;
  font-size: 18px;
  color: #fff;
}
.terms-content p {
  color: #ccc;
  line-height: 1.7;
  margin-top: 10px;
}
.terms-content ul {
  margin-top: 10px;
  padding-left: 20px;
}
.terms-content li {
  margin-bottom: 8px;
  color: #ccc;
}
.faq-section {
  color: #fff;
  background: url(../images/web-main-bg.webp) no-repeat center/cover;
}

.clapper-board {
  margin-left: 50px;
}
.faq-title {
  font-size: 42px;
  margin-bottom: 30px;
  position: relative;
}
.faq-title::after {
  content: "";
  width: 120px;
  height: 3px;
  background: #00c2a8;
  position: absolute;
  left: 0;
  bottom: -10px;
}
.faq-item {
  border: 1px solid #fff3;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 15px;
  cursor: pointer;
}
.faq-item.active {
  background: #00000080;
}
.faq-question {
  font-size: 16px;
  color: #00c2a8;
  position: relative;
  padding-left: 25px;
}
.faq-question::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}
.faq-item.active .faq-question::before {
  content: "−";
}
.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
}
.faq-inner {
  padding-top: 10px;
  font-size: 14px;
  color: #ccc;
}
.wp-section {
  background: #000;
  overflow: hidden;
}
.wp-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.wp-heading {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
}
.wp-heading span {
  color: var(--teal);
}
.divider-line {
  width: 52px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-bottom: 48px;
}
.wp-lead {
  font-size: 16px;
  color: #ffffff80;
  max-width: 480px;
  line-height: 1.75;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}
.wp-card {
  background: #0d0d0d;
  border: 1px solid #ffffff12;
  border-radius: 18px;
  padding: 30px 26px 26px;
  position: relative;
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    transform 0.35s ease;
  cursor: default;
}
.wp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(
    ellipse at top left,
    #00c2a81a 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.wp-card:hover::before {
  opacity: 1;
}
.wp-card:hover {
  border-color: var(--teal-border);
  transform: translateY(-5px);
}
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  flex-shrink: 0;
}
.card-icon svg {
  width: 20px;
  height: 20px;
}
.card-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.card-title {
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.3;
}
.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.card-list li {
  font-size: 14px;
  color: #ffffff8c;
  padding: 8px 0;
  border-bottom: 1px solid #ffffff0d;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  line-height: 1.55;
}
.card-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.card-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 7px;
}
.perks-bar {
  background: #0d0d0d;
  border: 1px solid #ffffff12;
  border-radius: 18px;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.perks-label {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff59;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.perks-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.perk-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--teal-dim);
  border: 1px solid var(--teal-border);
  border-radius: 100px;
  padding: 9px 18px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--teal);
  white-space: nowrap;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.perk-pill:hover {
  background: #00c2a82e;
  border-color: #00c2a88c;
}
.perk-pill svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.footer-note {
  padding: 20px 26px;
  border-left: 3px solid var(--teal);
  background: #00c2a80a;
  border-radius: 0 12px 12px 0;
  font-size: 15px;
  color: #fff9;
  line-height: 1.65;
  margin-bottom: 40px;
}
.footer-note strong {
  color: #fff;
  font-weight: 600;
}
.cta-wrap {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-teal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 100px;
  border: none;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition:
    background 0.25s,
    transform 0.2s;
  cursor: pointer;
}
.btn-teal:hover {
  background: #00dfc0;
  transform: translateY(-2px);
  color: #000;
}
.btn-teal:active {
  transform: scale(0.97);
}
.btn-teal svg {
  width: 18px;
  height: 18px;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 100px;
  border: 1px solid #ffffff2e;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.2s;
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: var(--teal-border);
  color: var(--teal);
  background: var(--teal-dim);
  transform: translateY(-2px);
}
@media (max-width: 576px) {
  .perks-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* Footer  */

.footer {
  background: #0a0a0a;
  color: #ccc;
  padding: 60px 20px;
}
.footer-logo {
  height: 40px;
  margin-bottom: 15px;
}
.footer-title {
  color: #fff;
  margin-bottom: 15px;
}
.footer-text {
  font-size: 16px;
  color: #aaa;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #00c2a8;
}
.footer hr {
  border-color: #222;
}
.footer-bottom p {
  font-size: 14px;
  color: #777;
}

/* BIG SHORT CHALLENGE 1  */

.bigShortChallenge1 {
  position: relative;
  padding: 140px 0;
  color: #fff;
  overflow: hidden;
  background: url("../images/slide-5.webp") no-repeat right/cover;
}

/* VIDEO */
.bsc1-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* 🔥 KEY LINE */
  z-index: 0;
}

/* OVERLAY */

.bigShortChallenge1 .container {
  position: relative;
  z-index: 2;
}
/* CONTENT WIDTH */
.bsc1-content {
  max-width: 520px;
}

/* LOGOS */
.bsc1-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.bsc1-logos img {
  height: 45px;
  object-fit: contain;
}

/* DESCRIPTION */
.bsc1-desc {
  font-size: 15px;
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* QUOTE */
.bsc1-quote {
  position: relative;
  margin: 40px 0 25px;
  padding-left: 60px;
}

.bsc1-quote-icon img {
  position: absolute;
  left: 0;
  top: -15px;
  height: 60px;
  width: 60px;
  color: #00e6c3;
}

.bsc1-quote p {
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 8px;
  margin-left: 10px;
}

/* BOX */
.bsc1-box {
  border: 1px solid rgba(0, 230, 195, 0.4);
  padding: 20px;
  z-index: 1;
}

.bsc1-box p {
  margin: 0;
  font-size: 14px;
  color: #ddd;
}

/* BIG SHORT CHALLENGE 2  */
.bigShortChallenge2 {
  position: relative;
  padding: 80px 0;
  color: #fff;
  background: url("../images/big-short-new-bg.webp") no-repeat center/cover;
}

/* DARK OVERLAY FOR READABILITY */
.bigShortChallenge2::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.231);
}

.bigShortChallenge2 .container {
  position: relative;
  z-index: 2;
}

/* RIGHT SIDE CONTENT */
.bsc2-content {
  max-width: 600px;
  margin-left: auto;
}

/* TITLE */
.bsc2-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
}

.bsc2-title span {
  color: #00e6c3;
}

/* BOX */
.bsc2-box {
  border: 1px solid rgba(0, 230, 195, 0.4);
  padding: 20px 25px;
  margin-bottom: 25px;
  position: relative;
  background: rgba(0, 0, 0, 0.221);
  backdrop-filter: blur(6px);
}

/* LABEL */
.bsc2-label {
  position: absolute;
  top: -12px;
  left: 20px;
  background: #00e6c3;
  color: #000;
  padding: 4px 12px;
  font-size: 13px;
  border-radius: 6px;
  font-weight: 600;
}

/* LIST */
.bsc2-box ul {
  padding-left: 18px;
}

.bsc2-box li {
  margin-bottom: 10px;
  color: #ddd;
}

.bsc2-right-logo {
  text-align: end;
}
.bsc2-right-logo img {
  height: 90px;
  width: 280px;
  margin-bottom: 50px;
}

/* WHY PARTICIPATE SECTION  */

.why-participate {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0;
  background: #000;
  overflow: hidden;
}

/* BACKGROUND IMAGE */
.why-bg {
  position: absolute;
  inset: 0;
  background: url("../images/why-participate.webp") left center no-repeat;
  background-size: cover;
  opacity: 0.6;
  z-index: 0;
}

.why-participate .container {
  position: relative;
  z-index: 2;
}

/* TITLE */
.why-title {
  color: #fff;
  font-size: 36px;
}

.why-title span {
  color: #00c2a8;
  border-bottom: 2px solid #00c2a8;
  font-weight: 600;
}

/* CARD */
.why-card {
  position: relative;
  background: rgba(6, 61, 54, 0.324); /* semi transparent */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  color: #fff;
  height: 100%;
}

/* ICON */
.icon-box {
  position: absolute;
  top: -18px;
  left: 15px;
  background: #000;
  border-radius: 8px;
  padding: 6px;
  border: 1px solid #00a89274;
}

.icon-box img {
  width: 20px;
  height: 20px;
}

/* TEXT */
.why-card h5 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-weight: 600;
}

.why-card ul {
  padding-left: 18px;
  margin: 0;
}

.why-card li {
  font-size: 14px;
  margin-bottom: 6px;
}

/* FOOTER */
.why-footer {
  color: #aaa;
  font-size: 14px;
}

.why-footer span {
  color: #00c2a8;
}

/* AWARDS SECTION  */

.awards-section {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding-bottom: 10px;
  padding-top: 60px;
}
.awards-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.awards-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.awards-left {
  position: relative;
  z-index: 2;
}

.awards-left {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-direction: column;
}

.awards-left img {
  width: 100%;
  max-width: 380px;
  height: auto;
  margin-bottom: -10px;
}

/* Common styles */
.award-text p span,
.awards-footer span {
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  padding: 10px;
  border: 0.6px solid #e1ca6da4;
  border-left: 3px solid #e1ca6dab;
  border-right: 3px solid #e1ca6de7;
}

/* Individual backgrounds */
.award-text p span {
  background-color: #000000a5;
}

.awards-footer span {
  background-color: #e1ca6d40;
}
.award-text h2 {
  font-size: 50px;
  color: #e1c96d;
  font-family: "Cinzel", serif;
  font-weight: bold;
}
.awards-right {
  position: relative;
  z-index: 2;
  padding: 10px;
}
.awards-header {
  text-align: center;
  padding-right: 5px;
}
.awards-header h2 span {
  font-size: 42px;
  color: #edd369;
  border-bottom: 3px solid #edd369;
}
.awards-header .line {
  display: inline-block;
  width: 120px;
  height: 3px;
  background: #00c2a8;
  margin-top: 10px;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
.award-card p {
  margin-bottom: 0;
}
.award-card {
  background: #000000d9;
  border-left: 3px solid #ffdba8;
  border-top: 0.1px solid #ffdba880;
  border-bottom: 0.1px solid #ffdba880;
  border-right: 0.1px solid #ffdba880;
  border-radius: 12px;
  padding: 15px;
}
.award-card h6 {
  font-size: 11px;
  color: #edd369;
  margin-bottom: 5px;
}
.award-card span {
  color: #00c2a8;
  font-weight: 700;
}
.award-card p {
  font-size: 14px;
}
.awards-footer {
  margin-top: 20px;
  font-size: 13px;
  text-align: right;
  color: #dcdcdc;
  font-weight: bold;
}

/* ELIGILIBILITY SECTION  */

.eligibility-section {
  position: relative;
  color: #fff;
  background: url(../images/criteria-bg.webp) no-repeat center/cover;
}
.eligibility-content {
  max-width: 600px;
}
.eligibility-right-img img {
  height: 430px;
  width: 60%;
  margin-left: 150px;
}
.eligibility-title {
  font-size: 42px;
  margin-bottom: 40px;
}
.eligibility-title span {
  color: #00c2a8;
  border-bottom: 3px solid #00c2a8;
  padding-bottom: 5px;
}
.eligibility-item {
  margin-bottom: 30px;
}
.eligibility-item h6 {
  color: #00c2a8;
  margin-bottom: 5px;
  font-size: 16px;
}
.eligibility-item p {
  font-size: 18px;
  color: #ddd;
}

/* WINNERS SECTION  */

.winners-section {
  position: relative;
  color: #fff;
  background: url(../images/winner-decided-bg.webp) no-repeat left center;
  background-size: cover;
}
.winners-content {
  max-width: 800px;
  margin-left: auto;
  text-align: right;
}
.winners-title {
  font-size: 38px;
  margin-bottom: 15px;
}
.winners-title span {
  color: #00c2a8;
  border-bottom: 3px solid #00c2a8;
  font-weight: bold;
}

/* SCORE BANNER  */
.score-banner {
  text-align: right;
  padding: 10px 0;
}

/* RIBBON WRAPPER */

.gold-ribbon {
  margin-right: 20px;
  position: relative;
  display: inline-block;
}

/* RIBBON IMAGE */

.gold-ribbon img {
  width: 400px;
  height: 40px;
  /* display: block; */
}

/* TEXT ON IMAGE */

.ribbon-text {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

/* SUB BOX */

.sub-box {
  margin-top: 20px;
  display: inline-block;
  border: 1px solid #b19949;
  border-radius: 8px;
  background-color: #b1994956;
  padding: 25px 20px 10px 25px;
  color: #fff;
  font-size: 16px;
  margin-top: -20px;
}

.sub-box span {
  color: #d4af37;
  font-weight: 700;
}

.winners-eval {
  margin-bottom: 15px;
  color: #ddd;
}
.winners-stats {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

/* DEFAULT (Desktop stays same) */
.winners-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-card {
  flex: 1 1 calc(25% - 20px); /* 4 cards in desktop */
}

.stat-card {
  border: 0.5px solid #ffdba893;
  border-left: 3px solid #ffdba8;
  border-radius: 10px;
  padding: 10px 12px;
  min-width: 140px;
  background: #00000080;
  text-align: left;
  margin-bottom: 25px;
}
.stat-card span {
  font-size: 12px;
  color: #e1c96d;
}
.stat-card h3 {
  color: #00c2a8;
  margin: 3px 0 0;
  font-size: 20px;
}

.winners-desc strong {
  font-style: italic;
  color: #e1c96d;
}
.winners-desc.small {
  font-size: 13px;
}
.winners-box {
  display: inline-block;
  border: 1px solid #00c2a815;
  background: #00c2a80c;
  padding: 16px 20px;
  border-radius: 12px;
  max-width: 700px;
  text-align: end;
}

/* remove box styles from p */
.winners-desc {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* remove last margin */
.winners-desc:last-child {
  margin-bottom: 0;
}
.winners-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 8px 18px;
  border: 1px solid #00c2a8;
  border-radius: 10px;
  color: #000000;
  background: #00c2a8;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}
.winners-btn:hover {
  color: #ffffff;
}

/* HOW TO PARTICIPATE SECTION */

.participate-section {
  position: relative;
  color: #fff;
  overflow: hidden;
}

/* 🎥 BACKGROUND VIDEO */
.participate-video {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.participate-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

/* 🔥 OVERLAY FOR READABILITY */
.participate-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* CONTENT ABOVE VIDEO */
.participate-section .container {
  position: relative;
  z-index: 2;
}

/* LEFT SIDE */
.participate-left {
  padding-right: 100px;
  border-right: 2px dashed #00c2a8;
}

/* TITLE */
.participate-title {
  font-size: 42px;
}

.participate-title span {
  color: #00c2a8;
  border-bottom: 3px solid #00c2a8;
  font-weight: bold;
}

/* SUBTEXT */
.participate-sub {
  color: #aaa;
  margin: 20px 0 30px;
}

/* STEPS */
.steps-list {
  list-style: none;
  padding: 0;
}

.step {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 8px 12px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: #ccc;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.step span {
  width: 30px;
  height: 30px;
  background: #111;
  border-radius: 6px;
  border: 0.5px solid #00c2a8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #00c2a8d9, #00c2a866, transparent);
  opacity: 0;
  transform: scaleX(0.8);
  transform-origin: left;
  transition: all 0.4s ease;
  z-index: 0;
}

.step * {
  position: relative;
  z-index: 1;
}

.step.active {
  color: #fff;
  border-radius: 0;
  transform: translateX(5px);
}

.step.active::before {
  opacity: 1;
  transform: scaleX(1);
}

.step.active span {
  background: #e6fffb;
  color: #00c2a8;
  transform: scale(1.1);
}

/* VIDEO CARD */
.video-card {
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #fff3;
  margin: 20px 50px;
}

.video-wrapper {
  position: relative;
}

.video-wrapper video {
  width: 100%;
  display: block;
}

/* OVERLAY PLAY BUTTON */
.video-overlay {
  position: absolute;
  inset: 0;
  background: #00000059;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #00c2a8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
  flex-shrink: 0;
}

.play-btn:hover {
  transform: scale(1.1);
  background: #00dfc0;
}

.play-btn svg {
  width: 26px;
  height: 26px;
  margin-left: 5px;
  display: block;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.video-caption {
  margin-top: 15px;
  color: #ccc;
  text-align: center;
}
