/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 120px;
  background: rgba(56, 0, 167, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(122, 1, 242, 0.32);
  height: 72px;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  height: 100%;
}

.navbar-logo {
  height: 32px;
  flex-shrink: 0;
  width: fit-content;
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 100%;
  width: auto;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 8px; /* Slightly increased gap for better touch targets */
  margin-left: 32px; /* Separation from logo */
  margin-right: auto; /* Push actions to the right */
}

.navbar-nav a {
  padding: 8px 16px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.navbar-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.navbar-nav a.nav-disabled,
.mobile-menu-nav a.nav-disabled {
  cursor: default;
}

/* Disabled footer links */
.footer-links-list a.link-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.navbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-shrink: 0;
  width: auto; /* Allow it to fit content */
}

.navbar-badge {
  height: 32px;
  display: flex;
  align-items: center;
}

.navbar-badge img {
  height: 100%;
  width: auto;
}

.navbar-divider {
  width: 1px;
  height: 24px;
  background: var(--white);
  opacity: 0.2;
}

.navbar-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-signin:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 16px;
  border: none;
  border-radius: 12px;
  background: var(--white);
  color: var(--purple-500);
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.btn-signup:hover {
  opacity: 0.9;
}

.btn-signup .icon {
  width: 16px;
  height: 16px;
}

/* Mobile Menu Styles */
.navbar-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  position: relative;
}

.navbar-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Hamburger Animation */
.navbar-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.navbar-toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  height: calc(100vh - 72px);
  background: rgba(14, 16, 27, 0.98); /* Deep dark background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 48px 24px 48px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  pointer-events: none;
}

.mobile-menu.active {
  pointer-events: auto;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 48px;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu-nav a {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-menu-nav a:hover {
  color: var(--teal-500);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.mobile-menu-actions .btn-signin {
  width: 100%;
  justify-content: center;
}

.mobile-menu-actions .btn-signup {
  width: 100%;
  justify-content: center;
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 48px;
  padding: 48px 120px;
  min-height: 640px;
  margin-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14, 16, 27, 0.7) 0%, rgba(14, 16, 27, 0) 86.379%);
}

.hero-decoration {
  position: absolute;
  top: -532px;
  left: 344px;
  width: 1565px;
  height: 1635px;
  mix-blend-mode: color-dodge;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1200px;
  color: var(--white);
}

.hero-title {
  font-size: 56px;
  line-height: 64px;
  font-weight: 800;
  margin: 0;
  max-width: 560px;
}

.hero-subtitle {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  margin: 0;
  max-width: 560px;
}

.hero-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
  width: 100%;
}

.hero-feature {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 560px;
}

.hero-event {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-event-header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-event-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.hero-event-logo img {
  max-height: 51px;
  width: auto;
}

.hero-event-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-event-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: var(--teal-500);
  margin: 0;
}

.hero-event-subtitle {
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.hero-cta-box {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px;
  background: rgba(14, 16, 27, 0.8);
  border-radius: 12px;
}

.hero-cta-box .btn-primary {
  width: 160px;
}

.hero-cta-divider {
  width: 1px;
  height: 100%;
  min-height: 48px;
  background: rgba(228, 249, 250, 0.32);
}

.hero-timer {
  display: flex;
  flex-direction: column;
}

.hero-timer-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: var(--grey-200);
}

.hero-timer-value {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--teal-500);
}

.hero-dots {
  display: flex;
  gap: 8px;
  padding-top: 12px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.hero-dot.active {
  background: var(--white);
}

.hero-nav {
  display: flex;
  gap: 16px;
}

.hero-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero-nav-btn:hover {
  background: rgba(0, 0, 0, 0.5);
}

.hero-nav-btn svg,
.hero-nav-btn img {
  width: 24px;
  height: 24px;
  display: block;
}

.hero-nav-btn svg {
  fill: var(--white);
}

/* ============================================
   PARTNERS SECTION
   ============================================ */
.partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 48px 0;
  background: var(--black);
}

.partners-title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin: 0;
}

.partners-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 20px;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.partners-carousel {
  display: flex;
  align-items: center;
  gap: 48px;
  width: fit-content;
  animation: scroll 40s linear infinite;
  will-change: transform;
}

.partners-carousel:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 48px;
  flex-shrink: 0;
  overflow: hidden;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: 132px;
  height: 48px;
  object-fit: contain;
  display: block;
}

/* ============================================
   CATEGORY SECTION (Sports, Music & Arts, etc.)
   ============================================ */
