/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --dark: #050c2a;
  --cyan: #00fff5;
  --purple: #6f00ff;
  --magenta: #ff2ed1;
  --light: #f8faff;
  --sub: #c7d2e2;
  --muted: #7a7f8a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: var(--dark);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.hidden {
  display: none !important;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Gradient Text Utilities */
.gradient-cyan {
  background: linear-gradient(to right, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-purple-magenta {
  background: linear-gradient(to right, var(--purple), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-cyan-purple {
  background: linear-gradient(to bottom right, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-purple-magenta {
  background: linear-gradient(to bottom right, var(--purple), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-magenta-cyan {
  background: linear-gradient(to bottom right, var(--magenta), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-cyan-magenta {
  background: linear-gradient(to bottom right, var(--cyan), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================================
   Grid Background (Fixed)
   =================================== */
.grid-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 245, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 245, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
}

.grid-lines-large {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111, 0, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(111, 0, 255, 0.05) 1px, transparent 1px);
  background-size: 100px 100px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 50px 50px;
  }
}

.scan-lines-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent 50%, rgba(0, 255, 245, 0.03) 50%);
  background-size: 100% 4px;
  animation: scanBg 8s linear infinite;
}

@keyframes scanBg {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 0% 100%;
  }
}

.corner-deco {
  position: absolute;
  width: 128px;
  height: 128px;
}
.corner-tl {
  top: 0;
  left: 0;
  border-left: 1px solid rgba(0, 255, 245, 0.3);
  border-top: 1px solid rgba(0, 255, 245, 0.3);
}
.corner-tr {
  top: 0;
  right: 0;
  border-right: 1px solid rgba(111, 0, 255, 0.3);
  border-top: 1px solid rgba(111, 0, 255, 0.3);
}
.corner-bl {
  bottom: 0;
  left: 0;
  border-left: 1px solid rgba(111, 0, 255, 0.3);
  border-bottom: 1px solid rgba(111, 0, 255, 0.3);
}
.corner-br {
  bottom: 0;
  right: 0;
  border-right: 1px solid rgba(0, 255, 245, 0.3);
  border-bottom: 1px solid rgba(0, 255, 245, 0.3);
}

/* Particles */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  animation: particleFloat 4s ease-in-out infinite;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0) scale(0);
    opacity: 0;
  }
  50% {
    transform: translateY(-100px) scale(1);
    opacity: 1;
  }
}

/* ===================================
   App Layout
   =================================== */
.app {
  position: relative;
  min-height: 100vh;
  z-index: 1;
}

.main-content {
  position: relative;
  z-index: 10;
}

/* ===================================
   Header
   =================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background-color: rgba(5, 12, 42, 0.8);
  border-bottom: 1px solid rgba(0, 255, 245, 0.2);
  animation: headerSlideIn 0.6s ease-out;
}

@keyframes headerSlideIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.header-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image: linear-gradient(transparent 50%, rgba(0, 255, 245, 0.1) 50%);
  background-size: 100% 2px;
}

.nav-container {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
}

.logo-pic {
  width: 70px;
  height: 70px;
}

.logo-text {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  background: linear-gradient(to right, var(--cyan), var(--purple), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-corner-tl {
  width: 6px;
  height: 30px;
  border-left: 1px solid var(--cyan);
  border-top: 1px solid var(--cyan);
}

.logo-corner-br {
  width: 6px;
  height: 30px;
  border-right: 1px solid var(--magenta);
  border-bottom: 1px solid var(--magenta);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--sub);
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--cyan);
}

.nav-link::before,
.nav-link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width 0.3s;
}
.nav-link::before {
  left: -8px;
}
.nav-link::after {
  right: -8px;
}
.nav-link:hover::before,
.nav-link:hover::after {
  width: 4px;
}

.nav-link span::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, var(--cyan), var(--purple));
  transition: width 0.3s;
}
.nav-link:hover span::after {
  width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: block;
  background: none;
  border: 1px solid rgba(0, 255, 245, 0.3);
  color: var(--light);
  padding: 4px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Navigation */
.mobile-nav {
  padding: 1rem 0;
  overflow: hidden;
  animation: mobileNavOpen 0.3s ease-out;
}

@keyframes mobileNavOpen {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 300px;
    opacity: 1;
  }
}

.mobile-nav-link {
  display: block;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--sub);
  border-left: 2px solid transparent;
  transition: all 0.3s;
}

.mobile-nav-link:hover {
  color: var(--cyan);
  border-left-color: var(--cyan);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 12, 42, 0.85), rgba(5, 12, 42, 0.7), #050c2a);
}

/* Orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.orb {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  filter: blur(48px);
}

.orb-cyan {
  top: 25%;
  left: 25%;
  background-color: rgba(0, 255, 245, 0.2);
  animation: orbPulse1 4s ease-in-out infinite;
}

.orb-purple {
  bottom: 25%;
  right: 25%;
  background-color: rgba(111, 0, 255, 0.2);
  animation: orbPulse2 5s ease-in-out infinite;
}

.orb-magenta {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 31rem;
  height: 31rem;
  background-color: rgba(255, 46, 209, 0.15);
  animation: orbPulse3 6s ease-in-out infinite;
}

@keyframes orbPulse1 {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}

@keyframes orbPulse2 {
  0%,
  100% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  50% {
    transform: scale(1);
    opacity: 0.6;
  }
}

@keyframes orbPulse3 {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.4;
  }
}

/* Holographic Lines */
.hero-holo-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.holo-line {
  position: absolute;
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, rgba(0, 255, 245, 0.5), transparent);
  animation: holoLine 3s ease-in-out infinite;
}

@keyframes holoLine {
  0%,
  100% {
    opacity: 0;
    transform: scaleX(0);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-badge span {
  color: var(--cyan);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.hero-title {
  position: relative;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero-title-main {
  display: inline-block;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1.1;
  background: linear-gradient(to right, var(--cyan), var(--purple), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title-glitch {
  position: absolute;
  inset: 0;
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cyan);
  opacity: 0;
  mix-blend-mode: screen;
  animation: glitch 3.3s ease-in-out infinite;
}

@keyframes glitch {
  0%,
  90%,
  100% {
    opacity: 0;
    transform: translateX(0);
  }
  93% {
    opacity: 0.5;
    transform: translateX(-2px);
  }
  96% {
    opacity: 0.5;
    transform: translateX(2px);
  }
}

.hero-description {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--sub);
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.05em;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.btn-primary {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(to right, var(--cyan), var(--purple));
  border: 1px solid rgba(0, 255, 245, 0.5);
  overflow: hidden;
  transition: transform 0.3s;
  cursor: pointer;
}

.btn-primary:hover {
  transform: scale(1.05);
}

.btn-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  color: var(--dark);
  font-weight: 600;
}

.btn-inner svg {
  transition: transform 0.3s;
}

.btn-primary:hover .btn-inner svg {
  transform: translateX(4px);
}

.btn-primary-hover-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--purple), var(--magenta));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover .btn-primary-hover-bg {
  opacity: 1;
}

.btn-corner-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  border-left: 1px solid var(--dark);
  border-top: 1px solid var(--dark);
}

.btn-corner-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--dark);
  border-bottom: 1px solid var(--dark);
}

.btn-corner-tl.small {
  width: 6px;
  height: 6px;
}
.btn-corner-br.small {
  width: 6px;
  height: 6px;
}

.btn-outline {
  position: relative;
  display: inline-block;
  padding: 1rem 2rem;
  border: 2px solid var(--cyan);
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.3s;
  cursor: pointer;
  overflow: hidden;
}

.btn-outline:hover {
  transform: scale(1.05);
}

.btn-outline .btn-corner-tl {
  border-color: var(--cyan);
}
.btn-outline .btn-corner-br {
  border-color: var(--cyan);
}

