/* ============================================
   IIMK BMS Sports Committee
   Premium Design System + Uiverse Components
   ============================================ */

:root {
  --brand: #004890;
  --brand-dark: #003366;
  --brand-light: #0056A8;
  --brand-glow: rgba(0, 86, 168, 0.45);
  --brand-subtle: rgba(0, 72, 144, 0.08);
  --white: #FFFFFF;
  --grey-50: #FAFAFA;
  --grey-100: #F5F5F5;
  --grey-200: #E5E5E5;
  --grey-300: #D4D4D4;
  --grey-400: #A3A3A3;
  --grey-500: #737373;
  --grey-600: #525252;
  --grey-700: #404040;
  --grey-800: #262626;
  --grey-900: #171717;
  --black: #0A0A0A;

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --nav-height: 72px;
  --container: 1200px;
  --section-padding: 120px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: auto;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--grey-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ============================================
   AMBIENT BACKGROUND ORBS
   ============================================ */

.ambient-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  contain: strict;
  transform: translateZ(0);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.3;
  animation: orbFloat 20s ease-in-out infinite;
  will-change: transform;
  transform: translateZ(0);
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--brand-light) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 72, 144, 0.4) 0%, transparent 70%);
  bottom: 20%;
  left: -8%;
  animation-delay: -7s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 86, 168, 0.3) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px) saturate(150%);
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  border-bottom: 1px solid rgba(0, 72, 144, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.navbar:not(.scrolled) {
  background: transparent;
}

.navbar:not(.scrolled) .nav-links a,
.navbar:not(.scrolled) .logo-text {
  color: var(--white);
}

.navbar:not(.scrolled) .nav-toggle span {
  background: var(--white);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  transition: transform 0.3s var(--spring);
}

.nav-logo:hover {
  transform: scale(1.02);
}

.logo-mark {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: var(--transition);
}

.navbar.scrolled .logo-img { filter: none; }
.navbar:not(.scrolled) .logo-img { filter: brightness(0) invert(1); }

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--grey-900);
  transition: var(--transition);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: 2px;
}

.navbar:not(.scrolled) .logo-text span {
  color: rgba(255, 255, 255, 0.55);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-700);
  letter-spacing: -0.01em;
  position: relative;
  transition: color 0.3s ease;
  padding: 4px 0;
  overflow: hidden;
}

.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--spring);
  border-radius: 2px;
}

.nav-links a:hover::before,
.nav-links a.active::before {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: width 0.35s var(--spring), left 0.35s var(--spring);
  display: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
}

.navbar:not(.scrolled) .nav-links a:hover,
.navbar:not(.scrolled) .nav-links a.active {
  color: var(--white);
}

.navbar:not(.scrolled) .nav-links a::before {
  background: var(--white);
}

/* ============================================
   BUTTONS (Uiverse-inspired)
   ============================================ */

.btn-premium,
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn-premium::before,
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn-premium:hover::before,
.btn-primary:hover::before {
  left: 100%;
}

.btn-shimmer {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 50%, var(--brand) 100%);
  background-size: 200% 200%;
  animation: shimmerBg 4s ease infinite;
}

@keyframes shimmerBg {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.btn-glow:hover {
  box-shadow: 0 0 30px var(--brand-glow), 0 8px 32px rgba(0, 72, 144, 0.3);
  transform: translateY(-2px);
}

.btn-premium:hover,
.btn-primary:hover {
  background-color: var(--brand-dark);
  transform: translateY(-2px);
}

.btn-premium i,
.btn-primary i {
  font-size: 1rem;
  transition: transform 0.35s var(--spring);
}

.btn-premium:hover i,
.btn-primary:hover i {
  transform: translateX(4px);
}

.btn-primary.btn-large {
  padding: 18px 40px;
  font-size: 0.9375rem;
  border-radius: 12px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-secondary i {
  transition: transform 0.35s var(--spring);
}

.btn-secondary:hover i {
  transform: translateY(3px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  color: var(--brand);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1.5px solid var(--brand);
  border-radius: 10px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--transition);
  z-index: -1;
}

.btn-outline:hover::before {
  transform: scaleX(1);
}

.btn-outline:hover {
  color: var(--white);
}

.btn-magnetic {
  transition: transform 0.15s ease-out, var(--transition);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--grey-800);
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 56px;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 0.4s ease-out;
  will-change: transform;
}

.hero-collage {
  display: none;
  position: absolute;
  inset: 0;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr;
  z-index: 0;
}

.collage-item {
  position: relative;
  overflow: hidden;
}

.collage-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 20s ease-in-out infinite alternate;
  transform: translateZ(0);
}

.collage-football img { animation-delay: 0s; }
.collage-volleyball img { animation-delay: -4s; }
.collage-basketball img { animation-delay: -8s; }
.collage-swimming img { animation-delay: -12s; }
.collage-cricket img { animation-delay: -16s; }

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -1%); }
}

.collage-football { grid-column: 1; }
.collage-volleyball { grid-column: 2; }
.collage-basketball { grid-column: 3; }
.collage-swimming { grid-column: 4; }
.collage-cricket { grid-column: 5; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.72) 0%,
    rgba(0, 36, 72, 0.55) 45%,
    rgba(10, 10, 10, 0.88) 100%
  );
  z-index: 1;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 32px;
  max-width: 900px;
  transform: none;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 32px;
}

.hero-line {
  display: block;
  font-size: clamp(3.5rem, 10vw, 7rem);
  letter-spacing: -0.04em;
  color: var(--white);
  opacity: 0;
  transform: translateY(48px) rotateX(12deg);
  animation: heroLineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.15s + var(--line-i, 0) * 0.12s);
  transform-origin: center bottom;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.4),
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 16px 64px rgba(0, 0, 0, 0.35);
}

.hero-line.accent {
  color: var(--brand-light);
  background: linear-gradient(135deg, #4da6ff 0%, var(--brand-light) 40%, #80c4ff 60%, var(--brand-light) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 40px var(--brand-glow));
  animation: heroLineReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards,
             accentGradientFlow 5s ease-in-out infinite;
  animation-delay: calc(0.15s + var(--line-i, 0) * 0.12s), 0s;
}

@keyframes heroLineReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes accentGradientFlow {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  margin-bottom: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(16px);
  animation: heroBadgeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4da6ff;
  animation: heroBadgePulse 2s ease-in-out infinite;
}

.hero-badge i {
  font-size: 0.875rem;
  color: #4da6ff;
}

@keyframes heroBadgeIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroBadgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(77, 166, 255, 0.6); transform: scale(1); }
  50% { box-shadow: 0 0 0 6px rgba(77, 166, 255, 0); transform: scale(1.1); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.12);
  font-size: 1.25rem;
  animation: heroParticleDrift 18s ease-in-out infinite;
}

.hero-particle:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.hero-particle:nth-child(2) { top: 25%; right: 12%; animation-delay: -3s; font-size: 1.5rem; }
.hero-particle:nth-child(3) { bottom: 30%; left: 15%; animation-delay: -6s; }
.hero-particle:nth-child(4) { top: 60%; right: 8%; animation-delay: -9s; }
.hero-particle:nth-child(5) { bottom: 20%; right: 25%; animation-delay: -12s; font-size: 1.75rem; color: rgba(77, 166, 255, 0.2); }
.hero-particle:nth-child(6) { top: 40%; left: 5%; animation-delay: -15s; }

@keyframes heroParticleDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
  25% { transform: translate(20px, -30px) rotate(15deg); opacity: 1; }
  50% { transform: translate(-10px, -50px) rotate(-10deg); opacity: 0.6; }
  75% { transform: translate(15px, -20px) rotate(8deg); opacity: 0.9; }
}

.hero-accent-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-accent-line {
  position: absolute;
  width: 1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: heroAccentSweep 6s ease-in-out infinite;
}

.hero-accent-line:first-child {
  left: 12%;
  top: 20%;
  animation-delay: 0s;
}

.hero-accent-line:last-child {
  right: 15%;
  bottom: 25%;
  animation-delay: -3s;
  transform: rotate(180deg);
}