.category-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 80px 120px;
  background: linear-gradient(to top, white 90%, #e9eaf1);
}

.category-section.dark {
  background: var(--grey-700);
}

.category-section.purple-bg {
  position: relative;
  background: var(--white);
}

.category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.category-title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 800;
  color: var(--black);
  margin: 0;
}

.category-section.dark .category-title {
  color: var(--white);
}

.category-nav {
  display: flex;
  gap: 16px;
}

.category-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.category-nav-btn:hover {
  opacity: 1;
}

.category-nav-btn svg {
  width: 24px;
  height: 24px;
}

.category-cards {
  display: flex;
  gap: 16px;
  flex-wrap: nowrap;
  padding-bottom: 8px;
  width: 100%;
}

.category-footer {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--grey-600);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-view-all:hover {
  color: var(--black);
}

.btn-view-all svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   MUSIC & ARTS SECTION (Dark Theme)
   ============================================ */
.category-section.music-arts-section {
  position: relative;
  background-image: url('../assets/images/Music and Arts.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: var(--black);
  overflow: hidden;
}

.music-arts-bg-shape {
  display: none;
}

.music-arts-bg-shape::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(135deg, transparent 0%, rgba(122, 1, 242, 0.4) 15%, transparent 30%),
    linear-gradient(45deg, transparent 0%, rgba(203, 151, 255, 0.3) 20%, transparent 40%),
    linear-gradient(225deg, transparent 0%, rgba(122, 1, 242, 0.35) 25%, transparent 50%),
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 98px,
      rgba(122, 1, 242, 0.15) 98px,
      rgba(122, 1, 242, 0.15) 100px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 98px,
      rgba(203, 151, 255, 0.12) 98px,
      rgba(203, 151, 255, 0.12) 100px
    );
  background-size: 100% 100%, 100% 100%, 100% 100%, 200px 200px, 200px 200px;
  filter: blur(1.5px);
  mix-blend-mode: screen;
}

.music-arts-bg-shape::after {
  content: '';
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent 0px,
      transparent 49px,
      rgba(122, 1, 242, 0.08) 49px,
      rgba(122, 1, 242, 0.08) 50px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 49px,
      rgba(203, 151, 255, 0.06) 49px,
      rgba(203, 151, 255, 0.06) 50px
    );
  transform: rotate(45deg);
  opacity: 0.6;
}

.category-section.music-arts-section .category-header,
.category-section.music-arts-section .category-cards,
.category-section.music-arts-section .category-footer {
  position: relative;
  z-index: 1;
}

.category-section.music-arts-section .category-title {
  color: var(--white);
}

.category-section.music-arts-section .category-nav-btn {
  color: var(--white);
}

.category-section.music-arts-section .btn-view-all {
  color: var(--teal-500);
}

.category-section.music-arts-section .btn-view-all:hover {
  color: var(--teal-700);
}

.category-section.music-arts-section .btn-view-all svg {
  color: var(--teal-500);
}

/* Music & Arts Experience Cards - Dark Theme */
.category-section.music-arts-section .experience-card {
  background: var(--grey-700);
  border: 1px solid var(--grey-600);
}

.category-section.music-arts-section .experience-card-image::after {
  background: linear-gradient(to bottom, rgba(17, 19, 34, 0) 91.804%, var(--grey-700) 91.875%);
}

.category-section.music-arts-section .experience-card-logo {
  border: 2px solid var(--grey-700);
  background: var(--grey-700);
}

.category-section.music-arts-section .experience-card-title {
  color: var(--white);
}

.category-section.music-arts-section .experience-card-description {
  color: var(--grey-400);
}

.category-section.music-arts-section .experience-card-timer-label {
  color: var(--grey-200);
}

.category-section.music-arts-section .experience-card-timer-value {
  color: var(--teal-500);
}

.category-section.music-arts-section .experience-card-link {
  color: var(--white);
}

.category-section.music-arts-section .experience-card-link:hover {
  color: var(--teal-500);
}

/* ============================================
   EXPERIENCE CARD
   ============================================ */
.experience-card {
  flex: 1 1 360px;
  min-width: 360px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.experience-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.experience-card-image {
  position: relative;
  height: 240px;
  padding: 0 20px;
  display: flex;
  align-items: flex-end;
}

.experience-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 91.804%, white 91.875%);
}

.experience-card-logo {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 8px;
  border: 2px solid var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: var(--white);
}

.experience-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.experience-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 20px;
}

.experience-card-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.experience-card-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.experience-card-description {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--grey-500);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.experience-card-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.experience-card-timer {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.experience-card-timer-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: var(--grey-600);
}