.btn-outline-hover-bg {
  position: absolute;
  inset: 0;
  background-color: var(--cyan);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-outline:hover .btn-outline-hover-bg {
  opacity: 0.1;
}

/* Hero Status */
.hero-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
  animation: fadeIn 1s ease-out 1s both;
}

.status-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--cyan);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.status-item span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation:
    fadeIn 1s ease-out 1s both,
    bounceScroll 2s ease-in-out infinite;
}

@keyframes bounceScroll {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid rgba(0, 255, 245, 0.5);
  border-radius: 9999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--cyan);
  animation: scrollDot 1.5s ease-in-out infinite;
}

@keyframes scrollDot {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

/* ===================================
   Section Common Styles
   =================================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title-wrapper {
  display: inline-block;
  position: relative;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 700;
}

.title-corner-tl {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 16px;
  height: 16px;
  border-left: 2px solid var(--cyan);
  border-top: 2px solid var(--cyan);
}

.title-corner-br {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 16px;
  height: 16px;
  border-right: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
}

.section-desc {
  font-size: 1.25rem;
  color: var(--sub);
  margin-top: 1.5rem;
}

.glitch-text {
  position: absolute;
  inset: 0;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--magenta);
  opacity: 0;
  mix-blend-mode: screen;
  animation: glitchTitle 4.2s ease-in-out infinite;
}

@keyframes glitchTitle {
  0%,
  95%,
  100% {
    opacity: 0;
    transform: translateX(0);
  }
  96% {
    opacity: 0.3;
    transform: translateX(3px);
  }
  98% {
    opacity: 0.3;
    transform: translateX(-3px);
  }
}

/* Cyber Grid Overlays */
.cyber-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: linear-gradient(rgba(0, 255, 245, 0.4) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 255, 245, 0.4) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cyber-grid-overlay.purple {
  opacity: 0.05;
  background-image: linear-gradient(rgba(111, 0, 255, 0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(111, 0, 255, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}

.digital-pattern-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image:
    repeating-linear-gradient(0deg, rgba(0, 255, 245, 0.5) 0px, rgba(0, 255, 245, 0.5) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(90deg, rgba(111, 0, 255, 0.5) 0px, rgba(111, 0, 255, 0.5) 1px, transparent 1px, transparent 10px);
  pointer-events: none;
}

/* Tech Corners */
.tech-corner-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-left: 2px solid var(--cyan);
  border-top: 2px solid var(--cyan);
}

.tech-corner-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--purple);
  border-bottom: 2px solid var(--purple);
}


/* ===================================
   About Section
   =================================== */
.about {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--dark), rgba(5, 12, 42, 0.95));
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  position: relative;
}

.stat-glow {
  position: absolute;
  inset: 0;
  filter: blur(24px);
  background: linear-gradient(to right, rgba(0, 255, 245, 0.15), rgba(111, 0, 255, 0.15));
  transition: filter 0.3s;
}

.stat-card:hover .stat-glow {
  filter: blur(36px);
}

.stat-card-inner {
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 255, 245, 0.3);
  padding: 2rem;
  text-align: center;
  background: linear-gradient(to bottom right, rgba(5, 12, 42, 0.8), rgba(5, 12, 42, 0.6));
  transition: border-color 0.3s;
}

.stat-card:hover .stat-card-inner {
  border-color: var(--cyan);
}

.stat-icon {
  display: block;
  margin: 0 auto 1rem;
}

.stat-value {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  background: linear-gradient(to right, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.stat-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--muted);
}

.stat-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(to right, var(--cyan), var(--purple));
}

.stat-card-inner .stat-bar {
  animation: statBarGrow 1s ease-out forwards;
}

@keyframes statBarGrow {
  to {
    width: 100%;
  }
}

/* Members */
.members-header {
  text-align: center;
  margin-bottom: 3rem;
}

