/* ATX ROX (Austin Rocks) - Official Brand System & Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;600;700;800;900&display=swap');

:root {
  /* Official Brand Kit Colors */
  --meechy-purp: #9966ff;
  --kristen-blue: #00bff0;
  --taletha-pink: #ff69b4;
  --lavender: #dfbcff;

  /* Primary Theme Tokens (Meechy Purp) */
  --primary: var(--meechy-purp);
  --primary-glow: rgba(153, 102, 255, 0.5);
  --accent-teal: var(--kristen-blue);
  --accent-pink: var(--taletha-pink);
  --accent-lavender: var(--lavender);
  --accent-gold: #ffb703;

  /* Dark Mode Palette */
  --bg-dark: #090a12;
  --bg-card: rgba(20, 18, 38, 0.75);
  --bg-card-hover: rgba(30, 27, 56, 0.9);
  --bg-glass: rgba(255, 255, 255, 0.04);
  --border-glass: rgba(223, 188, 255, 0.15);
  --border-glow: rgba(153, 102, 255, 0.45);

  /* Typography */
  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing & Radius */
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);

  --max-width: 1240px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  color-scheme: dark;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(153, 102, 255, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 60%, rgba(0, 191, 240, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(223, 188, 255, 0.1) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Typography & Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--kristen-blue) 40%, var(--meechy-purp) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-pink-purple {
  background: linear-gradient(135deg, var(--taletha-pink) 0%, var(--lavender) 50%, var(--meechy-purp) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation Bar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.5rem 0;
  background: rgba(9, 10, 18, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-fast);
}

.navbar.scrolled {
  padding: 0.4rem 0;
  background: rgba(9, 10, 18, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-right: 0.25rem;
  padding-right: 5px;
}

.brand-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--primary-glow));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--meechy-purp);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--meechy-purp);
}

/* Dropdown Navigation Menu */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(14, 12, 27, 0.95);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.6rem 0;
  min-width: 210px;
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 1100;
  list-style: none;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 1.25rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.dropdown-item:hover {
  background: rgba(153, 102, 255, 0.18);
  color: #ffffff;
}

.dropdown-item i {
  color: var(--taletha-pink);
  font-size: 0.85rem;
  width: 16px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  padding-left: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, var(--meechy-purp) 0%, #7c3aed 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(153, 102, 255, 0.45);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(153, 102, 255, 0.75);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(223, 188, 255, 0.35);
  transform: translateY(-2px);
}

.btn-pink {
  background: linear-gradient(135deg, var(--taletha-pink) 0%, var(--meechy-purp) 100%);
  color: #120924;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(255, 105, 180, 0.4);
}

.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 105, 180, 0.6);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 1.5rem;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover;
  opacity: 1;
  filter: contrast(1.05) brightness(0.95);
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(9, 10, 18, 0.72) 0%, rgba(9, 10, 18, 0.85) 75%, var(--bg-dark) 100%),
              radial-gradient(circle at 20% 30%, rgba(153, 102, 255, 0.15) 0%, transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(0, 191, 240, 0.15) 0%, transparent 60%);
  animation: heroGlowPulse 12s ease-in-out infinite alternate;
}

@keyframes heroGlowPulse {
  0% {
    background-position: 0% 0%;
    filter: hue-rotate(0deg);
  }
  100% {
    background-position: 100% 100%;
    filter: hue-rotate(25deg);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 880px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  background: rgba(153, 102, 255, 0.22);
  border: 1px solid rgba(153, 102, 255, 0.5);
  color: var(--meechy-purp);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 1.25rem;
  line-height: 1.05;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 400;
  max-width: 700px;
}

.hero-meta-bar {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
  width: fit-content;
  max-width: 100%;
}

.meta-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  font-size: 0.95rem;
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}

.meta-chip i {
  color: var(--meechy-purp);
  font-size: 1.1rem;
}

/* Countdown Box */
.countdown-box {
  background: rgba(20, 18, 38, 0.88);
  border: 1px solid var(--border-glow);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
  margin-bottom: 2.5rem;
  display: inline-block;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hero-btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  width: 100%;
}