@keyframes heroAccentSweep {
  0%, 100% { opacity: 0.3; transform: translateY(0) scaleY(1); }
  50% { opacity: 0.8; transform: translateY(40px) scaleY(1.3); }
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  opacity: 0;
  animation: heroFadeSlide 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.45),
    0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 48px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: heroFadeSlide 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.5),
    0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeSlide 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

@keyframes heroFadeSlide {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-scroller {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding-bottom: max(20px, env(safe-area-inset-bottom));
  opacity: 0;
  animation: heroFadeSlide 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.95s forwards;
}

.hero-scroller-mask {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 36, 72, 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.hero-scroller-mask:hover .hero-scroller-track {
  animation-play-state: paused;
}

.hero-scroller-track {
  display: flex;
  width: max-content;
  animation: heroScrollerMove 38s linear infinite;
  will-change: transform;
}

.hero-scroller-list {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 18px 20px;
  margin: 0;
  list-style: none;
  flex-shrink: 0;
}

.hero-scroller-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.hero-scroller-list li i,
.hero-scroller-list li .hero-sport-icon {
  font-size: 1.125rem;
  color: var(--brand-light);
}

.hero-scroller-list li .hero-sport-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

.hero-scroller-list li .hero-sport-icon svg {
  width: 100%;
  height: 100%;
}

.hero-scroller-list li.hero-scroller-chip {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}

.hero-scroller-list li.hero-scroller-chip i {
  color: #4da6ff;
}

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   STATS BAR
   ============================================ */

.stats-bar {
  position: relative;
  z-index: 2;
  padding: 56px 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-100);
  margin-top: -1px;
  overflow: hidden;
}

.stats-glow-track {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-light), transparent);
  animation: statsGlowSweep 4s ease-in-out infinite;
}

@keyframes statsGlowSweep {
  0% { left: -60%; }
  100% { left: 100%; }
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  position: relative;
  transition: transform 0.4s var(--spring);
}

.stat-icon-ring {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-subtle);
  margin-bottom: 12px;
  position: relative;
  transition: var(--transition);
}

.stat-icon-ring::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px dashed rgba(0, 72, 144, 0.2);
  animation: statRingSpin 12s linear infinite;
}

.stat-icon-ring i {
  font-size: 1.125rem;
  color: var(--brand);
  transition: transform 0.4s var(--spring);
}

.stat-item:hover .stat-icon-ring {
  background: var(--brand);
  transform: scale(1.08);
}

.stat-item:hover .stat-icon-ring i {
  color: var(--white);
  transform: rotate(-8deg) scale(1.1);
}

.stat-item:hover .stat-icon-ring::before {
  border-color: rgba(255, 255, 255, 0.3);
}

@keyframes statRingSpin {
  to { transform: rotate(360deg); }
}

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--brand);
  margin-left: 2px;
}

.stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--grey-500);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 8px;
}

.stat-bar {
  width: 48px;
  height: 3px;
  background: var(--grey-100);
  border-radius: 3px;
  margin-top: 12px;
  overflow: hidden;
}

.stat-bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  border-radius: 3px;
  transition: width 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-item.stat-animated .stat-bar-fill {
  width: calc(var(--fill, 100) * 1%);
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--grey-200);
  position: relative;
  overflow: hidden;
}

.stat-divider-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, var(--brand-light), transparent);
  animation: statDividerGlow 3s ease-in-out infinite;
  opacity: 0;
}

@keyframes statDividerGlow {
  0%, 100% { opacity: 0; transform: translateY(-100%); }
  50% { opacity: 0.6; transform: translateY(100%); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.section-header.center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
  position: relative;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--brand);
  margin-right: 12px;
  vertical-align: middle;
  border-radius: 2px;
}

.section-header.center .section-label::before {
  display: none;
}

.section-header.center .section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--brand);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-label-animated {
  position: relative;
  overflow: hidden;
}

.section-label-animated::before {
  width: 0;
}

.section-header.visible .section-label-animated::before {
  animation: labelLineGrow 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.section-header.visible .section-label-animated::before,
.section-header.center .section-label-animated::after {
  /* width reset handled above */
}

@keyframes labelLineGrow {
  from { width: 0; opacity: 0; }
  to { width: 24px; opacity: 1; }
}

.section-header.center .section-label-animated::after {
  width: 0;
}

.section-header.center.visible .section-label-animated::after {
  animation: labelLineGrowCenter 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes labelLineGrowCenter {
  from { width: 0; opacity: 0; }
  to { width: 40px; opacity: 1; }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--grey-900);
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
}

.section-header.visible .section-title {
  animation: titleReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

@keyframes titleReveal {
  from { opacity: 0; transform: translateY(16px); letter-spacing: 0.02em; }
  to { opacity: 1; transform: translateY(0); letter-spacing: -0.03em; }
}

.section-desc {
  font-size: 1rem;
  color: var(--grey-500);
  max-width: 560px;
  line-height: 1.7;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

/* ============================================
   SECTION BACKGROUNDS
   ============================================ */

.section-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 72, 144, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 86, 168, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(0, 72, 144, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.section-bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 72, 144, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 15%, black 85%, transparent);
}

.section-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 72, 144, 0.03) 0%, transparent 50%, rgba(0, 86, 168, 0.04) 100%);
  pointer-events: none;
}

.section-bg-waves {
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23004890' fill-opacity='0.03' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") bottom center / cover no-repeat;
  pointer-events: none;
}

.section-bg-dots-animated {
  animation: dotsDrift 20s linear infinite;
}

.section-bg-gradient-animated {
  animation: gradientShift 8s ease-in-out infinite alternate;
}

.section-bg-waves-animated {
  animation: waveBob 6s ease-in-out infinite;
}

@keyframes dotsDrift {
  0% { background-position: 0 0; }
  100% { background-position: 28px 28px; }
}

@keyframes gradientShift {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.02); }
}

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

/* Section decorative elements */
.section-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.deco-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 72, 144, 0.08);
  animation: decoOrbitSpin 20s linear infinite;
}

.deco-orbit-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.deco-orbit-2 {
  width: 250px;
  height: 250px;
  bottom: 10%;
  left: -60px;
  animation-direction: reverse;
  animation-duration: 15s;
}

.deco-float-icon {
  position: absolute;
  top: 20%;
  right: 8%;
  font-size: 2rem;
  color: rgba(0, 72, 144, 0.06);
  animation: decoIconFloat 8s ease-in-out infinite;
}

@keyframes decoOrbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes decoIconFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(12deg); }
}

/* ============================================
   TRIALS SECTION
   ============================================ */

.trials {
  padding: var(--section-padding) 0;
  background: var(--grey-50);
  position: relative;
  overflow: hidden;
}

.trials .section-desc.trials-intro {
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--grey-700);
  line-height: 1.75;
  max-width: 640px;
}

.trials-level-block {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
}

.trials-subheader {
  margin-bottom: 32px;
}

.trials-subheading {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--grey-900);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 10px;
}

.trials-subdesc {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--grey-600);
  line-height: 1.65;
  max-width: 560px;
}

.level-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.level-card {
  padding: 48px 36px;
  border: 1px solid var(--grey-200);
  border-radius: 20px;
  position: relative;
  transition: var(--transition);
  background: var(--white);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.level-card-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  overflow: hidden;
  pointer-events: none;
}

.level-card-corner::before {
  content: '';
  position: absolute;
  top: 12px;
  right: -20px;
  width: 80px;
  height: 2px;
  background: var(--brand);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.4s ease, right 0.4s var(--spring);
}

.level-card:hover .level-card-corner::before {
  opacity: 0.4;
  right: -10px;
}

.card-border-glow:hover {
  border-color: var(--brand);
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 72, 144, 0.1);
}

.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.7s ease;
  pointer-events: none;
}

.level-card:hover .card-shine {
  left: 150%;
}

.level-card.featured {
  border-color: transparent;
  background: var(--brand);
}

