@import url("fonts.css");

.svg-background-overlay {
  pointer-events: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Courier New", monospace;
  overflow-x: hidden;
  background-image:
    repeating-linear-gradient(
      to bottom,
      #99ccee 0,
      transparent calc(100vw * 0.05),
      transparent calc(100vw * 0.62),
      #99ccee calc(100vw * 0.667)
    ),
    url("./updatedAssets/websiteBackground.webp");
  background-size:
    100% auto,
    100% auto;
  background-repeat: repeat-y, repeat-y;
  background-position:
    top center,
    top center;
  background-color: #99ccee;
}

/* Landing Section */
.landing-section {
  min-height: 100vh;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.landing-title {
  text-align: right;
  position: relative;
  z-index: 3;
}

.landing-title h1 {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.landing-title h2 {
  color: #ffffff;
  font-size: 72px;
  letter-spacing: 8px;
  margin-bottom: 20px;
  font-weight: bold;
}

.landing-title .date {
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.landing-title .instruction {
  color: #5ac8e8;
  font-size: 11px;
  margin-top: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.svg-background-overlay img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Parallax Ocean Background */
.ocean-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.parallax-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  pointer-events: none;
}

.layer-deep-ocean {
  background: linear-gradient(
    180deg,
    #99ccee 0%,
    #88bfe0 10%,
    #77b3d6 20%,
    #66a7cc 30%,
    #559bc2 40%,
    #448fb8 50%,
    #559bc2 60%,
    #66a7cc 70%,
    #77b3d6 80%,
    #88bfe0 90%,
    #99ccee 100%
  );
  z-index: 1;
}

.layer-mid-ocean,
.layer-shallow-ocean {
  background: transparent;
  z-index: 2;
}

/* Animated bubbles for main content */
.ocean-bubbles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 998;
}

.ocean-bubbles .bubble {
  position: fixed;
}

.bubble {
  position: absolute;
  bottom: -100px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.08) 60%, transparent);
  border-radius: 50%;
  animation: rise 15s infinite ease-in;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: auto;
  will-change: transform;
}

@keyframes pop {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.bubble.popping {
  animation: pop 1s ease-out forwards;
}

@keyframes rise {
  to {
    bottom: 110%;
    transform: translateX(100px);
  }
}

/* Main Content Section */
.main-content {
  min-height: 300vh;
  padding-top: 0;
  position: relative;
  z-index: 10;
}

/* MLH Trust Badge (Only appears behind Nav Bar on Mobile*/
@media (max-width: 768px) {
  #mlh-trust-badge {
    z-index: 998 !important;
  }
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 26, 51, 0.5);
  padding: 20px 50px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 1;
  transform: translateY(0%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: transform, opacity;
}

.navbar.visible {
  opacity: 1;
  transform: translateY(0);
}

.navbar.hidden {
  opacity: 0;
  transform: translateY(-100%);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
}

.navbar-logo-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.navbar-logo:hover .navbar-logo-img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.navbar-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.navbar-links li:last-child a {
  color: #5ac8e8;
  margin-right: 110px;
  border: 2px solid #5ac8e8;
  border-radius: 50px;
  padding: 8px 20px;
  transition: all 0.3s ease;
  letter-spacing: 2px;
}

.navbar-links li:last-child a:hover {
  background: #5ac8e8;
  color: #001a33;
  text-decoration: none;
}

.navbar-links a {
  font-family: "Atlantis1";
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
  font-size: 18px;
}

.navbar-links a:hover {
  text-decoration: underline;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navbar {
    padding: 15px 20px;
  }

  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    flex-direction: column;
    background: rgba(0, 20, 50, 0.95);
    padding: 100px 30px 40px;
    gap: 20px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .navbar-links.open {
    right: 0;
  }

  .navbar-links li:last-child a {
    margin-right: 0;
  }
}

/* Countdown Timer */
.countdown {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 10;
  background: rgba(0, 15, 40, 0.6);
  border: 1.5px solid rgba(247, 206, 121, 0.3);
  border-radius: 16px;
  padding: 16px 30px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 55px;
}

.countdown-number {
  font-family: "IntroFont";
  font-size: 36px;
  color: #f7ce79;
  -webkit-text-stroke: 1.5px #000000;
  line-height: 1;
}

