/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-layer: #030303;
  --neon: #33ff33;
  --neon-muted: #aaffaa;
  --neon-accent: #33ffff;
  --panel: rgba(8, 8, 8, 0.9);
  --panel-border: rgba(51, 255, 51, 0.25);
  --panel-glow: rgba(51, 255, 51, 0.15);
  --text-muted: #888;
}

/* Matrix Opening Animation */
#matrixCanvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
}

body.loading {
  overflow: hidden;
}

@font-face {
  font-family: "TUI";
  src: local("Consolas"), local("Monaco"), local("Courier New");
}

body {
  font-family: "Consolas", "Monaco", "Courier New", monospace;
  line-height: 1.4;
  color: var(--neon);
  overflow-x: hidden;
  background-color: var(--bg-layer);
  background-image:
    radial-gradient(circle at 20% -20%, rgba(51, 255, 51, 0.12), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(51, 255, 255, 0.1), transparent 50%);
  font-size: 14px;
  position: relative;
}

section:not(.hero) {
  margin: 36px auto 0;
  border-radius: 24px;
  border: 1px solid var(--panel-border);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.65),
    inset 0 0 35px var(--panel-glow);
  background: transparent;
  position: relative;
  overflow: hidden;
  padding: 0;
  width: min(1100px, calc(100% - 32px));
}

.section-panel {
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(8, 8, 8, 0.95), rgba(12, 12, 12, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 32px 26px;
  box-shadow: inset 0 0 35px var(--panel-glow);
  backdrop-filter: blur(12px);
}

/* CRT Scanline effect */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.15) 1px,
    transparent 1px,
    transparent 2px
  );
  z-index: 9999;
}

/* CRT flicker effect */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: rgba(10, 10, 10, 0.03);
  animation: flicker 0.15s infinite;
  z-index: 9998;
}

@keyframes flicker {
  0% {
    opacity: 0.27861;
  }
  5% {
    opacity: 0.34769;
  }
  10% {
    opacity: 0.23604;
  }
  15% {
    opacity: 0.90626;
  }
  20% {
    opacity: 0.18128;
  }
  25% {
    opacity: 0.83891;
  }
  30% {
    opacity: 0.65583;
  }
  35% {
    opacity: 0.67807;
  }
  40% {
    opacity: 0.26559;
  }
  45% {
    opacity: 0.84693;
  }
  50% {
    opacity: 0.96019;
  }
  55% {
    opacity: 0.08594;
  }
  60% {
    opacity: 0.20313;
  }
  65% {
    opacity: 0.71988;
  }
  70% {
    opacity: 0.53455;
  }
  75% {
    opacity: 0.37288;
  }
  80% {
    opacity: 0.71428;
  }
  85% {
    opacity: 0.70419;
  }
  90% {
    opacity: 0.7003;
  }
  95% {
    opacity: 0.36108;
  }
  100% {
    opacity: 0.24387;
  }
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Navigation */
.navbar {
  background: rgba(4, 4, 4, 0.92);
  color: var(--neon);
  padding: 10px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(51, 255, 51, 0.2);
  backdrop-filter: blur(10px);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .container::before {
  content: "┌─";
  color: #33ff33;
}

.navbar .container::after {
  content: "─┐";
  color: #33ff33;
}

.nav-brand {
  font-size: 1rem;
  font-weight: normal;
  letter-spacing: 1px;
  color: #33ff33;
}

.nav-brand::before {
  content: "[ ";
  color: #888;
}

.nav-brand::after {
  content: " ]";
  color: #888;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-menu li::before {
  content: "│";
  color: #555;
  padding: 0 8px;
}

.nav-menu a {
  color: #33ff33;
  text-decoration: none;
  font-weight: normal;
  transition:
    color 0.1s,
    background 0.1s;
  padding: 2px 4px;
}

.nav-menu a:hover {
  background: #33ff33;
  color: #0a0a0a;
}

/* Hero Section */
.hero {
  background: rgba(2, 2, 2, 0.95);
  color: var(--neon);
  padding: 100px 16px 48px;
  text-align: left;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-bottom: 1px solid rgba(51, 255, 51, 0.35);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -10% -15%;
  background:
    linear-gradient(135deg, rgba(51, 255, 51, 0.12), rgba(51, 255, 255, 0.08) 48%, transparent 75%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 12px);
  filter: blur(22px);
  opacity: 0.8;
  pointer-events: none;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(51, 255, 51, 0.5);
  padding: 32px 36px;
  position: relative;
  background: rgba(3, 3, 3, 0.95);
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.hero-content::before {
  display: none;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: normal;
  letter-spacing: 2px;
  animation: fadeInDown 0.5s ease-out;
}

.hero-title::before {
  content: "> ";
  color: #888;
}

.hero-code {
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  background: transparent;
  padding: 8px;
  border: 1px dashed rgba(51, 255, 51, 0.5);
  animation: fadeInUp 0.5s ease-out 0.2s both;
  display: inline-block;
}

.hero-code::before {
  content: "$ ";
  color: #888;
}

.hero-subtitle::before {
  content: "# ";
}

.hero-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--neon-muted);
  animation: fadeInUp 0.5s ease-out 0.4s both;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(51, 255, 51, 0.15), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(51, 255, 255, 0.1), transparent 50%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.accomplishment-card,
.activity-card,
.event-card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 14px;
  background: rgba(8, 8, 8, 0.55);
  backdrop-filter: blur(2px);
}

.hero-description::before {
  content: attr(data-comment-start);
  color: #888;
}

.hero-description::after {
  content: attr(data-comment-end);
  color: #888;
}

/* About Section */
.about-section h2 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #33ff33;
  text-align: left;
  font-weight: normal;
}