/* Uiverse animated border card */
.card-animated-border {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.card-animated-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: conic-gradient(from var(--border-angle, 0deg), var(--brand), var(--brand-light), #4da6ff, var(--brand));
  z-index: 0;
  animation: rotateBorder 4s linear infinite;
}

.card-animated-border::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 19px;
  background: linear-gradient(145deg, var(--brand-dark) 0%, var(--brand) 100%);
  z-index: 1;
}

.card-animated-border > * {
  position: relative;
  z-index: 2;
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@property --sched-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateBorder {
  to { --border-angle: 360deg; --sched-angle: 360deg; }
}

.level-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--grey-200);
  line-height: 1;
  margin-bottom: 24px;
  transition: color 0.4s ease, transform 0.4s var(--spring);
}

.level-card:hover .level-number {
  color: rgba(0, 72, 144, 0.15);
  transform: scale(1.05);
}

.level-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}

.level-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.level-quote {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--grey-600);
  line-height: 1.65;
  font-style: normal;
}

.trials .level-number {
  font-size: 3.25rem;
  color: var(--grey-300);
}

.trials .level-card.featured .level-number {
  color: rgba(255, 255, 255, 0.35);
}

.trials .level-card.featured:hover .level-number {
  color: rgba(255, 255, 255, 0.5);
}

.trials .level-card.featured .level-badge {
  color: rgba(255, 255, 255, 0.75);
}

.trials .level-card.featured .level-title {
  color: var(--white);
}

.trials .level-card.featured .level-quote {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.trials .level-card.featured {
  box-shadow: 0 16px 48px rgba(0, 72, 144, 0.12);
}

.trials-cta {
  text-align: center;
  margin-bottom: 96px;
  position: relative;
  z-index: 1;
}

.cta-note {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--grey-400);
}

.trials .register-premium {
  margin-bottom: 64px;
}

.trials .register-premium-title {
  font-size: clamp(1.875rem, 3.2vw, 2.375rem);
  font-weight: 700;
}

.trials .register-premium-desc {
  font-size: 1rem;
  font-weight: 500;
  color: var(--grey-700);
  line-height: 1.7;
  max-width: 540px;
}

.trials .register-premium-feature strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--grey-900);
}

.trials .register-premium-feature span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--grey-500);
}

.trials .register-premium-meta-card strong {
  font-size: 0.9375rem;
}

.trials .register-premium-cta {
  font-size: 1rem;
  font-weight: 700;
  padding: 18px 36px;
}

.trials .register-premium-meta {
  grid-template-columns: 1fr;
  max-width: 320px;
}

.trials .schedule-desc,
.trials .schedule-tba-desc {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--grey-600);
  line-height: 1.7;
}

.trials .schedule-tba-title {
  font-size: clamp(1.375rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: var(--brand-dark);
}

.trials .register-premium-step-text {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.trials .register-premium-season {
  font-size: 1.5rem;
}

/* Notice board */
.notice-board {
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.notice-board-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 72, 144, 0.08);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.04),
    0 32px 80px rgba(0, 72, 144, 0.08);
}

.notice-board-side {
  position: relative;
  background: var(--black);
  padding: 40px 32px;
  overflow: hidden;
}

.notice-board-side-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.notice-board-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 28px;
}

.notice-board-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}

.notice-board-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-light);
  border-radius: 2px;
  margin-bottom: 12px;
}

.notice-board-heading {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.notice-board-side-desc {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
  margin-bottom: 28px;
}

.notice-board-side-stat {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.notice-board-side-stat i {
  color: var(--brand-light);
  font-size: 1rem;
}

.notice-board-side-glow {
  position: absolute;
  bottom: -35%;
  right: -25%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 86, 168, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.notice-board-main {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.notice-board-main-head {
  margin-bottom: 28px;
}

.notice-board-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 1.875rem);
  font-weight: 700;
  color: var(--grey-900);
  letter-spacing: -0.03em;
  margin: 8px 0 10px;
}

.notice-board-desc {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--grey-600);
  line-height: 1.65;
  max-width: 560px;
}

.notice-board-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notice-board-item {
  position: relative;
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 20px;
  padding: 20px 22px;
  border: 1.5px solid var(--grey-200);
  border-radius: 16px;
  background: var(--grey-50);
  transition: border-color 0.25s ease-out, transform 0.25s ease-out, box-shadow 0.25s ease-out;
}

.notice-board-item:hover {
  border-color: rgba(0, 72, 144, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 72, 144, 0.08);
}

.notice-board-item.is-latest {
  border-color: rgba(0, 72, 144, 0.28);
  background: linear-gradient(135deg, rgba(0, 72, 144, 0.04) 0%, rgba(255, 255, 255, 1) 100%);
}

.notice-board-item-date {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand);
}

.notice-board-item-date i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 72, 144, 0.08);
  font-size: 1rem;
}

.notice-board-item-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--grey-900);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  padding-right: 72px;
}

.notice-board-item-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-600);
  line-height: 1.65;
}

.notice-board-item-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(0, 72, 144, 0.08);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
}

.notice-board-empty,
.notice-board-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 24px;
  border: 1.5px dashed var(--grey-200);
  border-radius: 16px;
  text-align: center;
  color: var(--grey-500);
}

.notice-board-empty i {
  font-size: 2rem;
  color: var(--grey-300);
}

.notice-board-loading {
  flex-direction: row;
  padding: 32px;
}

.notice-board-loading-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.35;
  animation: noticeBoardPulse 1.2s ease-out infinite;
}

.notice-board-loading-dot:nth-child(2) { animation-delay: 0.15s; }
.notice-board-loading-dot:nth-child(3) { animation-delay: 0.3s; }

@keyframes noticeBoardPulse {
  0%, 80%, 100% { opacity: 0.35; transform: scale(1); }
  40% { opacity: 1; transform: scale(1.15); }
}

/* Upcoming Trials Schedule — minimal premium */
.trials-schedule {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 56px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0, 36, 72, 0.04);
}

.schedule-header {
  text-align: center;
  margin-bottom: 40px;
}

.schedule-header .section-label::before {
  display: none;
}

.schedule-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--grey-900);
  letter-spacing: -0.03em;
  margin: 8px 0 10px;
}

.schedule-desc {
  font-size: 0.9375rem;
  color: var(--grey-500);
  max-width: 400px;
  margin: 0 auto;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.schedule-card {
  padding: 24px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: 16px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.schedule-card:hover {
  border-color: rgba(0, 72, 144, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 72, 144, 0.06);
}

.schedule-card-date {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--grey-200);
}

.schedule-day {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--grey-900);
  letter-spacing: -0.03em;
  line-height: 1;
}

.schedule-month {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--grey-400);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}

.schedule-sport {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--grey-900);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.schedule-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.schedule-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--grey-500);
}

.schedule-meta i {
  font-size: 0.875rem;
  color: var(--grey-400);
}

.schedule-footer {
  margin-top: 32px;
  text-align: center;
}

.schedule-tba {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border: 1px dashed rgba(0, 72, 144, 0.2);
  border-radius: 16px;
}

.schedule-tba-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(0, 72, 144, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  font-size: 1.75rem;
}

.schedule-tba-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--grey-900);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.schedule-tba-desc {
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--grey-500);
}

@media (max-width: 1024px) {
  .notice-board-card {
    grid-template-columns: 1fr;
  }

  .notice-board-side {
    padding: 32px 28px;
  }

  .notice-board-main {
    padding: 36px 28px;
  }

  .notice-board-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .notice-board-item-title {
    padding-right: 0;
  }

  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trials-schedule {
    padding: 40px 32px;
  }

  .schedule-tba {
    padding: 40px 24px;
  }
}

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

  .trials-schedule {
    padding: 32px 20px;
    border-radius: 16px;
  }
}

/* ============================================
   SPORTS GRID
   ============================================ */

.sports {
  padding: var(--section-padding) 0;
  background: var(--grey-50);
  position: relative;
  overflow: hidden;
}