.experience-card-timer-value {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--purple-500);
}

.experience-card-link {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--black);
  text-decoration: none;
}

.experience-card-link:hover {
  text-decoration: underline;
}

/* ============================================
   FEATURE BANNER
   ============================================ */
.feature-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
  padding: 48px 120px;
  overflow: hidden;
}

.feature-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: unset;
}

.feature-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  color: var(--white);
  margin-bottom: auto;
}

.feature-banner-title-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-banner-title {
  font-family: 'Manrope', sans-serif;
  font-size: 56px;
  line-height: 64px;
  font-weight: 800;
  margin: 0;
  color: var(--white);
}

.feature-banner-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  margin: 0;
  color: var(--white);
}

.feature-banner-description {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  align-self: flex-start;
}

.feature-banner-description p {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  margin: 0;
  color: var(--white);
}

.feature-banner-description p + p {
  margin-top: 0;
}

.feature-banner-cta-box {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px;
  background: rgba(14, 16, 27, 0.8);
  border-radius: 12px;
  align-self: flex-start;
  width: auto;
}

.feature-banner-cta-box .btn-primary {
  width: 160px;
}

.feature-banner-cta-box .btn-secondary {
  width: 160px;
  background: transparent;
}

.feature-banner-cta-divider {
  width: 1px;
  height: 100%;
  min-height: 48px;
  background: rgba(228, 249, 250, 0.32);
}

.feature-banner-timer {
  display: flex;
  flex-direction: column;
}

.feature-banner-timer-label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: var(--grey-200);
}

.feature-banner-timer-value {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--teal-500);
}

.feature-banner-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding-top: 12px;
  align-self: flex-start;
}

.feature-banner-dots {
  display: flex;
  gap: 8px;
}

.feature-banner-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.feature-banner-dot.active {
  background: var(--white);
}

.feature-banner-nav {
  display: flex;
  gap: 16px;
}

.feature-banner-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.feature-banner-nav-btn:hover {
  background: rgba(0, 0, 0, 0.5);
}

.feature-banner-nav-btn svg,
.feature-banner-nav-btn img {
  width: 24px;
  height: 24px;
  display: block;
}

.feature-banner-nav-btn svg {
  fill: var(--white);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 88px;
  background-image: url('../assets/images/star-bg.webp');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: scroll;
  overflow: hidden;
}

.how-it-works-decoration {
  position: absolute;
  top: -894px;
  left: -552px;
  width: 2295px;
  height: 2284px;
  pointer-events: none;
}

.how-it-works-decoration svg {
  width: 100%;
  height: 100%;
  stroke: var(--purple-500);
  stroke-width: 2;
  fill: none;
  transform: rotate(-43.864deg);
}

.how-it-works-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: 32px;
  width: 100%;
  max-width: 1200px;
}

.how-it-works-title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 800;
  color: var(--black);
  text-align: center;
  margin: 0 0 32px 0;
}

.how-it-works-steps {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-bottom: 48px;
}

.how-it-works-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  text-align: center;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #f4ebfe;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: var(--purple-500);
}

.step-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}

.step-description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--grey-700);
  margin: 0;
}

/* ============================================
   IMPACT SECTION
   ============================================ */
.impact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 80px 120px;
  background: var(--white);
}

.impact-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 640px;
}

.impact-title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 16px 0;
}

.impact-description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--grey-600);
  margin: 0 0 48px 0;
  max-width: 644px;
}

.impact-content .btn-primary {
  width: fit-content;
}

.impact-stats {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: 480px;
  flex-shrink: 0;
}

.impact-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.impact-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--teal-100);
  flex-shrink: 0;
}

.impact-stat-icon svg {
  width: 32px;
  height: 32px;
  color: var(--teal-700);
}

.impact-stat-content {
  display: flex;
  flex-direction: column;
}

.impact-stat-value {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.impact-stat-label {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--grey-600);
  margin: 0;
}

/* ============================================
   CHARITY PARTNERS SECTION
   ============================================ */
.charity-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  padding: 80px 0;
  background: var(--grey-700);
}

.charity-partners-title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  margin: 0;
}

.charity-partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 140px;
}

.charity-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 60px;
  padding: 0;
}

.charity-logo img {
  width: 180px;
  height: 60px;
  object-fit: contain;
}

/* ============================================
   LICENSED SECTION
   ============================================ */
.licensed-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 240px;
  background: var(--black);
  overflow: hidden;
}

.licensed-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.licensed-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.licensed-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  max-width: 818px;
  width: 100%;
}