.hero-btn-group .btn {
  flex: 1 1 180px;
  justify-content: center;
  text-align: center;
}

.countdown-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--meechy-purp);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.timer-grid {
  display: flex;
  gap: 1.25rem;
}

.timer-unit {
  text-align: center;
  min-width: 60px;
}

.timer-value {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.timer-label {
  font-size: 0.75rem;
  color: var(--lavender);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* Section Styling */
.section {
  padding: 3.5rem 0;
  position: relative;
}

.page-header + .section,
.page-header + div + .section {
  padding-top: 2rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.section-subtitle {
  color: var(--meechy-purp);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Feature Cards Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2.5rem;
}

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(14px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(153, 102, 255, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(153, 102, 255, 0.25);
}

.card-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(153, 102, 255, 0.16);
  color: var(--taletha-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(153, 102, 255, 0.35);
}

/* Tickets Section */
.ticket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ticket-card.featured {
  border-color: var(--meechy-purp);
  box-shadow: 0 0 35px rgba(153, 102, 255, 0.35);
}

.ticket-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--meechy-purp);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
}

/* Prevent badge from overlapping titles inside cards & modals */
.glass-card .ticket-badge,
.modal-box .ticket-badge {
  position: static;
  display: inline-block;
  margin-bottom: 0.65rem;
  width: fit-content;
}

@media (max-width: 768px) {
  .ticket-badge {
    position: static !important;
    display: inline-block !important;
    margin-bottom: 0.65rem !important;
    top: auto !important;
    right: auto !important;
  }
  .modal-box {
    padding: 1.5rem 1.25rem !important;
  }
}

.ticket-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  margin: 1rem 0;
}

.ticket-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.ticket-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  flex-grow: 1;
}

.ticket-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.ticket-features li i {
  color: var(--meechy-purp);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Award Form Grid Layout */
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  align-items: end;
}

@media (max-width: 768px) {
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: stretch;
  }
}

/* Hotel Notes Responsive Cards */
.hotel-notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.hotel-note-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  transition: border-color 0.3s ease, transform 0.2s ease;
}

.hotel-note-item:hover {
  border-color: rgba(255, 105, 180, 0.4);
  transform: translateY(-2px);
}

.hotel-note-item .note-icon {
  color: var(--taletha-pink);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.hotel-note-item .note-text {
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .hotel-notes-card {
    padding: 1.25rem 1rem !important;
  }
  .hotel-notes-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .hotel-note-item {
    padding: 0.85rem 1rem;
  }
}

/* Venue Alert Box */
.alert-box {
  background: rgba(153, 102, 255, 0.12);
  border: 1px solid rgba(153, 102, 255, 0.4);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.alert-box i {
  color: var(--taletha-pink);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.alert-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.alert-text {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.venue-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

/* Interactive Schedule */
.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--meechy-purp) 0%, #7c3aed 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.schedule-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-card {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 1.25rem 1.75rem;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.timeline-card:hover {
  border-color: var(--meechy-purp);
  background: var(--bg-card-hover);
}

.timeline-time {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--meechy-purp);
  font-size: 1.05rem;
}

.timeline-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.event-tag {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
}

.tag-workshop { background: rgba(153, 102, 255, 0.18); color: var(--lavender); border: 1px solid rgba(153, 102, 255, 0.35); }
.tag-comp { background: rgba(0, 191, 240, 0.18); color: var(--kristen-blue); border: 1px solid rgba(0, 191, 240, 0.35); }
.tag-social { background: rgba(255, 105, 180, 0.18); color: var(--taletha-pink); border: 1px solid rgba(255, 105, 180, 0.35); }

/* Competition Accordions */
.accordion-wrapper {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.accordion-header {
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  user-select: none;
}

.accordion-header i {
  color: var(--meechy-purp);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 1.75rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 0.5rem;
  padding-top: 1.25rem;
}

.accordion-item.active .accordion-body {
  display: block;
}

/* Staff Grid */
.staff-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.staff-avatar-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--meechy-purp) 0%, #7c3aed 100%);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 8px 25px var(--primary-glow);
}