.about-section h2::before {
  content: "═══ ";
  color: #555;
}

.about-section h2::after {
  content: " ═══════════════════════════════════════";
  color: #555;
}

.about-section p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  text-align: left;
  color: #aaffaa;
  padding-left: 20px;
  border-left: 1px solid #333;
}

/* Accomplishments Section */
.accomplishments-section h2 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #33ff33;
  text-align: left;
  font-weight: normal;
}

.accomplishments-section h2::before {
  content: "═══ ";
  color: #555;
}

.accomplishments-section h2::after {
  content: " ═══════════════════════════";
  color: #555;
}

.accomplishments-lead {
  color: var(--text-muted);
  font-size: 0.86rem;
  margin: 0 0 1.1rem;
  padding-left: 14px;
  border-left: 1px solid rgba(51, 255, 51, 0.25);
}

.accomplishments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.accomplishment-card {
  background: linear-gradient(160deg, rgba(12, 12, 12, 0.92), rgba(5, 5, 5, 0.88));
  padding: 14px;
  border: 1px solid rgba(51, 255, 51, 0.2);
  border-radius: 12px;
  box-shadow:
    inset 0 0 24px rgba(51, 255, 51, 0.06),
    0 10px 20px rgba(0, 0, 0, 0.35);
  transition:
    border-color 0.14s,
    background 0.14s,
    transform 0.14s;
}

.accomplishment-card::before {
  content: "";
}

.accomplishment-card:hover {
  border-color: #33ff33;
  background: linear-gradient(160deg, rgba(14, 20, 14, 0.95), rgba(5, 5, 5, 0.92));
  transform: translateY(-2px);
}

.accomplishment-card:hover h3,
.accomplishment-card:hover p {
  color: #33ff33;
}

.accomplishment-tag {
  display: inline-block;
  margin: 0 0 8px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(51, 255, 255, 0.45);
  color: var(--neon-accent);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.accomplishment-card h3 {
  font-size: 0.94rem;
  margin-bottom: 7px;
  color: #ffff33;
  font-weight: normal;
  line-height: 1.4;
}

.accomplishment-summary {
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.accomplishment-meta {
  margin: 0;
  display: grid;
  gap: 6px;
}

.accomplishment-meta div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.76rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 6px;
}

.accomplishment-meta dt {
  color: #8a8a8a;
}

.accomplishment-meta dd {
  margin: 0;
  color: #d4ffd4;
  text-align: right;
}

/* Mission Section */
.mission-section h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #33ff33;
  font-weight: normal;
}