.countdown-label {
  font-family: "Test3";
  font-size: 12px;
  color: #f7ce79;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 6px;
}

/* Section Reveal Animations */
.section, .team-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.revealed, .team-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Content Sections */
.section {
  padding: 100px 50px;
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
  border-radius: 20px;
  margin-bottom: 0px;
  box-shadow: none;
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

.section h2 {
  font-size: 48px;
  color: #f7ce79;
  -webkit-text-stroke: 1.5px #000000; 
  font-family: "Test";
  margin-bottom: 30px;
}

.section p {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 20px;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.sponsor-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.sponsor-card:hover {
  transform: translateY(-5px);
}

#faq {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  gap: 40px;
}

.faq-content-wrapper {
  flex: 1 1 550px;
  max-width: 600px;
}

#faq h2 {
  font-family: "Test";
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #f7ce79;
  -webkit-text-stroke: 1.5px #000000; 
  margin-bottom: 40px;
  font-weight: 900;
  padding-left: 0;
  text-align: center;
}

.faq-accordion {
  width: 100%;
  max-width: 600px;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #a8c5ff;
  border: 3px solid #1a1a4d;
  border-radius: 15px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item.active {
  background: #fff9c4;
}

.faq-item:hover {
  background: rgba(168, 197, 255, 0.8);
}

.faq-item.active:hover {
  background: #fff9c4;
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  gap: 15px;
  user-select: none;
}

.faq-item h3 {
  font-family: "Test3";
  font-size: 16px;
  color: #000000;
  margin: 0;
  flex: 1;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-toggle {
  font-size: 18px;
  color: #1a1a4d;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-weight: bold;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 20px 25px;
}

.faq-answer p {
  color: #1a1a4d;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  font-family: "Test3";
}

.faq-contact {
  background: #d4e3ff;
  border: 3px solid #1a1a4d;
  border-radius: 15px;
  padding: 20px 25px;
  text-align: center;
  font-size: 14px;
  color: #1a1a4d;
  line-height: 1.6;
  font-family: "Test3";
}

.faq-contact a {
  color: #05465a;
  text-decoration: none;
  font-weight: bold;
}

.faq-contact a:hover {
  text-decoration: underline;
}

.schedule-grid-wrapper {
  overflow-x: auto;
  border-radius: 16px;
}

/* ── Schedule Filter Pills ── */
.schedule-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 8px 12px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pill {
  font-family: "Test3";
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.5px;
  padding: 7px 18px;
  border-radius: 999px;
  border: 3px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* All — dark filled when active */
.pill-all              { border-color: transparent; color: #3a3a3a; }
.pill-all.active       { background: #3a3a3a; color: #ffffff; border-color: #3a3a3a; }
.pill-all:hover:not(.active) { background: rgba(0,0,0,0.1); }

/* Required — blue */
.pill-required              { border-color: #5ac8e8; color: #5ac8e8; }
.pill-required.active,
.pill-required:hover        { background: rgba(90,200,232,0.2); }

/* Event — green */
.pill-event              { border-color: #27ae60; color: #27ae60; }
.pill-event.active,
.pill-event:hover        { background: rgba(39,174,96,0.2); }

/* Food — yellow */
.pill-food              { border-color: #e8c030; color: #c8a000; }
.pill-food.active,
.pill-food:hover        { background: rgba(232,192,48,0.2); }

/* For Fun — pink */
.pill-forfun              { border-color: #ff79c6; color: #ff79c6; }
.pill-forfun.active,
.pill-forfun:hover        { background: rgba(255,121,198,0.2); }

.sched-event {
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}
.sched-event.dimmed {
  opacity: 0.12;
}

.schedule-svg-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-start;
}

.schedule-svg {
  width: 48%;
  min-width: 300px;
  height: auto;
}

@media (max-width: 768px) {
  .schedule-svg {
    width: 100%;
    min-width: unset;
  }

  .schedule-svg-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.schedule-grid {
  display: flex;
  min-width: 500px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 20, 50, 0.65);
}

.schedule-col {
  display: flex;
  flex-direction: column;
}

.time-col {
  flex: 0 0 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.day-col {
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.day-col:last-child {
  border-right: none;
}

.schedule-day-header {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IntroFont";
  font-size: 20px;
  -webkit-text-stroke: 1px #000000;
  font-weight: 300;
  color: #f7ce79;
  letter-spacing: 2px;
  background: rgba(0, 30, 70, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}

.time-slot {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Test3";
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  letter-spacing: 1px;
}

/* Events Grid */
.schedule-events {
  position: relative;
  display: grid;
  grid-template-rows: repeat(var(--rows), 60px);
  padding: 0 6px;
  gap: 0;
  padding-top: 0;
}

.sched-event {
  grid-row: calc(var(--start) + 1) / span var(--span);
  border-radius: 10px;
  padding: 8px 10px;
  margin: 3px 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: default;
  transition:
    transform 0.2s ease,
    filter 0.2s ease;
  overflow: hidden;
}

.sched-event:hover {
  transform: scale(1.03);
  filter: brightness(1.15);
  z-index: 10;
}

.event-name {
  font-family: "Courier New", monospace;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.event-time {
  font-family: "Courier New", monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* Event Colors */
.color-blue {
  background: rgba(0, 80, 200, 0.75);
  border-left: 3px solid #4da6ff;
}
.color-teal {
  background: rgba(0, 140, 160, 0.75);
  border-left: 3px solid #00d9ff;
}
.color-orange {
  background: rgba(180, 80, 0, 0.75);
  border-left: 3px solid #ff8c00;
}
.color-green {
  background: rgba(20, 120, 60, 0.75);
  border-left: 3px solid #00e676;
}
.color-purple {
  background: rgba(80, 0, 160, 0.75);
  border-left: 3px solid #bf7fff;
}
/* Hero Section with UT Tower and Banner */
.hero-section {
  min-height: 100vh;
  padding: 120px 0 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.hero-tower {
  position: relative;
  left: 0;
  max-width: 450px;
  width: 30vw;
  min-width: 280px;
  z-index: 1;
  border-radius: 20px;
  overflow: visible;
  margin-bottom: 100px;
}

.tower-section {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 50px;
  position: relative;
  z-index: 10;
}

.hero-tower img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  animation: faqGraphicFloat 6s ease-in-out infinite;
}

.sponsors-with-tower {
  position: relative;
  justify-content: center;
  align-items: flex-start;
}

.hero-tower {
  z-index: 0;
}

.sponsors-tiered-container {
  position: relative;
  z-index: 2;
}

.sponsors-content {
  flex: 1;
}

.hero-tower {
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  max-width: 450px;
  width: 30vw;
  min-width: 280px;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-banner {
  position: relative;
  max-width: 600px;
  width: 45vw;
  min-width: 350px;
  margin: 0 auto;
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.hero-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.intro-banner {
  position: relative;
  max-width: 600px;
  width: 45vw;
  min-width: 350px;
  margin: 0 auto;
  z-index: 2;
  border-radius: 20px;
  animation: float 6s ease-in-out infinite;
}

.intro-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Banner text overlay */
.banner-text {
  position: absolute;
  top: 40%; 
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
  z-index: 5;
}

.banner-text p {
  color: #e08908;
  font-family: "IntroFont";
  font-size: 35px;
  letter-spacing: 3px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  white-space: nowrap;
  -webkit-text-stroke: 2px #000000; 
}

/* register button */
#registButton {
  position: relative; 
}

.register-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #e08908;
  font-family: "IntroFont";
  font-size: 25px;
  letter-spacing: 2px;
  pointer-events: none;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
  white-space: nowrap;
  -webkit-text-stroke: 1.5px #000000; 
}

#registButton {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  filter: drop-shadow(0 0 0px rgba(191, 87, 0, 0));
  transition: filter 0.3s ease;
}

#registButton:hover {
  filter: drop-shadow(0 0 6px rgba(191, 87, 0, 0.9))
    drop-shadow(0 0 14px rgba(191, 87, 0, 0.5));
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
}

/* Hide default scrollbar*/
html {
  overflow: -moz-scrollbars-none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body {
  overflow-x: hidden;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
  background: transparent;
}

::-webkit-scrollbar {
  display: none;
  width: 0 !important;
  height: 0 !important;
}

::-webkit-scrollbar-track {
  display: none;
}

::-webkit-scrollbar-thumb {
  display: none;
}

* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Custom Scrollbar Container */
.custom-scrollbar {
  position: fixed;
  right: 55px;
  top: 0;
  width: 60px;
  height: 100vh;
  z-index: 998;
  pointer-events: none;
}

/* Scrollbar Track */
.custom-scrollbar-track {
  position: fixed;
  right: 74px;
  top: 0;
  width: 12px;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 6px;
}

/* Scrollbar Thumb (icon) */
.custom-scrollbar-thumb {
  position: absolute;
  left: 53%;
  transform: translate(-50%, 0);
  top: 40px;
  width: 100px;
  height: 100px;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.15s ease;
  z-index: 999;
  will-change: top;
}

.custom-scrollbar-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  touch-action: none;
}

/* Hover scaling without moving */
.custom-scrollbar-thumb:hover {
  transform: translate(-50%, 0) scale(1.1);
}

.about-image-section {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-container {
  width: 80%;
  height: auto;
  overflow: hidden;
}

.about-image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.tracks-image-section {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tracks-image-container {
  width: 80%;
  height: auto;
  overflow: hidden;
}

.tracks-image-container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Meet the Team Section */
.team-section {
  padding: 100px 40px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.team-section h2 {
  font-family: "Test";
  font-size: 36px;
  color: #f7ce79;
  -webkit-text-stroke: 1.5px #000000; 
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 900;
}

/* Team Tabs */
.team-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.team-tab {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.6);
  font-family: "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.team-tab.active {
  background: rgba(0, 217, 255, 0.15);
  color: #00d9ff;
  border-color: rgba(0, 217, 255, 0.4);
}

.team-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* Navigation Arrows */
.team-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.team-arrow:hover {
  background: rgba(0, 217, 255, 0.12);
  border-color: rgba(0, 217, 255, 0.4);
  color: #00d9ff;
  transform: scale(1.05);
}

.team-arrow svg {
  width: 20px;
  height: 20px;
}

/* Team Card */
.team-card {
  background: rgba(0, 10, 20, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  max-width: 700px;
  width: 100%;
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.team-card.fade-out {
  opacity: 0;
  transform: scale(0.97);
}

.team-card.fade-in {
  opacity: 1;
  transform: scale(1);
}

.team-photo-container {
  width: 100%;
  height: 320px;
  overflow: hidden;
  position: relative;
}

.team-photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  visibility: hidden;
}

.team-coming-soon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 30, 60, 0.85), rgba(0, 60, 100, 0.75));
  color: #f7ce79;
  font-family: "Test";
  font-size: 32px;
  letter-spacing: 4px;
  text-transform: uppercase;
  -webkit-text-stroke: 1px #000000;
}

.team-info {
  padding: 28px 32px 32px;
}

.team-info h3 {
  color: #f7ce79;
  text-align: center;
  -webkit-text-stroke: 1.5px #000000; 
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "IntroFont";
}

.team-detail {
  margin-bottom: 14px;
}

.team-detail:last-child {
  margin-bottom: 0;
}

.team-label {
  display: block;
  color: #00d9ff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: "Test";
}

.team-detail p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  font-family: "Test3";
}

/* Carousel Indicators */
.team-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.indicator-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator-dot.active {
  background: #00d9ff;
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(0, 217, 255, 0.5);
}

.indicator-dot:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Footer Styles */
.footer {
  position: relative;
  z-index: 20;
  width: 100%;
  overflow: hidden;
}

.footer-campus-container {
  position: relative;
  width: 100%;
  min-height: 400px;
}

.footer-campus-img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-overlay-content {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.footer-made-with {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-family: "Atlantis";
}

.footer-copyright {
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-family: "Atlantis";
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  font-family: "Atlantis";
}

.footer-links a:hover {
  color: #5ac8e8;
}

.footer-dot {
  color: #ffffff;
  font-size: 14px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* About Section Style Updates */
#about {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

#about h2 {
  font-family: "Test";
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #f7ce79;
  -webkit-text-stroke: 1.5px #000000; 
  margin-bottom: 20px;
  font-weight: 900;
  text-align: center;
}

.about-card {
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  padding: 40px 20px;
  width: 100%;
  max-width: 900px;
  box-shadow: none;
  font-family: "Test3";
}

#about p {
  font-size: 17px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}

/* About Stats Grid */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 700px;
  margin: 10px auto 30px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 12px;
  background: rgba(0, 20, 50, 0.5);
  border: 1.5px solid rgba(247, 206, 121, 0.25);
  border-radius: 14px;
}

.stat-number {
  font-family: "IntroFont";
  font-size: 30px;
  color: #f7ce79;
  -webkit-text-stroke: 1px #000000;
  line-height: 1.1;
}

.stat-label {
  font-family: "Test3";
  font-size: 13px;
  color: #ffffff;
  margin-top: 6px;
  text-align: center;
}

/* Judges Bar */
.about-judges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.judges-label {
  font-family: "Test3";
  font-size: 14px;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.judges-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.judge-name {
  font-family: "Test";
  font-size: 20px;
  color: #f7ce79;
  -webkit-text-stroke: 0.8px #000000;
  letter-spacing: 1px;
}

.judge-dot {
  color: rgba(255, 255, 255, 0.4);
  font-size: 20px;
}



.landing-submarine {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.landing-submarine img {
  width: 520px;
  max-width: 60vw;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 217, 255, 0.4));
  animation: submarineFloat 8s ease-in-out infinite;
}

@keyframes submarineFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-25px);
  }
}

.tracks-heading {
  text-align: center;
  font-family: "Test";
  font-size: 3rem;
  margin-bottom: 50px;
  text-transform: uppercase;
}

/* Grid Layout */
.tracks-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.track-card {
  flex: 0 0 calc(33.333% - 25px);
  max-width: calc(33.333% - 25px);
}

.swimming-bevo {
  margin: 0 auto;
  display: block;
}

.swimming-bevo img {
  display: block;
  margin: 0 auto;
  width: 30%;
  max-width: 250px;
  animation: bevoSwimFlip 6s ease-in-out infinite;
}

@keyframes bevoSwimFlip {
  0% { transform: translateY(0) rotate(0deg); }
  15% { transform: translateY(-15px) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(360deg); }
  65% { transform: translateY(-15px) rotate(360deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

.bevo-bubbles {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: -10px;
  margin-bottom: 10px;
}

.bevo-mini-bubble {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), rgba(255,255,255,0.1));
  border: 1px solid rgba(255,255,255,0.3);
  animation: aboutBubbleFloat 4s ease-in-out infinite;
}

.bevo-mini-bubble:nth-child(1) { width: 10px; height: 10px; animation-delay: 0s; }
.bevo-mini-bubble:nth-child(2) { width: 16px; height: 16px; animation-delay: 0.8s; }
.bevo-mini-bubble:nth-child(3) { width: 8px; height: 8px; animation-delay: 1.6s; }

/* Individual Cards */
.track-card {
  font-family: "Test";
  background: rgba(63, 63, 63, 0.35);
  border-radius: 15px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.track-card:hover {
  transform: translateY(-10px) scale(1.05);
  z-index: 10;
}

.track-icon {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin-bottom: 18px;
}

/* Text Styling */
.track-card h3 {
  color: #f7ce79;
  -webkit-text-stroke: 1px #000000; 
  font-size: 1.8rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.track-card p {
  color: #000000;
  font-size: 0.9rem;
  line-height: 1.6;
  font-family: "Test3";
}

/* About section floating Bevo decorations */
.about-deco {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.about-deco img {
  width: 100%;
  height: auto;
  display: block;
}

.about-bevo-left {
  left: 0;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
  width: 160px;
  animation: aboutBevoFloat 7s ease-in-out infinite;
}

.about-bevo-right {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  animation: aboutBevoFloat 7s ease-in-out infinite;
  animation-delay: 3.5s;
}

@keyframes aboutBevoFloat {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(calc(-50% - 20px)) translateX(0); }
}

.about-bevo-left {
  animation-name: aboutBevoFloatLeft;
}

@keyframes aboutBevoFloatLeft {
  0%, 100% { transform: translateY(-50%) scaleX(-1) translateX(0); }
  50% { transform: translateY(calc(-50% - 20px)) scaleX(-1) translateX(0); }
}

/* Decorative static bubbles around About section */
.about-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), rgba(255,255,255,0.1) 60%, transparent);
  border: 1px solid rgba(255,255,255,0.3);
  pointer-events: none;
  z-index: -1;
  animation: aboutBubbleFloat 8s ease-in-out infinite;
}

.about-bubble-1 { width: 40px; height: 40px; left: 5%; top: 15%; animation-delay: 0s; }
.about-bubble-2 { width: 25px; height: 25px; left: 12%; bottom: 20%; animation-delay: 1.5s; }
.about-bubble-3 { width: 35px; height: 35px; right: 8%; top: 20%; animation-delay: 3s; }
.about-bubble-4 { width: 20px; height: 20px; right: 15%; bottom: 25%; animation-delay: 4.5s; }
.about-bubble-5 { width: 30px; height: 30px; left: 50%; top: 5%; animation-delay: 2s; }

@keyframes aboutBubbleFloat {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-15px); opacity: 1; }
}

#tracks {
  position: relative;
}

.tracks-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 1200px;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.tracks-background img {
  width: 100%;
  height: auto;
  display: block;
}

.tracks-heading {
  position: relative;
  z-index: 1;
}

.tracks-grid {
  position: relative;
  z-index: 1;
}

.faq-side {
  flex: 0 1 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: faqGraphicFloat 6s ease-in-out infinite;
}

.faq-side img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

@keyframes faqGraphicFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
}

/* ==============================
   SPONSORS SECTION - NEW TIERED LAYOUT
   ============================== */

#sponsors {
  padding: 100px 50px;
  max-width: 100%;
  margin: 0;
}

/* Centered Header */
.sponsors-header {
  text-align: center;
  margin-bottom: 60px;
}

.sponsors-header p a {
  color: #000000;
  transition: color 0.3s ease;
}

.sponsors-header h2 {
  font-family: "Test";
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #f7ce79;
  -webkit-text-stroke: 1.5px #000000; 
  margin-bottom: 20px;
  font-weight: 900;
}

.sponsors-header p {
  font-size: 18px;
  color: #000000;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: "Test3";
}

/* Auto-scrolling Sponsor Logos Container */
.sponsors-scroll-container {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
  padding: 10px 0px;
  /*
  background: rgba(0, 10, 20, 0);
  backdrop-filter: blur(8px);
  */
  /* THE FADE EFFECT */
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 15%,
    rgba(0, 0, 0, 1) 85%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 15%,
    rgba(0, 0, 0, 1) 85%,
    rgba(0, 0, 0, 0) 100%
  );
}