.staff-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.staff-role {
  color: var(--meechy-purp);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* Modal Styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 7, 14, 0.88);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: #141226;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-lg);
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-close:hover {
  color: #fff;
}

/* Staff Filter Tabs & Cards */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 0.65rem 1.35rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--taletha-pink) 0%, var(--meechy-purp) 100%);
  color: #120924;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.35);
}

.staff-card {
  text-align: center;
  padding: 1.25rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.staff-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(153, 102, 255, 0.3);
  border-color: rgba(255, 105, 180, 0.5);
}

.staff-img-wrapper {
  width: 100%;
  padding-bottom: 100%; /* 1:1 Aspect Ratio Square */
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(12, 10, 22, 0.8);
  border: 1px solid var(--border-glass);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.staff-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}

.staff-card:hover .staff-img {
  transform: scale(1.06);
}

.staff-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  margin-top: 1.1rem;
  margin-bottom: 0.4rem;
}

.staff-role-badge {
  background: rgba(153, 102, 255, 0.16);
  color: var(--lavender);
  border: 1px solid rgba(153, 102, 255, 0.35);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  display: inline-block;
}

.staff-category-block .section-header {
  text-align: left;
  max-width: 100%;
  margin: 0 0 1.75rem 0;
}

/* Footer */
.footer {
  background: #05060c;
  border-top: 1px solid var(--border-glass);
  padding: 4rem 0 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 320px;
}

.footer-title {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--meechy-purp);
}

.footer-bottom {
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Subpage Banner Header */
.page-header {
  position: relative;
  padding: 7.5rem 0 3rem;
  background: linear-gradient(180deg, rgba(24, 20, 48, 0.95) 0%, rgba(9, 10, 18, 0.98) 100%);
  border-bottom: 1px solid var(--border-glass);
  text-align: center;
}

.page-header-content {
  max-width: 750px;
  margin: 0 auto;
}

.page-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.header-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}

.header-unicorn-img {
  height: clamp(40px, 6vw, 65px);
  width: auto;
  opacity: 0.92;
  filter: drop-shadow(0 4px 15px rgba(255, 105, 180, 0.35));
  transition: transform 0.3s ease;
}

.header-unicorn-img.right-unicorn {
  transform: scaleX(-1);
}

.header-unicorn-img:hover {
  transform: scale(1.1);
}

.header-unicorn-img.right-unicorn:hover {
  transform: scaleX(-1) scale(1.1);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.page-breadcrumb a {
  color: var(--meechy-purp);
  text-decoration: none;
  font-weight: 500;
}

.page-breadcrumb a:hover {
  text-decoration: underline;
}

/* Video Modal styling */
.video-modal-box {
  max-width: 900px;
  padding: 1rem;
}

/* Responsive Media Queries */
@media (min-width: 1251px) {
  .dropdown-item-mobile-only {
    display: none !important;
  }
}

@media (max-width: 1250px) {
  .nav-item-secondary-top {
    display: none !important;
  }
}

@media (max-width: 992px) {
  .nav-actions .btn {
    display: none !important;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: #0e0c1b;
    border-bottom: 1px solid var(--border-glass);
    padding: 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .timeline-card {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .timer-grid {
    gap: 0.75rem;
  }
  
  .timer-unit {
    min-width: 45px;
  }
  
  .timer-value {
    font-size: 1.6rem;
  }
}

/* Photo Gallery & Lightbox Styles */
.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.gallery-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--kristen-blue);
  box-shadow: 0 12px 30px rgba(0, 191, 240, 0.3);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(9, 10, 18, 0.85) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay-badge {
  opacity: 1;
}

.gallery-overlay-icon {
  background: rgba(153, 102, 255, 0.8);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Lightbox Modal */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: rgba(5, 6, 12, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img-wrapper {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border-glass);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(20, 18, 38, 0.75);
  border: 1px solid var(--border-glass);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 3010;
}

.lightbox-nav-btn:hover {
  background: var(--meechy-purp);
  border-color: var(--kristen-blue);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

.lightbox-counter {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