.members-title-wrapper {
  display: inline-block;
  position: relative;
}

.members-title {
  font-size: clamp(1.5rem, 4vw, 3rem);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--light);
}

.members-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .members-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .members-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.member-card {
  position: relative;
}

.member-glow {
  position: absolute;
  inset: 0;
  filter: blur(24px);
  background: linear-gradient(to bottom right, rgba(0, 255, 245, 0.1), rgba(111, 0, 255, 0.1));
  transition: filter 0.3s;
}

.member-card:hover .member-glow {
  filter: blur(36px);
}

.member-card-inner {
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 255, 245, 0.2);
  padding: 1.5rem;
  background: linear-gradient(to bottom right, rgba(5, 12, 42, 0.5), rgba(5, 12, 42, 0.3));
}

.member-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mc {
  position: absolute;
  width: 8px;
  height: 8px;
  transition: border-color 0.3s;
}

.mc-tl {
  top: 0;
  left: 0;
  border-left: 1px solid rgba(0, 255, 245, 0.5);
  border-top: 1px solid rgba(0, 255, 245, 0.5);
}
.mc-tr {
  top: 0;
  right: 0;
  border-right: 1px solid rgba(111, 0, 255, 0.5);
  border-top: 1px solid rgba(111, 0, 255, 0.5);
}
.mc-bl {
  bottom: 0;
  left: 0;
  border-left: 1px solid rgba(111, 0, 255, 0.5);
  border-bottom: 1px solid rgba(111, 0, 255, 0.5);
}
.mc-br {
  bottom: 0;
  right: 0;
  border-right: 1px solid rgba(0, 255, 245, 0.5);
  border-bottom: 1px solid rgba(0, 255, 245, 0.5);
}

.member-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  position: relative;
  overflow: hidden;
}

.member-avatar-inner {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(0, 255, 245, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, rgba(5, 12, 42, 0.8), rgba(5, 12, 42, 0.6));
}

.member-initial {
  font-size: 1.875rem;
  font-weight: 700;
}

.member-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 255, 245, 0.3), transparent);
  animation: memberScan 2s ease-in-out infinite 3s;
}

@keyframes memberScan {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(200%);
  }
}

.member-name {
  font-size: 1.5rem;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.member-role {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sub);
  margin-bottom: 0.5rem;
}

.member-specialty {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
}

/* ===================================
   Gallery Section
   =================================== */
.gallery {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(5, 12, 42, 0.95), var(--dark));
}

/* ===================================
   Schedule Section
   =================================== */
.schedule {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--dark), rgba(5, 12, 42, 0.95));
}

.events-list {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-card {
  position: relative;
}

.event-glow {
  position: absolute;
  inset: 0;
  filter: blur(24px);
  background: linear-gradient(to right, rgba(0, 255, 245, 0.1), rgba(111, 0, 255, 0.1));
  transition: filter 0.3s;
}

.event-card:hover .event-glow {
  filter: blur(36px);
}

.event-card-inner {
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 255, 245, 0.2);
  padding: 1.5rem;
  background: linear-gradient(to bottom right, rgba(5, 12, 42, 0.8), rgba(5, 12, 42, 0.6));
  transition: border-color 0.3s;
}

.event-card:hover .event-card-inner {
  border-color: rgba(0, 255, 245, 0.4);
}

.event-status {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.event-status span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cyan);
}

.event-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .event-content {
    flex-direction: row;
    align-items: center;
  }
}

.event-date-box {
  flex-shrink: 0;
  width: 112px;
  height: 112px;
  border: 2px solid rgba(0, 255, 245, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(to bottom right, rgba(5, 12, 42, 0.8), rgba(5, 12, 42, 0.5));
}

.date-dot-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--cyan);
}

.date-dot-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8px;
  height: 8px;
  background-color: var(--purple);
}

.date-text {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  color: var(--light);
  margin-top: 0.5rem;
}

.event-info {
  flex-grow: 1;
}