.sponsors-scroll-track {
  display: flex;
  animation: scroll 28s linear infinite; /*CHANGE SPEED HERE*/
  width: max-content;
  gap: 0;
}

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

.sponsor-logo-item {
  flex-shrink: 0;
  width: 150px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 15px;
  padding: 20px;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.sponsor-logo-item img[src*="awsLogo"] {
  transform: scale(0.8); 
}

.sponsor-logo-item img[src*="janeStreet"] {
  transform: scale(1.2); 
}

.sponsor-logo-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.sponsor-logo-item:hover {
  transform: scale(1);
}

.sponsor-logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* TIERED SPONSOR STRUCTURE */
.sponsors-tiered-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 25%;
}

.sponsor-tier {
  display: flex;
  justify-content: center;
}

.sponsor-tier:last-child {
  border-bottom: none;
}

.sponsor-tier-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sponsor-logo-container {
  background: transparent;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.sponsor-logo-container img[src*="Hudson_River_Trading"] {
  width: 200px; 
  height: auto;  
}

@media (max-width: 768px) {
  .sponsor-logo-container img[src*="Hudson_River_Trading"] {
    width: 120px; 
  }
}

.sponsor-logo-container img[src*="janeStreet"] {
  width: 200px; 
  height: auto;  
}

@media (max-width: 768px) {
  .sponsor-logo-container img[src*="janeStreet"] {
    width: 120px; 
  }
}

.sponsor-logo-container a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  cursor: pointer;
}