.licensed-text {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1 0 0;
  min-width: 0;
  padding-right: 48px;
  border-right: 1px solid var(--grey-500);
}

.licensed-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.licensed-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.licensed-description {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.btn-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--teal-500);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
  width: fit-content;
}

.btn-learn-more:hover {
  opacity: 0.8;
}

.btn-learn-more svg {
  width: 20px;
  height: 20px;
}

.licensed-badges {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 52px;
  flex-shrink: 0;
}

.licensed-badge {
  height: 50px;
  display: flex;
  align-items: center;
}

.licensed-badge img {
  height: 100%;
  width: auto;
  display: block;
}

/* ============================================
   WINNER STORIES SECTION
   ============================================ */
.winner-stories {
  position: relative;
  padding: 80px 152px;
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.winner-stories-decoration {
  position: absolute;
  pointer-events: none;
}

.winner-stories-decoration.left {
  top: 35px;
  left: -186px;
  width: 795px;
  height: 757px;
  opacity: 0.1;
}

.winner-stories-decoration.right {
  top: -601px;
  right: -428px;
  width: 1408px;
  height: 1390px;
  opacity: 0.1;
}

.winner-stories-title {
  font-size: 40px;
  line-height: 48px;
  font-weight: 800;
  color: var(--black);
  margin: 0 0 0 0;
  text-align: center;
}

.winner-stories-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 80px;
  width: 100%;
}

.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grey-100);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.carousel-btn:hover {
  background: var(--grey-200);
}

.carousel-btn svg {
  width: 24px;
  height: 24px;
  color: var(--grey-600);
}

.testimonial-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--grey-100);
  border-radius: 16px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--grey-200);
  max-width: 768px;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grey-300);
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.testimonial-name {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}

.testimonial-stars {
  display: flex;
  gap: 0;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: #ffc107;
}

.testimonial-date {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--grey-500);
  margin: 0;
}

.testimonial-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--grey-700);
  margin: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-300);
  border: none;
  cursor: pointer;
  padding: 0;
}

.carousel-dot.active {
  background: var(--purple-500);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 160px;
  background: var(--grey-700);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  padding-bottom: 32px;
  border-bottom: 1px solid #5b6b7e;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 419px;
}

.footer-logo {
  margin-bottom: 32px;
}

.footer-logo img {
  height: 24px;
  width: auto;
}

.footer-location,
.footer-email {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: var(--white);
  margin: 0;
}

.footer-location {
  padding-bottom: 8px;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #dce3ea;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links-list a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-copyright p {
  margin: 0;
}

.footer-copyright-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  color: var(--white);
}