.sports-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--grey-200);
  border: 1px solid var(--grey-200);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.sports-orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  margin: -250px 0 0 -250px;
  border: 1px dashed rgba(0, 72, 144, 0.06);
  border-radius: 50%;
  pointer-events: none;
  animation: sportsOrbitSpin 30s linear infinite;
}

.sports-orbit-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--brand-light);
  border-radius: 50%;
  opacity: 0.4;
}

@keyframes sportsOrbitSpin {
  to { transform: rotate(360deg); }
}

.sport-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px 20px;
  background: var(--white);
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.sport-ripple {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(0, 72, 144, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.sport-item:hover .sport-ripple {
  opacity: 1;
}

.sport-icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--grey-50);
  transition: var(--transition);
}

.sport-item i,
.sport-item .sport-icon {
  font-size: 1.75rem;
  color: var(--grey-800);
  transition: var(--transition);
}

.sport-item .sport-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
}

.sport-item .sport-icon svg {
  width: 100%;
  height: 100%;
}

.sport-item span:last-child {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--grey-600);
  letter-spacing: -0.01em;
  text-align: center;
  transition: var(--transition);
}

.sport-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.sport-item:hover::before {
  opacity: 1;
}

.sport-item:hover .sport-icon-wrap {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1) rotate(-3deg);
}

.sport-item:hover i,
.sport-item:hover .sport-icon,
.sport-item:hover span:last-child {
  color: var(--white);
  position: relative;
  z-index: 1;
}

.sport-item:hover .sport-icon-wrap {
  position: relative;
  z-index: 1;
  animation: sportIconBounce 0.5s var(--spring);
}

@keyframes sportIconBounce {
  0% { transform: scale(1) rotate(0deg); }
  40% { transform: scale(1.2) rotate(-6deg); }
  100% { transform: scale(1.1) rotate(-3deg); }
}

/* ============================================
   PAST EVENTS
   ============================================ */

.events {
  padding: var(--section-padding) 0;
  background: var(--grey-50);
  position: relative;
  overflow: hidden;
}

.events-header {
  margin-bottom: 72px;
}

.events-deco-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.events-deco-lines span {
  position: absolute;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 72, 144, 0.1), transparent);
  animation: eventLineSlide 8s ease-in-out infinite;
}

.events-deco-lines span:nth-child(1) { top: 20%; left: -200px; animation-delay: 0s; }
.events-deco-lines span:nth-child(2) { top: 50%; left: -200px; animation-delay: -2.5s; }
.events-deco-lines span:nth-child(3) { top: 80%; left: -200px; animation-delay: -5s; }

@keyframes eventLineSlide {
  0% { transform: translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(calc(100vw + 400px)); opacity: 0; }
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.event-card {
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
  border: 1px solid var(--grey-200);
  transform-style: preserve-3d;
  position: relative;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.03),
    0 16px 48px rgba(0, 72, 144, 0.06);
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.04),
    0 32px 80px rgba(0, 72, 144, 0.14);
}

.event-card-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  overflow: hidden;
  pointer-events: none;
  z-index: 3;
}

.event-card-corner::before {
  content: '';
  position: absolute;
  top: 16px;
  right: -24px;
  width: 96px;
  height: 2px;
  background: var(--brand);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.4s ease, right 0.4s var(--spring);
}

.event-card:hover .event-card-corner::before {
  opacity: 0.35;
  right: -14px;
}

.event-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}

.event-media-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 20, 40, 0.08) 0%,
    transparent 35%,
    transparent 55%,
    rgba(0, 20, 40, 0.55) 100%
  );
  pointer-events: none;
}

.event-image img,
.event-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  background: var(--grey-900);
}

.event-image-video.is-playing .event-play-btn {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}

.event-image-video.is-playing:hover .event-play-btn {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.event-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand);
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.event-play-btn i {
  font-size: 1.875rem;
  margin-left: 4px;
}

.event-play-btn:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 16px 48px rgba(0, 72, 144, 0.4);
}

.event-watch-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.event-image-video.is-playing .event-image-shine {
  display: none;
}

.event-year {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.event-frame-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.event-frame-tl {
  top: 16px;
  left: 16px;
  border-top: 2px solid rgba(255, 255, 255, 0.7);
  border-left: 2px solid rgba(255, 255, 255, 0.7);
}

.event-frame-br {
  bottom: 16px;
  right: 16px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  border-right: 2px solid rgba(255, 255, 255, 0.7);
}

.event-card:hover .event-frame-corner {
  opacity: 1;
}

.event-tag-pulse {
  animation: eventTagPulse 2s ease-in-out infinite;
}

@keyframes eventTagPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); box-shadow: 0 4px 20px rgba(0, 72, 144, 0.45); }
}

.event-card:hover .event-image img,
.event-card:hover .event-image video {
  transform: scale(1.06);
}

.event-image-shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  pointer-events: none;
}

.event-card:hover .event-image-shine {
  transform: translateX(100%);
}

.event-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
}

.event-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 4px 20px rgba(0, 72, 144, 0.35);
}

.event-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 32px 32px 28px;
  gap: 0;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.event-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--grey-600);
  letter-spacing: -0.01em;
  transition: var(--transition);
}

.event-meta-item i {
  font-size: 0.875rem;
  color: var(--brand);
}

.event-card:hover .event-meta-item {
  border-color: rgba(0, 72, 144, 0.12);
  background: var(--brand-subtle);
}

.event-title {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 1.625rem);
  font-weight: 700;
  color: var(--grey-900);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  line-height: 1.25;
}

.event-desc {
  font-size: 0.9375rem;
  color: var(--grey-500);
  line-height: 1.75;
  margin-bottom: 0;
  flex: 1;
}

.event-footer {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-100);
}

.event-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(0, 72, 144, 0.22);
}

.event-cta i {
  font-size: 1rem;
  transition: transform 0.35s var(--spring);
}

.event-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 72, 144, 0.32);
  gap: 14px;
}

.event-cta:hover i {
  transform: scale(1.1);
}

.event-card .card-shine {
  border-radius: 24px;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery {
  padding: var(--section-padding) 0;
  background: var(--grey-50);
  position: relative;
  overflow: hidden;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}

.gallery-item.is-video .gallery-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 36, 72, 0.75);
  border: 2px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform 0.35s var(--spring), background 0.3s ease;
  pointer-events: none;
}

.gallery-item.is-video .gallery-play-badge i {
  font-size: 1.5rem;
  color: var(--white);
  margin-left: 3px;
}

.gallery-item.is-video:hover .gallery-play-badge {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--brand);
}

.gallery-item.is-video .gallery-overlay {
  opacity: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 36, 72, 0.7) 100%);
}

.gallery-item.is-video .gallery-overlay i {
  display: none;
}

.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.gallery-see-more.is-expanded i {
  transform: rotate(180deg);
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 40, 0.88);
  backdrop-filter: blur(8px);
}

.gallery-modal-dialog {
  position: relative;
  width: min(960px, 100%);
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 36, 72, 0.35);
  animation: galleryModalIn 0.35s var(--spring);
}

@keyframes galleryModalIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.gallery-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 36, 72, 0.08);
  color: var(--grey-900);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
}

.gallery-modal-close:hover {
  background: var(--brand);
  color: var(--white);
  transform: rotate(90deg);
}

.gallery-modal-title {
  padding: 20px 56px 12px 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--grey-900);
}

.gallery-modal-body {
  aspect-ratio: 16 / 9;
  background: var(--grey-900);
}

.gallery-modal-body iframe,
.gallery-modal-body img {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: contain;
  display: block;
  background: #000;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transform-style: preserve-3d;
  aspect-ratio: 4 / 3;
  min-height: 200px;
  background: var(--grey-200);
  width: 100%;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}

.gallery-frame {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 12px;
  z-index: 2;
  pointer-events: none;
  transition: border-color 0.4s ease, inset 0.4s var(--spring);
}

.gallery-item:hover .gallery-frame {
  border-color: rgba(255, 255, 255, 0.4);
  inset: 12px;
}

.gallery-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.gallery-media img,
.gallery-media iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  display: block;
}

.gallery-drive-preview {
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
  animation: galleryKenBurns 20s ease-in-out infinite alternate;
}