.sponsor-logo-container img[src*="vercel"] {
  transform: scale(1);
}

.sponsor-logo-container img[src*="red-bulls"] {
  transform: scale(1);
}

.sponsor-logo-container img[src*="Pure-Buttons"] {
  transform: scale(0.55);
}

.sponsor-logo-item img[src*="Pure-Buttons"] {
  transform: scale(0.55);
}

.sponsor-logo-container:hover {
  transform: translateY(-5px);
  transform: scale(1.15);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0);
}

.sponsor-logo-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Tier 1 - Platinum (Largest) */
.tier-1 .sponsor-logo-container {
  width: 220px;
  height: 140px;
}

.tier-1 .sponsor-tier-logos {
  gap: 20px;  
  flex-wrap: wrap;
}

/* Tier 2 - Gold (Medium-Large) */
.tier-2 .sponsor-logo-container {
  width: 280px;
  height: 140px;
}

.tier-2 .sponsor-tier-logos {
  gap: 15px;
}

/* Tier 3 - Silver (Medium) */
.tier-3 .sponsor-logo-container {
  width: 250px;
  height: 120px;
}

.tier-3 .sponsor-tier-logos {
  gap: 15px;
}

/* Tier 4 - Bronze (Smallest) */
.tier-4 .sponsor-logo-container {
  width: 200px;
  height: 100px;
}