.event-title-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .event-title-row {
    flex-direction: row;
    align-items: center;
  }
}

.event-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light);
}

.event-type {
  display: inline-block;
  padding: 0.25rem 1rem;
  border: 1px solid rgba(0, 255, 245, 0.3);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.event-venue {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sub);
  letter-spacing: 0.05em;
}

.event-progress-bar {
  margin-top: 1rem;
  height: 1px;
  width: 0;
  background: linear-gradient(to right, var(--cyan), var(--purple), var(--magenta));
}

.event-action {
  flex-shrink: 0;
}

.btn-view-details {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(0, 255, 245, 0.5);
  background: linear-gradient(to right, var(--cyan), var(--purple));
  color: var(--dark);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s;
}

.btn-view-details:hover {
  transform: scale(1.05);
}

.btn-view-details span,
.btn-view-details svg {
  position: relative;
  z-index: 2;
}

.btn-details-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--purple), var(--magenta));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-view-details:hover .btn-details-hover {
  opacity: 1;
}

/* Schedule CTA */
.schedule-cta {
  text-align: center;
  margin-top: 4rem;
}

.schedule-cta p {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  color: var(--sub);
  margin-bottom: 1.5rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: linear-gradient(to bottom, rgba(5, 12, 42, 0.95), var(--dark));
}

.contact-grid {
  max-width: 56rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact Form */
.contact-form-wrapper {
  position: relative;
}

.contact-glow {
  position: absolute;
  inset: 0;
  filter: blur(24px);
  background: linear-gradient(to right, rgba(0, 255, 245, 0.1), rgba(111, 0, 255, 0.1));
  transition: filter 0.3s;
}

.contact-form-wrapper:hover .contact-glow {
  filter: blur(36px);
}

.contact-form-inner {
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 255, 245, 0.2);
  padding: 2rem;
  background: linear-gradient(to bottom right, rgba(5, 12, 42, 0.8), rgba(5, 12, 42, 0.6));
}

.contact-form-title {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sub);
}

.input-wrapper {
  position: relative;
}

.input-wrapper .input-dot {
  position: absolute;
  top: 12px;
  left: 0;
  width: 4px;
  height: 4px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background-color: rgba(5, 12, 42, 0.5);
  border: 1px solid rgba(0, 255, 245, 0.2);
  color: var(--light);
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
}

.contact-form textarea {
  resize: none;
}

.btn-submit {
  position: relative;
  width: 100%;
  padding: 0.75rem;
  background: linear-gradient(to right, var(--cyan), var(--purple));
  border: 1px solid rgba(0, 255, 245, 0.5);
  color: var(--dark);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s;
}

.btn-submit:hover {
  transform: scale(1.05);
}

.btn-submit-text {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.875rem;
  font-weight: 600;
}

.btn-submit-text svg {
  transition: transform 0.3s;
}
.btn-submit:hover .btn-submit-text svg {
  transform: translateX(4px);
}

.btn-submit-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--purple), var(--magenta));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-submit:hover .btn-submit-hover {
  opacity: 1;
}

/* Contact Info */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  position: relative;
}

.contact-info-glow {
  position: absolute;
  inset: 0;
  filter: blur(24px);
  background: linear-gradient(to right, rgba(0, 255, 245, 0.1), rgba(111, 0, 255, 0.1));
  transition: filter 0.3s;
}

.contact-info-card:hover .contact-info-glow {
  filter: blur(36px);
}

.contact-info-inner {
  position: relative;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 255, 245, 0.2);
  padding: 1.5rem;
  background: linear-gradient(to bottom right, rgba(5, 12, 42, 0.8), rgba(5, 12, 42, 0.6));
}

.contact-info-inner h4 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  color: var(--light);
  margin-bottom: 0.25rem;
}

.contact-info-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon-box {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border: 2px solid rgba(0, 255, 245, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(to bottom right, rgba(0, 255, 245, 0.2), rgba(111, 0, 255, 0.2));
}

.icon-dot-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: var(--cyan);
}