.gallery-item:nth-child(2) .gallery-media img { animation-delay: -4s; }
.gallery-item:nth-child(3) .gallery-media img { animation-delay: -8s; }

@keyframes galleryKenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.gallery-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.gallery-sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--brand-light);
  border-radius: 50%;
  opacity: 0;
  animation: gallerySparkle 4s ease-in-out infinite;
}

.gallery-sparkle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.gallery-sparkle:nth-child(2) { top: 40%; right: 15%; animation-delay: -1s; }
.gallery-sparkle:nth-child(3) { bottom: 30%; left: 25%; animation-delay: -2s; }
.gallery-sparkle:nth-child(4) { top: 60%; right: 30%; animation-delay: -3s; }

@keyframes gallerySparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 0.8; transform: scale(1); box-shadow: 0 0 12px var(--brand-light); }
}

.gallery-overlay i {
  font-size: 1.75rem;
  color: var(--white);
  transform: scale(0.5);
  transition: transform 0.4s var(--spring);
  animation: galleryZoomPulse 2s ease-in-out infinite;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
  animation: none;
}

@keyframes galleryZoomPulse {
  0%, 100% { transform: scale(0.5); }
  50% { transform: scale(0.65); }
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 36, 72, 0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-media img {
  transform: scale(1.08);
  filter: brightness(0.85);
  animation-play-state: paused;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* ============================================
   POINT OF CONTACT
   ============================================ */

.contact {
  position: relative;
  padding: var(--section-padding) 0;
  background: var(--grey-50);
  overflow: hidden;
}

.section-bg-mesh-light {
  opacity: 0.45;
}

.contact-premium {
  position: relative;
  z-index: 1;
}

.contact-premium-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 72, 144, 0.08);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.04),
    0 32px 80px rgba(0, 72, 144, 0.08);
}

.contact-premium-side {
  position: relative;
  background: var(--black);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.contact-premium-side-inner {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-premium-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 28px;
}

.contact-premium-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}

.contact-premium-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-light);
  border-radius: 2px;
  margin-bottom: 12px;
}

.contact-premium-heading {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.contact-premium-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-general {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.contact-general:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.contact-general-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--brand);
  font-size: 1.125rem;
}

.contact-general-text {
  flex: 1;
  min-width: 0;
}

.contact-general-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 2px;
}

.contact-general-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  word-break: break-word;
}

.contact-general-arrow {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.35);
  flex-shrink: 0;
  transition: transform 0.3s var(--spring), color 0.3s ease;
}

.contact-general:hover .contact-general-arrow {
  color: var(--white);
  transform: translate(2px, -2px);
}

.contact-premium-side-glow {
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 86, 168, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.contact-premium-main {
  padding: 40px 40px 36px;
}

.contact-members-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 24px;
}

.contact-members {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-member {
  padding: 20px;
  border-radius: 16px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
}

.contact-member:hover {
  border-color: rgba(0, 72, 144, 0.2);
  background: var(--white);
  box-shadow: 0 8px 28px rgba(0, 72, 144, 0.08);
  transform: translateY(-2px);
}

.contact-member-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.contact-member-info {
  min-width: 0;
}

.contact-member-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--grey-900);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 3px;
}

.contact-member-roll {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-400);
}

.contact-member-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.contact-member-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  color: var(--grey-700);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  min-width: 0;
}

.contact-member-btn i {
  font-size: 0.9375rem;
  color: var(--brand);
  flex-shrink: 0;
}

.contact-member-btn span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-member-btn:hover {
  border-color: var(--brand);
  background: var(--brand-subtle);
  color: var(--brand);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 80px 0 40px;
  background: var(--grey-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.footer-border-anim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-light), #4da6ff, var(--brand-light), transparent);
  background-size: 200% 100%;
  animation: footerBorderFlow 4s linear infinite;
}

@keyframes footerBorderFlow {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.footer-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(77, 166, 255, 0.3);
  border-radius: 50%;
  animation: footerParticleFloat 12s ease-in-out infinite;
}

.footer-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.footer-particles span:nth-child(2) { top: 60%; left: 25%; animation-delay: -2s; }
.footer-particles span:nth-child(3) { top: 30%; right: 20%; animation-delay: -4s; }
.footer-particles span:nth-child(4) { bottom: 25%; right: 35%; animation-delay: -6s; }
.footer-particles span:nth-child(5) { bottom: 40%; left: 50%; animation-delay: -8s; }

@keyframes footerParticleFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.3; }
  50% { transform: translate(10px, -20px); opacity: 0.8; }
}

.footer-tagline-shimmer {
  background: linear-gradient(90deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.45) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: footerShimmer 5s ease-in-out infinite;
}

@keyframes footerShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.footer-link:hover .footer-icon-box {
  animation: footerIconPop 0.4s var(--spring);
}

@keyframes footerIconPop {
  0% { transform: translateY(-3px) scale(1); }
  50% { transform: translateY(-6px) scale(1.08); }
  100% { transform: translateY(-3px) scale(1); }
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(0, 86, 168, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

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

.footer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.footer-icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.footer-link i {
  font-size: 1.125rem;
}

.footer-link:hover {
  color: var(--white);
}

.footer-link:hover .footer-icon-box {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 72, 144, 0.3);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: 1.5rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-credit {
  position: absolute;
  right: 0;
  bottom: 0;
  margin-top: 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.02em;
  text-align: right;
}

.footer-credit span {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-blur {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* 3D tilt on interactive cards */
[data-tilt] {
  transition: transform 0.15s ease-out, box-shadow 0.4s ease;
}

.section-header.visible .section-desc {
  animation: descFadeIn 0.6s ease 0.2s both;
}

@keyframes descFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   REGISTRATION FORM
   ============================================ */

.register {
  position: relative;
  padding: var(--section-padding) 0;
  background: var(--grey-50);
  overflow: hidden;
}

.register-bg {
  opacity: 0.5;
}

.register-float-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.reg-float-icon {
  position: absolute;
  font-size: 1.5rem;
  color: rgba(0, 72, 144, 0.06);
  animation: regFloatDrift 10s ease-in-out infinite;
}

.reg-float-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.reg-float-icon:nth-child(2) { top: 60%; left: 8%; animation-delay: -2.5s; font-size: 2rem; }
.reg-float-icon:nth-child(3) { bottom: 15%; right: 10%; animation-delay: -5s; }
.reg-float-icon:nth-child(4) { top: 30%; right: 5%; animation-delay: -7.5s; font-size: 1.25rem; }

@keyframes regFloatDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.5; }
  50% { transform: translate(-15px, -25px) rotate(10deg); opacity: 1; }
}

.register-card.reveal-scale.visible {
  animation: registerCardGlow 6s ease-in-out infinite;
}

@keyframes registerCardGlow {
  0%, 100% { box-shadow: 0 8px 32px rgba(0, 72, 144, 0.06); }
  50% { box-shadow: 0 16px 56px rgba(0, 72, 144, 0.14); }
}

.checklist-item {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.5s ease, transform 0.5s var(--spring);
}

.register-intro.visible .checklist-item {
  opacity: 1;
  transform: translateX(0);
}

.register-intro.visible .checklist-item:nth-child(1) { transition-delay: 0.15s; }
.register-intro.visible .checklist-item:nth-child(2) { transition-delay: 0.25s; }
.register-intro.visible .checklist-item:nth-child(3) { transition-delay: 0.35s; }

.checklist-item i {
  animation: checklistPop 0.5s var(--spring) both;
}

.register-intro.visible .checklist-item:nth-child(1) i { animation-delay: 0.2s; }
.register-intro.visible .checklist-item:nth-child(2) i { animation-delay: 0.3s; }
.register-intro.visible .checklist-item:nth-child(3) i { animation-delay: 0.4s; }

@keyframes checklistPop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.register-cta-layout {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.register-cta-layout .section-label {
  justify-content: center;
}

.register-cta-layout .register-desc {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.register-cta-layout .register-checklist {
  display: inline-block;
  text-align: left;
  margin-bottom: 32px;
}

.register-cta-layout .register-meta {
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  border-top: none;
  padding-top: 0;
  margin-bottom: 36px;
}

.register-cta-btn {
  display: inline-flex;
}

/* Premium registration CTA */
.register-premium {
  position: relative;
  z-index: 1;
}

.register-premium-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0, 72, 144, 0.08);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.04),
    0 32px 80px rgba(0, 72, 144, 0.08);
  transition: box-shadow 0.5s ease, transform 0.5s var(--spring);
}

.register-premium.visible .register-premium-card {
  animation: registerPremiumGlow 8s ease-in-out infinite;
}

@keyframes registerPremiumGlow {
  0%, 100% { box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04), 0 32px 80px rgba(0, 72, 144, 0.08); }
  50% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06), 0 40px 96px rgba(0, 72, 144, 0.14); }
}

