@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Orbitron:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --accent: #00ffb3;
  --accent-dim: rgba(0, 255, 179, 0.15);
  --accent-glow: rgba(0, 229, 255, 0.4);
  --text-primary: #f0f0f5;
  --text-secondary: rgba(240, 240, 245, 0.6);
  --text-muted: rgba(240, 240, 245, 0.35);
  --border: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(0, 229, 255, 0.25);
  --gradient-hero: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-dim);
  border-radius: 3px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

/* ══════════════════════════════════════
   NAVBAR — Logo scroll-reveal animation
   ══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  padding: 12px 0;
  background: rgba(10, 10, 15, 0.92);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  min-height: 40px;
}

/* Logo — always visible, moves to center on scroll */
.nav-logo {
  --scroll-progress: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: calc(12px * (1 - var(--scroll-progress)));
  position: absolute;
  left: calc(24px + (50% - 24px) * var(--scroll-progress));
  top: 50%;
  transform: translate(calc(-50% * var(--scroll-progress)), -50%) scale(calc(1 - 0.3 * var(--scroll-progress)));
  /* Added transition for smooth momentum effect when scrolling stops */
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
  letter-spacing: 3px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  opacity: calc(1 - (var(--scroll-progress) * 1.5));
  /* fades out a bit faster */
  max-width: calc(150px * (1 - var(--scroll-progress)));
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Hamburger toggle — always visible */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
  position: relative;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  transform-origin: center;
}

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

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

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

/* Nav links — always fullscreen overlay (hamburger menu) */
.nav-links {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 15, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  list-style: none;
  z-index: 1000;
}

.nav-links.active {
  display: flex;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ══════════════════
   HERO
   ══════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--accent-dim) 0%, transparent 60%);
  animation: heroPulse 6s ease-in-out infinite;
}

@keyframes heroPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.5s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: 6px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.accent,
span.accent,
.branding-logo span.accent {
  color: var(--accent);
}

.hero h1 .accent {
  text-shadow: 0 0 40px var(--accent-glow);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 2px;
}

.scroll-indicator .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ══════════════════
   SECTION HEADERS
   ══════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 2px;
}

.section-desc {
  color: var(--text-secondary);
  max-width: 600px;
  margin: 16px auto 0;
  font-size: 0.95rem;
}

/* ══════════════════
   ABOUT
   ══════════════════ */
#about {
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px dashed var(--border-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.8rem;
  overflow: hidden;
}

.about-image-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 1px;
  line-height: 1.3;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-size: 0.92rem;
}

/* ══════════════════════════════════════
   COMPETITIONS — NaviUSV-style cards
   ══════════════════════════════════════ */
#competitions {
  background: var(--bg-secondary);
}

.competitions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.competition-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/10;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.competition-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.competition-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.competition-image img {
  width: 130%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.15) brightness(0.5);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.competition-card:hover .competition-image img {
  filter: saturate(1) brightness(0.75);
  width: 100%;
}

.competition-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.competition-year {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 4px;
}

.competition-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-primary);
  margin: 0;
}

.competition-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--accent);
  color: var(--bg-primary);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  align-self: flex-start;
}

.competition-btn span {
  transition: transform 0.3s ease;
}

.competition-btn:hover span {
  transform: translateX(4px);
}

.competition-card:hover .competition-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ── Competition Modal ── */
.competition-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.competition-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.competition-modal.active .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

/* Carousel */
.modal-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-primary);
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-primary);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 16px;
}

.carousel-btn.next {
  right: 16px;
}

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dots .dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 5px;
  box-shadow: 0 0 10px var(--accent);
}

.modal-body {
  padding: 32px;
}

.modal-year {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin: 8px 0 20px;
}

.modal-desc p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.modal-desc p:last-child {
  margin-bottom: 0;
}

/* ── Team Avatar Initials ── */
.avatar-initials {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 2px;
}

/* ── Sponsor Logo Mock ── */
.sponsor-logo-mock {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

/* ══════════════════
   GALLERY
   ══════════════════ */
#gallery {
  background: var(--bg-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  aspect-ratio: 16/10;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px dashed var(--border-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  transition: var(--transition);
  cursor: pointer;
}

.gallery-item:hover {
  border-color: var(--accent);
  transform: scale(1.02);
}

.gallery-item.featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item svg {
  width: 36px;
  height: 36px;
  opacity: 0.3;
}

/* ══════════════════════════════════════
   TEAM — Horizontal scroll with hints
   ══════════════════════════════════════ */
.team-scroll-wrapper {
  position: relative;
}

.team-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.team-scroll::-webkit-scrollbar {
  display: none;
}

.team-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: var(--bg-card-hover);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 0.65rem;
  color: var(--text-muted);
}

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

.team-card h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 500;
}

.team-card .dept {
  color: var(--text-muted);
  font-size: 0.7rem;
  margin-top: 4px;
}

/* Scroll fade hints — left & right */
.team-scroll-wrapper::before,
.team-scroll-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 24px;
  width: 60px;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.team-scroll-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary), transparent);
  opacity: 0;
}

.team-scroll-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary), transparent);
}

.team-scroll-wrapper.scrolled-start::before {
  opacity: 1;
}

.team-scroll-wrapper.scrolled-end::after {
  opacity: 0;
}

/* Scroll arrow buttons */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.scroll-btn:hover {
  background: var(--accent-dim);
}

.scroll-btn.left {
  left: -8px;
}

.scroll-btn.right {
  right: -8px;
}

.scroll-btn.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Scroll dots indicator */
.scroll-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.scroll-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.scroll-dots .dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ══════════════════
   SPONSORS
   ══════════════════ */
#sponsors {
  background: var(--bg-secondary);
}

.sponsors-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.sponsor-item {
  width: 320px;
  height: 160px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 10px;
}

.sponsor-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.sponsor-item:hover {
  border-color: var(--border-accent);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
}

.sponsor-item svg {
  width: 28px;
  height: 28px;
  opacity: 0.3;
}

/* ══════════════════
   CONTACT
   ══════════════════ */
#contact {
  background: var(--bg-primary);
  padding-bottom: 40px;
  /* Reduced to bring footer line closer */
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  flex-shrink: 0;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.contact-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--accent);
}

/* ── Contact Branding ── */
.contact-branding {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.branding-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.branding-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.branding-logo span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--text-primary);

}

.branding-slogan {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}


/* ══════════════════
   FOOTER
   ══════════════════ */
.footer {
  padding: 0 0 24px;
  background: var(--bg-primary);
}

.footer .container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: flex-start;
}

.copyright-text {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.footer-logo span {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 3px;
  opacity: 0.5;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: var(--transition);
}

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

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ══════════════════
   ANIMATIONS
   ══════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ══════════════════
   RESPONSIVE
   ══════════════════ */
@media (max-width: 1024px) {
  .competitions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.featured {
    grid-column: span 2;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .competitions-grid {
    grid-template-columns: 1fr;
  }

  .sponsors-grid {
    gap: 24px;
  }

  .sponsor-item {
    width: 140px;
    height: 70px;
  }

  section {
    padding: 64px 0;
  }

  .scroll-btn {
    display: none;
  }

  .modal-content {
    width: 95%;
    max-height: 95vh;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.featured {
    grid-column: span 1;
  }

  .team-card {
    flex: 0 0 200px;
  }

  .competition-title {
    font-size: 1.2rem;
  }

  .competition-overlay {
    padding: 20px;
  }
}