.icon-dot-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 6px;
  height: 6px;
  background-color: var(--purple);
}

.contact-email {
  font-size: 0.875rem;
  color: var(--cyan) !important;
}

.social-title {
  margin-bottom: 1rem !important;
}

.social-link-icons {
  display: flex;
  gap: 1rem;
}

.social-link-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0, 255, 245, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sub);
  transition: all 0.3s;
}

.social-link-icon:hover {
  transform: scale(1.1);
}

.social-link-icon svg {
  width: 20px;
  height: 20px;
  fill:none;
  stroke:currentColor; 
  stroke-width:2;
}

.booking-desc {
  font-size: 0.875rem;
  color: var(--sub);
  line-height: 1.8;
  margin: 0.5rem 0 1rem;
}

.booking-email {
  font-size: 0.875rem;
  color: var(--purple);
  transition: color 0.3s;
}

.booking-email:hover {
  color: var(--magenta);
}

.booking-line {
  margin-top: 1rem;
  height: 1px;
  width: 0;
  background: linear-gradient(to right, var(--purple), var(--magenta), transparent);
}

/* ===================================
   Footer
   =================================== */
footer {
  position: relative;
  padding: 0.5rem 0;
  background-color: var(--dark);
  border-top: 1px solid rgba(0, 255, 245, 0.3);
}

.footer-scanline {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image: linear-gradient(transparent 50%, rgba(0, 255, 245, 0.2) 50%);
  background-size: 100% 2px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  position: relative;
  display: flex;
  align-items: center;
}

.footer-copyright {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.footer-line {
  margin-top: 0.5rem;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0, 255, 245, 0.5), transparent);
}

/* ===================================
   Animations - Scroll-triggered
   =================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
}

.animate-on-scroll[data-animation="slide-left"] {
  transform: translateX(-30px);
}

.animate-on-scroll[data-animation="slide-right"] {
  transform: translateX(30px);
}

.animate-on-scroll[data-animation="scale-in"] {
  transform: scale(0.9);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Progress bars animated on scroll */
.visible .event-progress-bar {
  animation: statBarGrow 1s ease-out forwards;
}

.visible .booking-line {
  animation: statBarGrow 1s ease-out 0.5s forwards;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 767px) {
  .hero-title-main {
    font-size: 3rem;
  }
  .hero-title-glitch {
    font-size: 3rem;
  }
  .event-date-box {
    width: 80px;
    height: 80px;
  }
  .event-title {
    font-size: 1.125rem;
  }
}

/* ===================================
   Contact Form 7
   =================================== */
.wpcf7-not-valid-tip {
  font-size: 0.7em !important;
}

.wpcf7-response-output {
  font-size: 0.7em !important;
  border-color: red !important;
  margin: 0 !important;
}

/* ===================================
   Loading
   =================================== */
#loadAnimation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
}

#loadAnimation .loading-content {
  position: relative;
  display: inline-block;
}

.loaded #loadAnimation {
  animation: loadingEnd 0.5s ease-in-out forwards;
}

.loading #loadAnimation {
  animation: loadingStart 0.5s ease-in-out forwards;
}

@keyframes loadingEnd {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes loadingStart {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

.box {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0a0e27;
}

.neon-ring {
  width: 100px;
  height: 100px;
  border: 4px solid transparent;
  border-radius: 50%;
  border-top-color: #0ff;
  border-right-color: #0ff;
  position: relative;
  animation: spin 1.5s linear infinite;
  filter: drop-shadow(0 0 10px #0ff) drop-shadow(0 0 20px #0ff);
}

.neon-ring::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-bottom-color: #f0f;
  border-left-color: #f0f;
  animation: spin 1s linear infinite reverse;
  filter: drop-shadow(0 0 10px #f0f) drop-shadow(0 0 20px #f0f);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