.tier-4 .sponsor-tier-logos {
  gap: 15px;
}

/* Mobile responsiveness */
@media (max-width: 968px) {
  .sponsors-with-tower {
    flex-direction: column;
    align-items: center;
  }

  .sponsors-tiered-container {
    padding-left: 0;
  }

  .hero-tower {
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }

  #faq {
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    gap: 30px;
  }

  .faq-side {
    flex: 0 1 auto;
  }

  .faq-side img {
    width: 220px;
  }

  .faq-content-wrapper {
    max-width: 100%;
  }

  .track-card {
    flex: 0 0 calc(50% - 25px);
    max-width: calc(50% - 25px);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }

  .section h2 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .section p {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-section {
    padding: 100px 20px 60px;
  }

  .hero-tower {
    width: 35vw;
    min-width: 200px;
    max-width: 280px;
  }

  .hero-banner {
    width: 55vw;
    min-width: 280px;
    margin-left: auto;
    margin-right: 20px;
  }

  .landing-title h2 {
    font-size: 48px;
  }

  .intro-banner {
    width: 80vw;
    min-width: 280px;
  }

  .banner-text p {
    font-size: 26px;
    letter-spacing: 1.5px;
    -webkit-text-stroke: 1.5px #000000;
  }

  .register-label {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .countdown {
    gap: 14px;
    padding: 12px 20px;
    bottom: 5%;
  }

  .countdown-number {
    font-size: 28px;
  }

  .countdown-label {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .about-card {
    padding: 20px 10px;
  }

  .about-card p {
    font-size: 15px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .track-card {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 30px 20px;
  }

  .track-card h3 {
    font-size: 1.4rem;
  }

  .track-icon {
    width: 80px;
    height: 80px;
  }

  .tracks-heading {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .swimming-bevo img {
    width: 120px;
  }

  .schedule-grid {
    min-width: 400px;
  }

  .time-col {
    flex: 0 0 50px;
  }

  .time-slot {
    font-size: 10px;
    height: 55px;
  }

  .schedule-events {
    grid-template-rows: repeat(var(--rows), 55px);
  }

  .sched-event {
    padding: 5px 6px;
  }

  .event-name {
    font-size: 11px;
  }

  .event-time {
    font-size: 9px;
  }

  #sponsors {
    padding: 40px 15px;
  }

  .sponsors-header {
    margin-bottom: 25px;
  }

  .sponsors-header h2 {
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }

  .sponsors-header p {
    font-size: 14px;
  }

  .sponsors-scroll-container {
    margin-bottom: 20px;
  }

  .sponsors-tiered-container {
    padding-left: 0;
    gap: 0;
  }

  .sponsor-tier {
    margin-bottom: 0;
  }

  .sponsor-logo-container {
    padding: 8px;
  }

  .tier-1 .sponsor-logo-container {
    width: 180px;
    height: 80px;
  }

  .tier-2 .sponsor-logo-container {
    width: 150px;
    height: 65px;
  }

  .tier-3 .sponsor-logo-container {
    width: 130px;
    height: 55px;
  }

  .tier-4 .sponsor-logo-container {
    width: 110px;
    height: 50px;
  }

  .sponsor-tier-logos {
    gap: 10px;
  }

  .faq-question {
    padding: 15px 18px;
  }

  .faq-item h3 {
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  .faq-contact {
    font-size: 13px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    align-items: center;
    text-align: center;
  }

  .team-carousel-container {
    gap: 20px;
  }

  .team-nav-arrow.left {
    border-width: 30px 45px 30px 0;
  }

  .team-nav-arrow.right {
    border-width: 30px 0 30px 45px;
  }

  .team-display {
    padding: 20px 15px;
    min-height: auto;
  }

  .team-photo-container {
    height: 180px;
  }

  .team-coming-soon {
    font-size: 22px;
    letter-spacing: 3px;
  }

  .team-info {
    padding: 20px 16px;
  }

  .team-info h3 {
    font-size: 22px;
  }

  .team-info .team-members {
    font-size: 13px;
  }

  .team-card {
    max-width: 100%;
  }

  .footer-made-with {
    font-size: 16px;
  }

  .footer-copyright,
  .footer-links a,
  .footer-dot {
    font-size: 12px;
  }

  .landing-submarine img {
    width: 300px;
    opacity: 0.5;
  }

  .landing-submarine {
    left: -120px;
  }

  .about-bevo-left,
  .about-bevo-right {
    width: 100px;
    opacity: 0.5;
  }

  .about-bubble { display: none; }

  .custom-scrollbar,
  .custom-scrollbar-track {
    display: none;
  }

  .footer-bottom-bar {
    min-height: 500px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 15px;
  }

  .section h2 {
    font-size: 26px;
  }

  .intro-banner {
    width: 90vw;
    min-width: 240px;
  }

  .banner-text p {
    font-size: 20px;
    letter-spacing: 1px;
    -webkit-text-stroke: 1px #000000;
  }

  .countdown {
    gap: 10px;
    padding: 10px 14px;
  }

  .countdown-number {
    font-size: 22px;
  }

  .countdown-unit {
    min-width: 42px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .stat-card {
    padding: 12px 8px;
  }

  .stat-number {
    font-size: 22px;
  }

  .stat-label {
    font-size: 10px;
  }

  .judge-name {
    font-size: 15px;
  }

  .hero-tower {
    width: 40vw;
    min-width: 150px;
  }

  .hero-banner {
    width: 60vw;
    min-width: 200px;
  }

  .landing-title h2 {
    font-size: 36px;
  }

  .team-carousel-container {
    gap: 10px;
  }

  .team-nav-arrow.left {
    border-width: 20px 30px 20px 0;
  }

  .team-nav-arrow.right {
    border-width: 20px 0 20px 30px;
  }

  .team-display {
    padding: 15px 10px;
    min-height: auto;
  }

  .team-photo-container {
    height: 150px;
  }

  .team-coming-soon {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .team-info {
    padding: 15px 12px;
  }

  .team-info h3 {
    font-size: 18px;
  }

  .team-info .team-members {
    font-size: 12px;
    line-height: 1.5;
  }

  #faq h2 {
    font-size: 26px;
  }

  .schedule-grid {
    min-width: 340px;
  }

  .time-col {
    flex: 0 0 42px;
  }

  .time-slot {
    font-size: 9px;
    height: 50px;
  }

  .schedule-events {
    grid-template-rows: repeat(var(--rows), 50px);
  }

  .event-name {
    font-size: 10px;
  }

  .event-time {
    font-size: 8px;
  }

  .tier-1 .sponsor-logo-container {
    width: 170px;
    height: 85px;
  }

  .tier-2 .sponsor-logo-container {
    width: 140px;
    height: 70px;
  }

  .tier-3 .sponsor-logo-container {
    width: 120px;
    height: 60px;
  }

  .tier-4 .sponsor-logo-container {
    width: 100px;
    height: 50px;
  }

  .footer-bottom-bar {
    min-height: 400px;
    padding: 20px 10px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-number {
    font-size: 24px;
  }
  .judge-name {
    font-size: 16px;
  }
  .countdown {
    gap: 12px;
    padding: 12px 20px;
  }
  .countdown-number {
    font-size: 24px;
  }

  .schedule-filter-pills {
    gap: 6px;
    padding: 6px 10px;
    border-radius: 20px; 
  }

  .pill {
    font-size: 11px;
    padding: 5px 12px;
  }
}

.footer-bottom-bar {
  background-image:
    linear-gradient(to bottom, #99ccee 0, transparent 15%),
    url("./updatedAssets/footerBackground.webp");
  background-size:
    100% auto,
    100% auto;
  background-repeat: no-repeat, no-repeat;
  background-position:
    bottom center,
    bottom center;
  height: auto;
  min-height: 800px;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.footer-made-with,
.footer-copyright,
.footer-dot {
  color: #ffffff;
}

.footer-links a {
  color: #ffffff;
}

.footer-links a:hover {
  color: #5ac8e8;
}