.mission-section h2::before {
  content: "═══ ";
  color: #555;
}

.mission-section h2::after {
  content: " ═══════════════════════════════════════════════";
  color: #555;
}

.mission-section p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0;
  padding-left: 20px;
  border-left: 1px solid #333;
}

/* What We Do Section */
.what-we-do-section h2 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #33ff33;
  text-align: left;
  font-weight: normal;
}

.what-we-do-section h2::before {
  content: "═══ ";
  color: #555;
}

.what-we-do-section h2::after {
  content: " ═══════════════════════════════════════════";
  color: #555;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.activity-card {
  background: transparent;
  padding: 12px;
  border: 1px solid #444;
  text-align: left;
  transition:
    border-color 0.1s,
    background 0.1s;
}

.activity-card::before {
  content: "[+] ";
  color: #33ff33;
}

.activity-card:hover {
  border-color: #33ff33;
  background: rgba(51, 255, 51, 0.05);
}

.activity-card:hover h3,
.activity-card:hover p {
  color: #33ff33;
}

.activity-card h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  color: #ffff33;
  font-weight: normal;
  display: inline;
}

.activity-card p {
  color: #888;
  font-size: 0.85rem;
  padding-left: 16px;
  margin-top: 8px;
}

/* Why Join Section */
.why-join-section h2 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #33ff33;
  text-align: left;
  font-weight: normal;
}

.why-join-section h2::before {
  content: "═══ ";
  color: #555;
}

.why-join-section h2::after {
  content: " ═══════════════════════════════════════════════";
  color: #555;
}

.benefits-list {
  list-style: none;
  max-width: 700px;
  margin: 0 0 1.5rem;
}

.benefits-list li {
  font-size: 0.9rem;
  padding: 8px;
  margin-bottom: 4px;
  background: transparent;
  border: none;
  padding-left: 24px;
  position: relative;
  color: #aaffaa;
}

.benefits-list li:before {
  content: "[*]";
  position: absolute;
  left: 0;
  color: #33ff33;
  font-weight: normal;
  font-size: 0.9rem;
}

.cta-text {
  font-size: 0.9rem;
  text-align: left;
  font-weight: normal;
  color: #ffff33;
  margin-top: 1rem;
  padding: 8px;
  border: 1px dashed #ffff33;
}

/* Events Section */
.events-section h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #33ff33;
  text-align: left;
  font-weight: normal;
}

.events-section h2::before {
  content: "═══ ";
  color: #555;
}

.events-section h2::after {
  content: " ═══════════════════════════════════════";
  color: #555;
}

.section-description {
  text-align: left;
  font-size: 0.85rem;
  max-width: 700px;
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  padding-left: 20px;
  border-left: 1px solid #333;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-bottom: 1.5rem;
}


.event-card {
  background: transparent;
  padding: 12px;
  border: 1px solid #444;
}

.event-card::before {
  content: "┌── EVENT ──┐";
  display: block;
  color: #555;
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.event-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #33ff33;
  font-weight: normal;
}

.event-card h3::before {
  content: "> ";
  color: #888;
}

.event-card p {
  color: #888;
  font-size: 0.85rem;
  padding-left: 16px;
}

.event-link {
  display: inline-block;
  margin-top: 8px;
  color: #33ffff;
  text-decoration: underline;
  font-weight: normal;
  transition: color 0.1s;
  font-style: normal;
}

.event-link::before {
  content: "→ ";
}

.event-link:hover {
  color: #ffffff;
  background: #33ffff;
  color: #0a0a0a;
}

.quote {
  background: transparent;
  color: #ffff33;
  padding: 16px;
  border: 1px solid #555;
  text-align: left;
  margin-top: 1.5rem;
}

.quote::before {
  content: "╔════════════════════════════════════════════════════════════════╗";
  display: block;
  color: #555;
  font-size: 0.75rem;
  margin-bottom: 8px;
  overflow: hidden;
}

.quote::after {
  content: "╚════════════════════════════════════════════════════════════════╝";
  display: block;
  color: #555;
  font-size: 0.75rem;
  margin-top: 8px;
  overflow: hidden;
}