.register-premium-side {
  position: relative;
  background: var(--black);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.register-premium-side-inner {
  position: relative;
  z-index: 1;
}

.register-premium-side-glow {
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 86, 168, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.register-premium-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.register-premium-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.register-premium-eyebrow {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 6px;
}

.register-premium-season {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.register-premium-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.register-premium-step {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.register-premium-step:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.register-premium-step-num {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--brand-light);
  letter-spacing: 0.04em;
  min-width: 24px;
}

.register-premium-step-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

.register-premium-main {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.register-premium-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--grey-900);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 12px 0 16px;
}

.register-premium-desc {
  font-size: 0.9375rem;
  color: var(--grey-500);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 32px;
}

.register-premium-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.register-premium-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  border-radius: 14px;
  transition: border-color 0.3s ease, transform 0.3s var(--spring), box-shadow 0.3s ease;
}

.register-premium-feature:hover {
  border-color: rgba(0, 72, 144, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 72, 144, 0.06);
}

.register-premium-feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-subtle);
  color: var(--brand);
  border-radius: 10px;
  font-size: 1.125rem;
}

.register-premium-feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--grey-900);
  letter-spacing: -0.01em;
  margin-bottom: 2px;
  line-height: 1.35;
}

.register-premium-feature span {
  font-size: 0.75rem;
  color: var(--grey-400);
}

.register-premium-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.register-premium-meta-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(135deg, rgba(0, 72, 144, 0.04) 0%, rgba(0, 72, 144, 0.01) 100%);
  border: 1px solid rgba(0, 72, 144, 0.1);
  border-radius: 14px;
  transition: border-color 0.3s ease;
}

.register-premium-meta-card:hover {
  border-color: rgba(0, 72, 144, 0.2);
}

.register-premium-meta-card > i {
  font-size: 1.375rem;
  color: var(--brand);
  flex-shrink: 0;
}

.register-premium-meta-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 4px;
}

.register-premium-meta-card strong {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--grey-800);
  letter-spacing: -0.01em;
}

.register-premium-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: flex-start;
  padding: 16px 32px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(0, 51, 102, 0.28);
  transition: transform 0.3s var(--spring), box-shadow 0.3s ease;
}

.register-premium-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 51, 102, 0.35);
}

.register-premium-cta i {
  transition: transform 0.3s var(--spring);
}

.register-premium-cta:hover i {
  transform: translateX(4px);
}

.register-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.register-intro .section-title {
  margin-bottom: 16px;
}

.register-desc {
  font-size: 0.9375rem;
  color: var(--grey-500);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 420px;
}

.register-checklist {
  list-style: none;
  margin-bottom: 40px;
}

.register-checklist li,
.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--grey-700);
  padding: 10px 0;
}

.register-checklist i {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-subtle);
  color: var(--brand);
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.register-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-200);
}

.register-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.register-meta-item > i {
  font-size: 1.25rem;
  color: var(--brand);
  margin-top: 2px;
}

.register-meta-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--grey-900);
  letter-spacing: -0.01em;
}

.register-meta-item span {
  font-size: 0.8125rem;
  color: var(--grey-500);
}

.register-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.04);
  position: relative;
}

.register-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0, 72, 144, 0.15), transparent 50%, rgba(0, 72, 144, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Card header */
.reg-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--grey-100);
}

.reg-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--brand-subtle);
  border: 1px solid rgba(0, 72, 144, 0.12);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.02em;
}

.reg-card-badge i { font-size: 0.875rem; }

.reg-card-note {
  font-size: 0.75rem;
  color: var(--grey-400);
}

.reg-required-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--brand);
  border-radius: 50%;
  vertical-align: super;
  margin-left: 2px;
}

/* Step indicator: Uiverse progress track */
.reg-step-indicator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
  position: relative;
}

.reg-step-track {
  position: absolute;
  top: 18px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--grey-200);
  border-radius: 2px;
  z-index: 0;
}

.reg-step-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand-light));
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 0 12px var(--brand-glow);
}

.reg-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.45;
  transition: opacity 0.35s ease;
  position: relative;
  z-index: 1;
}

.reg-step.active { opacity: 1; }

.reg-step-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--grey-200);
  font-size: 0.875rem;
  color: var(--grey-500);
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.reg-step.active .reg-step-num {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 72, 144, 0.3);
  animation: regStepPulse 2s ease infinite;
}

@keyframes regStepPulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(0, 72, 144, 0.3); }
  50% { box-shadow: 0 4px 24px rgba(0, 72, 144, 0.45); }
}

.reg-step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--grey-600);
  letter-spacing: 0.02em;
}

.reg-step.active .reg-step-label { color: var(--brand); }

/* Panels */
.reg-panel { display: none; }

.reg-panel.active {
  display: block;
  animation: regFadeIn 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes regFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.reg-row { margin-bottom: 18px; }

.reg-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Uiverse input group: gradient beam + floating notch label */
@property --reg-beam-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.reg-field { position: relative; }

.reg-input-group {
  position: relative;
  border-radius: 12px;
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.reg-input-beam {
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  background: conic-gradient(
    from var(--reg-beam-angle),
    transparent 0deg,
    var(--brand-light) 60deg,
    var(--brand) 120deg,
    transparent 180deg
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

.reg-input-group:focus-within {
  border-color: transparent;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0, 72, 144, 0.08);
}

.reg-input-group:focus-within .reg-input-beam {
  opacity: 1;
  animation: regBeamSpin 3s linear infinite;
}

@keyframes regBeamSpin {
  to { --reg-beam-angle: 360deg; }
}

.reg-input-group::after {
  content: '';
  position: absolute;
  inset: 1.5px;
  background: var(--white);
  border-radius: 10px;
  z-index: 0;
  pointer-events: none;
  transition: background 0.3s ease;
}

.reg-input-group:not(:focus-within)::after {
  background: var(--grey-50);
}

.reg-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.0625rem;
  color: var(--grey-400);
  z-index: 2;
  transition: color 0.25s ease;
  pointer-events: none;
}

.reg-input-group:focus-within .reg-input-icon { color: var(--brand); }

.reg-input-group input,
.reg-input-group select,
.reg-input-group textarea {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 22px 14px 8px 42px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--grey-900);
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.reg-input-group-textarea textarea {
  padding-top: 28px;
  min-height: 96px;
  resize: vertical;
}

.reg-input-group-textarea .reg-input-icon {
  top: 22px;
  transform: none;
}

.reg-input-group label {
  position: absolute;
  left: 42px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9375rem;
  color: var(--grey-400);
  pointer-events: none;
  z-index: 2;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
  padding: 0 4px;
}

.reg-input-group-textarea label {
  top: 22px;
  transform: none;
}

.reg-optional {
  font-size: 0.6875rem;
  color: var(--grey-400);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* Floating notch label */
.reg-input-group:focus-within label,
.reg-input-group input:not(:placeholder-shown) + label,
.reg-input-group textarea:not(:placeholder-shown) + label,
.reg-input-group select:focus + label,
.reg-input-group select:valid + label {
  top: 8px;
  left: 38px;
  transform: none;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--white);
  border-radius: 4px;
}

.reg-input-group-textarea:focus-within label,
.reg-input-group-textarea textarea:not(:placeholder-shown) + label {
  top: 8px;
}

/* Animated bottom line: Uiverse slide */
.reg-input-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand-light));
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
  border-radius: 2px;
}