.footer-trademark {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  font-family: 'Manrope', sans-serif;
  color: var(--grey-400, #7d89af);
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 24px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: opacity 0.2s ease;
}

.footer-social a:hover {
  opacity: 0.8;
}

.footer-social svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1300px) {
  /* Navbar */
  .navbar {
    padding: 16px 24px;
    height: auto;
    min-height: 72px;
  }
  
  .navbar-nav {
    display: none !important;
  }
  
  .navbar-actions {
    display: flex !important;
    margin-left: auto;
    margin-right: 12px;
  }
  
  .navbar-actions .navbar-divider,
  .navbar-actions .navbar-buttons {
    display: none !important;
  }
  
  .navbar-toggle {
    display: flex !important;
  }
  
  .navbar-container {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  
  .navbar-logo {
    height: 28px;
  }
  
  /* Layout */
  .container {
    padding: 0 16px;
  }
  
  /* Hero */
  .hero {
    padding: 120px 24px 48px;
    margin-top: 0;
    gap: 32px;
    min-height: auto;
  }
  
  .hero-bg img {
    object-position: left center;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
  }
  
  .hero-title {
    font-size: 32px;
    line-height: 40px;
    max-width: 100%;
  }
  
  .hero-subtitle {
    font-size: 16px;
    line-height: 24px;
    max-width: 100%;
  }
  
  .hero-bottom {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  
  .hero-feature {
    width: 100%;
    align-items: center;
  }
  
  .hero-event {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  
  .hero-event-header {
    flex-direction: column;
  }
  
  .hero-cta-box {
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  
  .hero-cta-box .btn-primary {
    width: 100%;
  }
  
  .hero-cta-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
  }
  
  .hero-timer {
    align-items: center;
  }
  
  .hero-nav {
    display: none;
  }
  
  /* Category Sections */
  .category-section {
    padding: 48px 24px;
  }
  
  .category-header {
    flex-direction: row;
    align-items: center;
  }
  
  .category-title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .category-nav {
    display: none;
  }
  
  .category-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    overflow-x: visible;
    padding-bottom: 0;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  
  .category-cards::-webkit-scrollbar {
    display: none;
  }
  
  .experience-card {
    min-width: auto;
    flex: none;
    width: 100%;
  }
  
  /* Feature Banner */
  .feature-banner {
    padding: 48px 24px;
    min-height: auto;
  }
  
  .feature-banner-bg img {
    object-position: left center;
  }
  
  .feature-banner-content {
    max-width: 100%;
  }
  
  .feature-banner-title {
    font-size: 32px;
    line-height: 40px;
  }
  
  .feature-banner-cta-box {
    flex-direction: row;
    width: auto;
    align-items: center;
    gap: 24px;
  }
  
  .feature-banner-cta-box .btn-secondary {
    width: auto;
    align-self: auto;
  }
  
  .feature-banner-cta-divider {
    width: 1px;
    height: 100%;
    min-height: 48px;
  }
  
  .feature-banner-timer {
    align-items: flex-start;
  }
  
  .feature-banner-timer-label {
    text-align: left;
  }
  
  .feature-banner-timer-value {
    text-align: left;
  }
  
  .feature-banner-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
  }
  
  /* How It Works */
  .how-it-works {
    padding: 48px 16px;
  }
  
  .how-it-works-card {
    padding: 32px 16px;
  }
  
  .how-it-works-title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .how-it-works-steps {
    flex-direction: column;
    gap: 32px;
  }
  
  .how-it-works-step {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: 
      "number title"
      "number description";
    column-gap: 16px;
    row-gap: 4px;
    text-align: left;
    align-items: center;
    padding: 12px;
  }

  .how-it-works-step .step-number {
    grid-area: number;
    margin: 0;
  }

  .how-it-works-step .step-title {
    grid-area: title;
    text-align: left;
    margin: 0;
    align-self: end;
  }

  .how-it-works-step .step-description {
    grid-area: description;
    text-align: left;
    margin: 0;
    align-self: start;
  }
  
  .how-it-works-card .btn-primary {
    width: 100%;
  }
  
  /* Impact Section */
  .impact-section {
    flex-direction: column;
    padding: 48px 24px;
    gap: 48px;
  }
  
  .impact-title {
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }
  
  .impact-description {
    text-align: center;
  }
  
  .impact-content .btn-primary {
    width: 100%;
  }
  
  .impact-stats {
    width: 100%;
    max-width: 100%;
  }
  
  /* Charity Partners */
  .charity-partners {
    padding: 48px 24px;
  }
  
  .charity-partners-logos {
    flex-wrap: wrap;
    padding: 0;
  }
  
  .charity-logo {
    width: 140px;
    height: 50px;
  }
  
  .charity-partners .btn-primary {
    width: 100%;
  }
  
  /* Licensed Section */
  .licensed-section {
    padding: 48px 24px;
  }
  
  .licensed-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .licensed-text {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid var(--grey-500);
    padding-bottom: 32px;
    text-align: center;
    align-items: center;
  }
  
  .licensed-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  
  /* Winner Stories */
  .winner-stories {
    padding: 48px 24px;
  }
  
  .winner-stories-title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .winner-stories-carousel {
    gap: 16px;
    margin-top: 32px;
  }
  
  .carousel-btn {
    display: none;
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  /* Footer */
  .footer {
    padding: 48px 24px;
  }
  
  .footer-main {
    flex-direction: column;
    gap: 48px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column-reverse;
    gap: 32px;
    text-align: center;
  }
  
  .footer-copyright {
    align-items: center;
  }
}

/* Mobile - Stack vertically */
@media (max-width: 768px) {
  .hero-bg img {
    object-position: left center;
  }
  
  .feature-banner-bg img {
    object-position: left center;
  }
  
  .feature-banner-cta-box {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 16px;
  }
  
  .feature-banner-cta-box .btn-secondary {
    width: 100%;
    align-self: stretch;
  }
  
  .feature-banner-cta-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
  }
  
  .feature-banner-timer {
    width: 100%;
    align-items: center;
  }
  
  .feature-banner-timer-label {
    text-align: center;
  }
  
  .feature-banner-timer-value {
    text-align: center;
  }
  
  /* Category Cards - Vertical layout for mobile */
  .category-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-x: visible;
    padding-bottom: 0;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }
  
  .experience-card {
    min-width: auto;
    flex: none;
    width: 100%;
  }
}