.quote p {
  font-size: 0.95rem;
  font-style: normal;
  margin-bottom: 8px;
}

.quote p::before {
  content: '"';
}

.quote p::after {
  content: '"';
}

.quote cite {
  font-size: 0.85rem;
  font-style: normal;
  color: #888;
}

.quote cite::before {
  content: "── ";
}

.events-cta {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(51, 255, 51, 0.3);
  border-radius: 12px;
  background: rgba(7, 7, 7, 0.75);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.events-cta-text {
  margin: 0;
  color: var(--neon-muted);
  font-size: 0.85rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border: 1px solid var(--neon);
  border-radius: 999px;
  text-decoration: none;
  color: var(--neon);
  font-size: 0.82rem;
  background: rgba(51, 255, 51, 0.08);
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.cta-button:hover {
  color: #0a0a0a;
  background: var(--neon);
  box-shadow: 0 0 14px rgba(51, 255, 51, 0.45);
}

.cta-icon {
  font-size: 0.9rem;
}

/* Members Section */
.members-section h2 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: #33ff33;
  text-align: left;
  font-weight: normal;
}

.members-section h2::before {
  content: "═══ ";
  color: #555;
}

.members-section h2::after {
  content: " ═══════════════════════════════════════════════";
  color: #555;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.member-card {
  background: rgba(12, 12, 12, 0.9);
  padding: 24px 18px 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.member-card:hover {
  border-color: var(--panel-border);
  transform: translateY(-4px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.6);
}

.member-card h3 {
  font-size: 1rem;
  margin-bottom: 0;
  color: #f5f5f5;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.member-card h3::before {
  content: "@";
  color: var(--neon-accent);
  margin-right: 4px;
}

.member-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  padding-left: 0;
  margin: 0;
}

.member-card .member-info {
  width: 100%;
}

.member-info p + p {
  margin-top: 8px;
}

.member-role {
  font-weight: 600;
  text-transform: uppercase;
  color: var(--neon-accent);
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.member-role::before {
  content: "└─ ";
  color: #555;
}

.member-avatar {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(160deg, rgba(51, 255, 51, 0.2), rgba(0, 0, 0, 0.6));
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.member-avatar.has-image {
  box-shadow:
    inset 0 0 18px rgba(0, 0, 0, 0.45),
    0 0 18px rgba(51, 255, 51, 0.32);
}

.member-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.avatar-initials {
  display: inline-flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: #f4fff4;
  background: radial-gradient(circle at 35% 35%, rgba(51, 255, 51, 0.2), rgba(0, 0, 0, 0.75));
  text-transform: uppercase;
}

.member-avatar.has-image img {
  opacity: 1;
}

.member-avatar.has-image .avatar-initials {
  opacity: 0;
}

.member-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(51, 255, 255, 0.45);
  color: var(--neon-accent);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
 

/* Values Section */
.values-section {
  padding: 0;
  background: #0a0a0a;
  text-align: left;
  border-top: 1px solid #333;
}

.values-section h2::before {
  content: "═══ ";
  color: #555;
}

.values-section h2::after {
  content: " ═══════════════════════════════════════════════════";
  color: #555;
}

.values-section p {
  font-size: 0.9rem;
  max-width: 800px;
  margin: 0;
  line-height: 1.6;
  color: #aaffaa;
  padding-left: 20px;
  border-left: 1px solid #333;
}

/* Requirements Section */
.requirements-section h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: left;
  color: #33ff33;
  font-weight: normal;
}

.requirements-section h2::before {
  content: "═══ ";
  color: #555;
}

.requirements-section h2::after {
  content: " ═══════════════════════════════════";
  color: #555;
}

.requirements-content {
  max-width: 700px;
  margin: 0;
}

.requirements-content p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: #888;
}

.requirements-content ul {
  list-style: none;
}

.requirements-content li {
  font-size: 0.9rem;
  padding: 6px;
  margin-bottom: 4px;
  background: transparent;
  border: none;
  padding-left: 24px;
  position: relative;
}

.requirements-content li:before {
  content: "[+] ";
  position: absolute;
  left: 0;
  font-size: 0.9rem;
  color: #33ff33;
}
.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 0.5rem;
}