.reg-input-group:focus-within .reg-input-line {
  left: 0;
  width: 100%;
}

.reg-select-icon {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--grey-400);
  pointer-events: none;
  z-index: 2;
  transition: transform 0.3s ease, color 0.3s ease;
}

.reg-input-group-select:focus-within .reg-select-icon {
  color: var(--brand);
  transform: translateY(-50%) rotate(180deg);
}

.reg-input-group input.invalid,
.reg-input-group select.invalid,
.reg-input-group textarea.invalid {
  color: #DC2626;
}

.reg-field:has(.invalid) .reg-input-group {
  border-color: #FCA5A5;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.06);
}

.reg-field:has(.invalid) .reg-input-beam {
  background: conic-gradient(from var(--reg-beam-angle), transparent, #DC2626, transparent);
}

.reg-error {
  display: block;
  font-size: 0.75rem;
  color: #DC2626;
  margin-top: 6px;
  min-height: 18px;
  padding-left: 4px;
}

.reg-error-block { margin-top: 8px; min-height: 0; }

.reg-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

/* Skill level cards: Uiverse glow select */
.reg-level-fieldset {
  border: none;
  margin: 28px 0;
  padding: 0;
}

.reg-level-fieldset legend {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: 14px;
}

.reg-level-fieldset legend i {
  color: var(--brand);
  font-size: 1rem;
}

.reg-level-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.reg-level-option { cursor: pointer; }

.reg-level-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.reg-level-card {
  position: relative;
  display: block;
  padding: 18px 18px 18px 48px;
  border: 1.5px solid var(--grey-200);
  border-radius: 14px;
  background: var(--grey-50);
  overflow: hidden;
  transition: var(--transition);
}

.reg-level-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 50%, rgba(0, 72, 144, 0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.reg-level-check {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%) scale(0.6);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--grey-300);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  background: var(--white);
}

.reg-level-check i {
  font-size: 0.6875rem;
  color: var(--white);
  opacity: 0;
  transform: scale(0);
  transition: var(--transition);
}

.reg-level-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--grey-900);
  margin-bottom: 4px;
  position: relative;
}

.reg-level-card small {
  font-size: 0.8125rem;
  color: var(--grey-500);
  position: relative;
}

.reg-level-badge {
  display: inline-block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
  position: relative;
}

.reg-level-option input:checked + .reg-level-card {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 8px 32px rgba(0, 72, 144, 0.1);
}

.reg-level-option input:checked + .reg-level-card .reg-level-glow { opacity: 1; }

.reg-level-option input:checked + .reg-level-card .reg-level-check {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-50%) scale(1);
}

.reg-level-option input:checked + .reg-level-card .reg-level-check i {
  opacity: 1;
  transform: scale(1);
}

.reg-level-option:hover .reg-level-card {
  border-color: var(--brand-light);
  transform: translateX(4px);
}

/* Uiverse animated checkbox */
.reg-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--grey-200);
  background: var(--grey-50);
  transition: var(--transition);
}

.reg-checkbox:hover {
  border-color: var(--brand-light);
  background: var(--white);
}

.reg-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.reg-checkbox-box {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--grey-300);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  margin-top: 1px;
}

.reg-checkbox-fill {
  position: absolute;
  inset: 0;
  background: var(--brand);
  transform: scale(0);
  transition: transform 0.35s var(--spring);
  border-radius: 5px;
}

.reg-checkbox-box i {
  position: relative;
  z-index: 1;
  font-size: 0.8125rem;
  color: var(--white);
  opacity: 0;
  transform: scale(0) rotate(-45deg);
  transition: all 0.35s var(--spring);
}

.reg-checkbox input:checked + .reg-checkbox-box {
  border-color: var(--brand);
}

.reg-checkbox input:checked + .reg-checkbox-box .reg-checkbox-fill {
  transform: scale(1);
}

.reg-checkbox input:checked + .reg-checkbox-box i {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.reg-checkbox-text {
  font-size: 0.8125rem;
  color: var(--grey-600);
  line-height: 1.65;
}

/* Uiverse premium buttons */
.reg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.reg-btn-primary {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 50%, var(--brand-light) 100%);
  background-size: 200% 200%;
  color: var(--white);
  animation: regBtnGradient 4s ease infinite;
  box-shadow: 0 4px 20px rgba(0, 72, 144, 0.25);
}

@keyframes regBtnGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.reg-btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}

.reg-btn-primary:hover .reg-btn-shine { left: 150%; }

.reg-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 72, 144, 0.35);
}

.reg-btn-ghost {
  background: var(--white);
  color: var(--grey-700);
  border: 1.5px solid var(--grey-200);
}

.reg-btn-ghost:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-subtle);
}

.reg-next {
  width: 100%;
  margin-top: 12px;
}

.reg-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.reg-back { flex-shrink: 0; }

.reg-submit {
  flex: 1;
  position: relative;
}

.reg-submit.loading .reg-submit-text,
.reg-submit.loading .reg-submit-icon { opacity: 0; }

.reg-submit-loading {
  position: absolute;
  display: none;
  align-items: center;
  gap: 8px;
}

.reg-submit.loading .reg-submit-loading { display: flex; }

.reg-spinner { animation: regSpin 0.8s linear infinite; }

@keyframes regSpin { to { transform: rotate(360deg); } }

.reg-form-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
  font-size: 0.8125rem;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* Success: Uiverse pop */
.reg-success {
  text-align: center;
  padding: 56px 28px;
  animation: regFadeIn 0.5s ease;
}

.reg-success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-subtle);
  border-radius: 50%;
  position: relative;
  animation: regSuccessPop 0.6s var(--spring);
}

.reg-success-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  opacity: 0;
  animation: regSuccessRing 0.8s ease 0.3s forwards;
}