.track-card {
  border: 1px solid rgba(51, 255, 255, 0.2);
  border-radius: 10px;
  padding: 14px;
  background: rgba(51, 255, 255, 0.03);
  transition: border-color 0.14s, background 0.14s, transform 0.14s;
}

.track-card:hover {
  border-color: var(--neon-accent);
  background: rgba(51, 255, 255, 0.07);
  transform: translateY(-2px);
}

.track-icon {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.track-card h4 {
  font-size: 0.85rem;
  font-weight: normal;
  color: var(--neon-accent);
  margin-bottom: 6px;
}

.track-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Why callout */
.why-callout {
  border: 1px dashed rgba(255, 255, 51, 0.45);
  border-radius: 10px;
  padding: 14px;
  margin-top: 1rem;
  background: rgba(255, 255, 51, 0.03);
}

.callout-label {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: #ffff33;
  margin-bottom: 8px;
}

.callout-label::before {
  content: "⚑ ";
}

.why-callout p {
  font-size: 0.86rem;
  color: #cccc88;
  line-height: 1.65;
  margin: 0;
}

/* Outcome meters */
.outcomes-list {
  list-style: none;
  margin: 0.5rem 0 1.25rem;
}

.outcomes-list li {
  font-size: 0.88rem;
  color: var(--neon-muted);
  padding: 6px 6px 6px 26px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.outcomes-list li::before {
  content: "[✓]";
  position: absolute;
  left: 0;
  color: var(--neon);
  font-size: 0.8rem;
}

.outcome-meters {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 1rem;
}

.meter-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.meter-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.meter-range {
  color: var(--neon);
  white-space: nowrap;
  padding-left: 8px;
}

.meter-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--neon), var(--neon-accent));
  border-radius: 999px;
  transition: width 1s ease-out;
}

/* 5-Day Timeline */
.bootcamp-timeline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 0.5rem;
}

.timeline-item {
  border: 1px solid rgba(51, 255, 51, 0.18);
  border-radius: 10px;
  overflow: hidden;
}

.timeline-toggle {
  width: 100%;
  background: rgba(8, 8, 8, 0.6);
  border: none;
  color: var(--neon-muted);
  font-family: inherit;
  font-size: 0.85rem;
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition: background 0.12s, color 0.12s;
}

.timeline-toggle:hover {
  background: rgba(51, 255, 51, 0.07);
  color: var(--neon);
}

.timeline-toggle[aria-expanded="true"] {
  background: rgba(51, 255, 51, 0.08);
  color: var(--neon);
}

.timeline-day {
  font-size: 0.68rem;
  color: var(--neon-accent);
  letter-spacing: 0.12em;
  white-space: nowrap;
  border: 1px solid rgba(51, 255, 255, 0.35);
  border-radius: 999px;
  padding: 2px 7px;
}

.timeline-title {
  flex: 1;
}

.timeline-arrow {
  font-size: 0.6rem;
  color: #555;
  transition: transform 0.18s;
  flex-shrink: 0;
}

.timeline-toggle[aria-expanded="true"] .timeline-arrow {
  transform: rotate(90deg);
  color: var(--neon);
}

.timeline-body {
  display: none;
  padding: 10px 14px 14px 14px;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid rgba(51, 255, 51, 0.1);
  background: rgba(4, 4, 4, 0.55);
}

.timeline-body.open {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .hackathon-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 0.5rem;
}

.track-card {
  border: 1px solid rgba(51, 255, 255, 0.2);
  border-radius: 10px;
  padding: 14px;
  background: rgba(51, 255, 255, 0.03);
  transition: border-color 0.14s, background 0.14s, transform 0.14s;
}

.track-card:hover {
  border-color: var(--neon-accent);
  background: rgba(51, 255, 255, 0.07);
  transform: translateY(-2px);
}

.track-icon {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.track-card h4 {
  font-size: 0.85rem;
  font-weight: normal;
  color: var(--neon-accent);
  margin-bottom: 6px;
}

.track-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Why callout */
.why-callout {
  border: 1px dashed rgba(255, 255, 51, 0.45);
  border-radius: 10px;
  padding: 14px;
  margin-top: 1rem;
  background: rgba(255, 255, 51, 0.03);
}

.callout-label {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: #ffff33;
  margin-bottom: 8px;
}

.callout-label::before {
  content: "⚑ ";
}

.why-callout p {
  font-size: 0.86rem;
  color: #cccc88;
  line-height: 1.65;
  margin: 0;
}

/* Outcome meters */
.outcomes-list {
  list-style: none;
  margin: 0.5rem 0 1.25rem;
}

.outcomes-list li {
  font-size: 0.88rem;
  color: var(--neon-muted);
  padding: 6px 6px 6px 26px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.outcomes-list li::before {
  content: "[✓]";
  position: absolute;
  left: 0;
  color: var(--neon);
  font-size: 0.8rem;
}

.outcome-meters {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 1rem;
}

.meter-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.meter-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.meter-range {
  color: var(--neon);
  white-space: nowrap;
  padding-left: 8px;
}

.meter-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.meter-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--neon), var(--neon-accent));
  border-radius: 999px;
  transition: width 1s ease-out;
}

/* 5-Day Timeline */
.bootcamp-timeline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 0.5rem;
}

.timeline-item {
  border: 1px solid rgba(51, 255, 51, 0.18);
  border-radius: 10px;
  overflow: hidden;
}

.timeline-toggle {
  width: 100%;
  background: rgba(8, 8, 8, 0.6);
  border: none;
  color: var(--neon-muted);
  font-family: inherit;
  font-size: 0.85rem;
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition: background 0.12s, color 0.12s;
}

.timeline-toggle:hover {
  background: rgba(51, 255, 51, 0.07);
  color: var(--neon);
}

.timeline-toggle[aria-expanded="true"] {
  background: rgba(51, 255, 51, 0.08);
  color: var(--neon);
}

.timeline-day {
  font-size: 0.68rem;
  color: var(--neon-accent);
  letter-spacing: 0.12em;
  white-space: nowrap;
  border: 1px solid rgba(51, 255, 255, 0.35);
  border-radius: 999px;
  padding: 2px 7px;
}

.timeline-title {
  flex: 1;
}

.timeline-arrow {
  font-size: 0.6rem;
  color: #555;
  transition: transform 0.18s;
  flex-shrink: 0;
}

.timeline-toggle[aria-expanded="true"] .timeline-arrow {
  transform: rotate(90deg);
  color: var(--neon);
}

.timeline-body {
  display: none;
  padding: 10px 14px 14px 14px;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  border-top: 1px solid rgba(51, 255, 51, 0.1);
  background: rgba(4, 4, 4, 0.55);
}

.timeline-body.open {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .hackathon-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .tracks-grid {
    grid-template-columns: 1fr;
  }
}
/* Footer */
.footer {
  background: #0a0a0a;
  color: #888;
  margin-top: 36px;
  padding: 24px 16px 16px;
  text-align: left;
  border-top: 1px solid #33ff33;
}

.footer::before {
  content: "────────────────────────────────────────────────────────────────────────";
  display: block;
  color: #333;
  overflow: hidden;
  margin-bottom: 8px;
}

.footer p {
  margin: 4px 0;
  font-size: 0.8rem;
}

.footer p::before {
  content: "// ";
  color: #555;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Blinking cursor effect for headings */
@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    gap: 8px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-menu li::before {
    padding: 0 4px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-code {
    font-size: 0.85rem;
  }

  .hero-description {
    font-size: 0.85rem;
  }

  h2 {
    font-size: 1rem !important;
  }

  h2::after {
    content: " ═══" !important;
  }

  .accomplishments-grid,
  .activities-grid,
  .events-grid,
  .members-grid {
    grid-template-columns: 1fr;
  }

  .events-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

  .member-card {
    padding: 22px 16px;
  }

  .hero-content::before {
    display: none;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Scroll padding for fixed navbar */
section {
  scroll-margin-top: 60px;
}

/* Selection styling */
::selection {
  background: #33ff33;
  color: #0a0a0a;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border: 1px solid #33ff33;
}

::-webkit-scrollbar-thumb:hover {
  background: #33ff33;
}