@keyframes regSuccessRing {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

.reg-success-icon i {
  font-size: 2.75rem;
  color: var(--brand);
}

@keyframes regSuccessPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

.reg-success h3 {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--grey-900);
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.reg-success p {
  font-size: 0.9375rem;
  color: var(--grey-500);
  line-height: 1.75;
  max-width: 380px;
  margin: 0 auto 32px;
}

.reg-success .reg-btn-ghost {
  margin: 0 auto;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  :root { --section-padding: 80px; }

  .level-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .sports-grid { grid-template-columns: repeat(4, 1fr); }

  .events-header {
    margin-bottom: 56px;
  }

  .events-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 560px;
    margin: 0 auto;
  }

  .event-body {
    padding: 28px 24px 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .contact-premium-side {
    padding: 32px 28px;
  }

  .contact-premium-main {
    padding: 32px 28px;
  }

  .contact-general {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 80px 0;
  }

  .contact-premium-main {
    padding: 28px 24px;
  }

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

  .contact-member-btn {
    justify-content: flex-start;
    padding: 12px 14px;
  }

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

  .gallery-item {
    min-height: 0;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
  }

  .gallery-item .gallery-media img {
    animation: none;
  }

  .gallery-frame {
    inset: 6px;
    border-radius: 8px;
  }

  .gallery-item.is-video .gallery-play-badge {
    width: 44px;
    height: 44px;
  }

  .gallery-item.is-video .gallery-play-badge i {
    font-size: 1.125rem;
  }

  .gallery-overlay {
    opacity: 1;
    padding: 10px 12px;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 36, 72, 0.82) 100%);
  }

  .gallery-overlay i {
    display: none;
  }

  .gallery-overlay span {
    font-size: 0.6875rem;
    transform: none;
    line-height: 1.3;
    text-align: center;
  }

  .gallery-item:hover .gallery-media img,
  .gallery-item:active .gallery-media img {
    transform: none;
    filter: none;
    animation-play-state: running;
  }

  .gallery-item:hover .gallery-frame,
  .gallery-item:active .gallery-frame {
    border-color: transparent;
    inset: 6px;
  }

  .gallery-item:active {
    transform: scale(0.98);
  }

  .gallery-actions {
    margin-top: 32px;
  }

  .gallery-see-more {
    min-height: 48px;
    padding: 14px 28px;
    width: 100%;
    justify-content: center;
  }

  .gallery-modal {
    padding: 0;
    align-items: stretch;
  }

  .gallery-modal-dialog {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    min-height: 100vh;
    min-height: 100dvh;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }

  .gallery-modal-close {
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    width: 44px;
    height: 44px;
    background: rgba(0, 36, 72, 0.12);
  }

  .gallery-modal-title {
    padding: max(16px, env(safe-area-inset-top)) 56px 12px 16px;
    font-size: 0.9375rem;
    flex-shrink: 0;
  }

  .gallery-modal-body {
    flex: 1;
    aspect-ratio: auto;
    min-height: 0;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .hero-video-wrap {
    display: none;
  }

  .hero-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .collage-football { grid-column: 1; grid-row: 1; }
  .collage-volleyball { grid-column: 2; grid-row: 1; }
  .collage-basketball { grid-column: 3; grid-row: 1; }
  .collage-swimming { grid-column: 1 / 3; grid-row: 2; }
  .collage-cricket { grid-column: 3; grid-row: 2; }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 0.55) 0%,
      rgba(0, 36, 72, 0.65) 40%,
      rgba(10, 10, 10, 0.82) 100%
    );
  }

  .hero-scroller-list {
    gap: 28px;
    padding: 14px 16px;
  }

  .hero-scroller-list li {
    font-size: 0.6875rem;
    gap: 8px;
  }

  .hero-scroller-list li i,
  .hero-scroller-list li .hero-sport-icon {
    font-size: 1rem;
  }

  .hero-scroller-list li .hero-sport-icon {
    width: 1rem;
    height: 1rem;
  }

  .hero-scroller-list li.hero-scroller-chip {
    padding: 6px 12px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 24px 32px;
    gap: 0;
    border-bottom: 1px solid var(--grey-200);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }

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

  .nav-links li {
    padding: 16px 0;
    border-bottom: 1px solid var(--grey-100);
  }

  .nav-links li:last-child { border-bottom: none; }

  .nav-links a {
    color: var(--grey-800) !important;
    font-size: 1rem;
  }

  .nav-register { display: none; }
  .nav-toggle { display: flex; }

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

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

  .hero-line { font-size: clamp(2.5rem, 12vw, 4rem); }

  .sports-grid { grid-template-columns: repeat(3, 1fr); }

  .register-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .register-card { padding: 28px 24px; }

  .register-premium-card {
    grid-template-columns: 1fr;
  }

  .register-premium-side {
    padding: 32px 28px;
  }

  .register-premium-brand {
    margin-bottom: 28px;
  }

  .register-premium-main {
    padding: 36px 28px;
  }

  .register-premium-features {
    grid-template-columns: 1fr;
  }

  .register-premium-meta {
    grid-template-columns: 1fr;
  }

  .register-premium-cta {
    width: 100%;
  }

  .events-header {
    margin-bottom: 48px;
  }

  .events-grid {
    gap: 28px;
  }

  .event-image {
    aspect-ratio: 16 / 11;
  }

  .event-play-btn {
    width: 64px;
    height: 64px;
  }

  .event-play-btn i {
    font-size: 1.625rem;
  }

  .event-cta {
    width: 100%;
  }

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

  .footer-main {
    flex-direction: column;
    gap: 32px;
  }

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

  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    min-height: auto;
  }

  .footer-credit {
    position: static;
    text-align: right;
  }

  .orb { opacity: 0.2; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }

  .hero-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 1fr);
  }

  .collage-football { grid-column: 1; grid-row: 1; }
  .collage-volleyball { grid-column: 2; grid-row: 1; }
  .collage-basketball { grid-column: 1; grid-row: 2; }
  .collage-swimming { grid-column: 2; grid-row: 2; }
  .collage-cricket { grid-column: 1 / 3; grid-row: 3; }

  .sports-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid {
    gap: 10px;
  }

  .gallery-item {
    border-radius: 10px;
  }

  .gallery-overlay span {
    font-size: 0.625rem;
    letter-spacing: 0.02em;
  }

  .gallery-actions {
    margin-top: 24px;
  }

  .gallery-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   COMMUNITY NOTICE
   ============================================ */

.notice-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.notice-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.notice-overlay[hidden] {
  display: none;
}

.notice-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 40, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.notice-dialog {
  position: relative;
  width: min(720px, 100%);
  animation: noticeDialogIn 0.4s var(--spring);
}

.notice-overlay:not(.is-visible) .notice-dialog {
  animation: none;
}

@keyframes noticeDialogIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.notice-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(0, 36, 72, 0.08);
  color: var(--grey-700);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.notice-close:hover {
  background: var(--brand);
  color: var(--white);
  transform: rotate(90deg);
}

.notice-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 72, 144, 0.08);
  box-shadow: 0 24px 80px rgba(0, 36, 72, 0.28);
}

.notice-side {
  position: relative;
  background: var(--black);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.notice-side-inner {
  position: relative;
  z-index: 1;
}

.notice-side-accent {
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 86, 168, 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.notice-side-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 28px;
}

.notice-side-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
}

.notice-side-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-light);
  border-radius: 2px;
  margin-bottom: 12px;
}

.notice-side-type {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 20px;
}

.notice-side-date {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
}

.notice-main {
  padding: 40px 44px 36px 36px;
  display: flex;
  flex-direction: column;
}

.notice-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.5rem);
  font-weight: 700;
  color: var(--grey-900);
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 16px;
  padding-right: 32px;
}

.notice-text {
  font-size: 0.9375rem;
  color: var(--grey-600);
  line-height: 1.75;
  margin-bottom: 20px;
}

.notice-text-muted {
  font-size: 0.875rem;
  color: var(--grey-500);
  margin-bottom: 24px;
}

.notice-callout {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
}

.notice-callout i {
  font-size: 1.25rem;
  color: var(--brand);
  flex-shrink: 0;
}

.notice-callout-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 2px;
}

.notice-callout strong {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--grey-900);
  letter-spacing: -0.01em;
}

.notice-signoff {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.notice-author {
  font-size: 0.8125rem;
  color: var(--grey-400);
  margin-bottom: 28px;
}

.notice-action {
  align-self: flex-start;
  border-radius: 10px;
}

@media (max-width: 640px) {
  .notice-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .notice-dialog {
    width: 100%;
  }

  .notice-close {
    top: max(12px, env(safe-area-inset-top));
    right: max(12px, env(safe-area-inset-right));
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
  }

  .notice-card {
    grid-template-columns: 1fr;
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    max-height: 92dvh;
    overflow-y: auto;
  }

  .notice-side {
    padding: 28px 24px 24px;
  }

  .notice-side-inner {
    display: block;
  }

  .notice-side-logo {
    width: 36px;
    height: 36px;
    margin-bottom: 20px;
  }

  .notice-side-type {
    font-size: 1.0625rem;
    margin-bottom: 12px;
  }

  .notice-main {
    padding: 24px 24px max(28px, env(safe-area-inset-bottom));
  }

  .notice-title {
    padding-right: 36px;
    margin-bottom: 12px;
  }

  .notice-action {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .notice-dialog {
    animation: none;
  }

  .reg-input-group:focus-within .reg-input-beam {
    animation: none;
    opacity: 1;
  }

  .reg-btn-primary { animation: none; }

  .reveal, .reveal-left, .reveal-scale, .reveal-blur {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .register-card { animation: none; }
  .register-premium.visible .register-premium-card { animation: none; }
  .gallery-item .gallery-media img { animation: none; }
  .hero-line, .hero-subtitle, .hero-desc, .hero-cta { animation: none; opacity: 1; transform: none; }
  .hero-scroller { animation: none; opacity: 1; }
  .hero-scroller-track { animation: none; }
  .hero-scroller-mask {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hero-scroller-mask::-webkit-scrollbar { display: none; }
}
