:root {
  --bg-dark: #0a1128;
  --bg-card: #101f42;
  --bg-card-hover: #162a5c;
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --accent-gold: #fbbf24;
  --accent-cyan: #38bdf8;
  --accent-cyan-glow: rgba(56, 189, 248, 0.25);
  --accent-green: #34d399;
  --border-color: rgba(255, 255, 255, 0.1);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'Fira Code', monospace;
  --container-max: 1200px;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-gold);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 17, 40, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.35rem;
  color: #ffffff;
}

.brand-logo .highlight {
  color: var(--accent-gold);
}

.badge-501c3 {
  background: rgba(251, 191, 36, 0.15);
  color: var(--accent-gold);
  border: 1px solid rgba(251, 191, 36, 0.4);
  font-size: 0.72rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  margin-left: 0.35rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active-link {
  color: var(--accent-cyan);
  font-weight: 600;
}

.page-hero {
  padding: 8rem 0 4rem;
  background: radial-gradient(circle at 50% 20%, rgba(56, 189, 248, 0.1) 0%, transparent 60%);
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.nav-module-card {
  text-decoration: none !important;
  color: var(--text-main);
  transition: all 0.3s ease;
}

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

.btn-nav {
  background: var(--accent-cyan);
  color: var(--bg-dark) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
}

.btn-nav:hover {
  background: #7dd3fc;
}

.btn-spotify {
  background: rgba(29, 185, 84, 0.15);
  border: 1px solid rgba(29, 185, 84, 0.5);
  color: #1db954 !important;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-spotify:hover {
  background: #1db954;
  color: #0a1128 !important;
}

.btn-spotify-hero {
  border: 1px solid rgba(29, 185, 84, 0.6);
  color: #1db954;
  background: rgba(29, 185, 84, 0.1);
}

.btn-spotify-hero:hover {
  background: #1db954;
  color: #0a1128;
  box-shadow: 0 0 20px rgba(29, 185, 84, 0.3);
}

.spotify-thumb {
  background: linear-gradient(135deg, #052e16, #022c22) !important;
}

.spotify-btn {
  border-color: #1db954 !important;
  color: #1db954 !important;
  background: rgba(29, 185, 84, 0.2) !important;
}

.video-card:hover .spotify-btn {
  background: #1db954 !important;
  color: #0a1128 !important;
  box-shadow: 0 0 20px rgba(29, 185, 84, 0.4) !important;
}

.spotify-link {
  color: #1db954 !important;
}

.spotify-link:hover {
  color: var(--accent-gold) !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 7.5rem 0 2.5rem;
  background: radial-gradient(circle at 50% 20%, rgba(56, 189, 248, 0.12) 0%, transparent 60%);
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: var(--accent-cyan);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.85rem 1.85rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-block;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--accent-cyan);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: #7dd3fc;
  box-shadow: 0 0 20px var(--accent-cyan-glow);
}

.btn-outline {
  border: 1px solid var(--border-color);
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-gold);
}

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

/* Sections */
.section {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  margin-bottom: 2rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.badge-tag {
  display: inline-block;
  background: rgba(251, 191, 36, 0.1);
  color: var(--accent-gold);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

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

/* Cards & Pillars */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-4px);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.pillar-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Video Cards */
.video-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
}

.video-thumbnail {
  height: 160px;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.play-btn {
  width: 50px;
  height: 50px;
  background: rgba(56, 189, 248, 0.2);
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.video-card:hover .play-btn {
  background: var(--accent-cyan);
  color: var(--bg-dark);
  box-shadow: 0 0 20px var(--accent-cyan-glow);
  transform: scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(10, 17, 40, 0.85);
  border: 1px solid var(--border-color);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent-gold);
}

.video-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.video-info h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.video-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.video-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-cyan);
}

.video-link:hover {
  color: var(--accent-gold);
}

/* Curriculum Interactive */
.curriculum-interactive {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.module-tabs {
  display: flex;
  gap: 1rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: none;
  border: 1px solid transparent;
  color: var(--text-muted);
  padding: 0.6rem 1.25rem;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.5);
  color: var(--accent-cyan);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.standard-desc h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.standard-desc p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.standard-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.standard-features li {
  color: var(--text-main);
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.98rem;
}

.standard-features li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

.standard-features strong {
  font-family: var(--font-mono);
  color: var(--accent-cyan);
}

.module-desc p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.module-desc ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.module-desc li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.25rem;
}

.module-desc li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
}

.key-point {
  background: rgba(10, 17, 40, 0.6);
  border: 1px solid var(--border-color);
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
}

.key-point code {
  font-family: var(--font-mono);
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.alert-box {
  background: rgba(251, 191, 36, 0.1);
  border-left: 4px solid var(--accent-gold);
  padding: 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  color: var(--text-main);
}

.code-editor-box {
  background: #060b1e;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.editor-header {
  background: #0d152d;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

/* Interactive Calendar Grid */
.calendar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.calendar-header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.cal-nav-btn {
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: var(--accent-cyan);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cal-nav-btn:hover {
  background: var(--accent-cyan);
  color: var(--bg-dark);
}

.cal-month {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
}

.cal-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.calendar-grid-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent-cyan);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.cal-day {
  min-height: 105px;
  background: rgba(10, 17, 40, 0.6);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.cal-day.other-month {
  opacity: 0.25;
  background: rgba(5, 10, 24, 0.25);
}

.cal-day.has-event {
  border-color: rgba(56, 189, 248, 0.5);
  background: rgba(16, 31, 66, 0.85);
}

.cal-day.is-today {
  border: 2px solid var(--accent-gold) !important;
  background: rgba(251, 191, 36, 0.1) !important;
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.2);
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.day-num {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.today-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--bg-dark);
  background: var(--accent-gold);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.day-events-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.35rem;
}

.cal-event-pill {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.5);
  border-radius: 5px;
  padding: 0.35rem 0.5rem;
  font-size: 0.75rem;
  color: var(--accent-cyan);
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
}

.cal-event-pill:hover {
  background: var(--accent-cyan);
  color: var(--bg-dark);
  box-shadow: 0 0 12px var(--accent-cyan-glow);
}

.cal-event-pill.today-pill {
  background: rgba(251, 191, 36, 0.2);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  font-weight: 700;
}

.cal-event-pill.today-pill:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.5);
}

.today-card {
  border-color: var(--accent-gold) !important;
  background: rgba(251, 191, 36, 0.08) !important;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.15);
}

.today-badge {
  background: var(--accent-gold) !important;
  color: var(--bg-dark) !important;
  font-weight: 800 !important;
}

.status-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  display: inline-block;
}

.status-badge.notebook-available {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.5);
  color: var(--accent-cyan);
}

.status-badge.notebook-pending {
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: var(--text-muted);
}

.status-badge.media-available {
  background: rgba(52, 211, 153, 0.15);
  border: 1px solid rgba(52, 211, 153, 0.5);
  color: var(--accent-green);
}

.status-badge.media-pending {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

.cal-event-pill.upcoming {
  background: rgba(251, 191, 36, 0.18);
  border-color: rgba(251, 191, 36, 0.6);
  color: var(--accent-gold);
}

.cal-event-pill.upcoming:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
  box-shadow: 0 0 12px rgba(251, 191, 36, 0.4);
}

.group-title {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.upcoming-card {
  border-color: rgba(251, 191, 36, 0.4) !important;
  background: rgba(251, 191, 36, 0.05) !important;
}

.event-type-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  background: rgba(251, 191, 36, 0.15);
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.card-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
  font-size: 0.75rem;
  color: var(--accent-cyan);
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
}

.cal-event-pill:hover {
  background: var(--accent-cyan);
  color: var(--bg-dark);
  box-shadow: 0 0 12px var(--accent-cyan-glow);
}

.cal-event-pill.philosophy {
  background: rgba(251, 191, 36, 0.15);
  border-color: rgba(251, 191, 36, 0.5);
  color: var(--accent-gold);
}

.cal-event-pill.philosophy:hover {
  background: var(--accent-gold);
  color: var(--bg-dark);
}

.cal-event-pill.lecture {
  background: rgba(52, 211, 153, 0.15);
  border-color: rgba(52, 211, 153, 0.5);
  color: var(--accent-green);
}

.cal-event-pill.lecture:hover {
  background: var(--accent-green);
  color: var(--bg-dark);
}

.event-name {
  font-weight: 600;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.event-time {
  font-size: 0.68rem;
  opacity: 0.85;
  display: block;
}

.event-date-tag {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.event-list-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.event-list-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.editor-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.code-block {
  padding: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: #e2e8f0;
  overflow-x: auto;
}

.code-block .keyword { color: #f472b6; }
.code-block .string { color: #a7f3d0; }
.code-block .number { color: #fde047; }
.code-block .comment { color: #64748b; font-style: italic; }
.code-block .function { color: #60a5fa; }

/* Spectrum Pipeline */
.spectrum-pipeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 250px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
}

.step-number {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(56, 189, 248, 0.2);
  margin-bottom: 0.5rem;
}

.step-card h4 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.step-arrow {
  font-size: 1.5rem;
  color: var(--accent-cyan);
}

/* Governance */
.gov-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
}

.gov-box h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.officer-list {
  list-style: none;
}

.officer-list li {
  margin-bottom: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.officer-list strong {
  color: var(--text-main);
}

.info-tag-list {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.info-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-cyan);
}

/* Footer */
.footer {
  background: #050a18;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

.footer-logo {
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.footer-address {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-col h4 {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

.disclaimer {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.25rem;
  }
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .step-arrow {
    display: none;
  }
}


.event-detail-section {
  padding-top: 1.25rem;
}


/* Mobile Navigation Expansion & Touch Styles */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block !important;
    font-size: 1.8rem;
    padding: 0.25rem 0.5rem;
    color: var(--accent-gold);
    background: transparent;
    border: none;
    z-index: 10001;
    cursor: pointer;
  }

  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: #0a1128 !important;
    border-bottom: 2px solid var(--accent-cyan) !important;
    padding: 1.5rem !important;
    gap: 1rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9) !important;
    z-index: 10000 !important;
  }

  .nav-links.active a {
    font-size: 1.1rem !important;
    padding: 0.6rem 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    width: 100% !important;
    display: block !important;
  }

  .nav-links.active #nav-login-btn {
    margin-left: 0 !important;
    margin-top: 0.5rem !important;
    text-align: center !important;
    font-size: 1.1rem !important;
    padding: 0.75rem 1rem !important;
    width: 100% !important;
  }
}


/* Prevent Long URLs from Stretching Viewports on Mobile */
a, p, span, code, .card, .hero-subtitle {
  overflow-wrap: anywhere;
  word-break: break-word;
}


/* Touch & Mobile Button Responsiveness */
button, .btn, a, input[type="submit"], input[type="radio"], label, #mobile-toggle {
  touch-action: manipulation !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: rgba(56, 189, 248, 0.2) !important;
}


/* Optimized Compact Navbar Styles */
.nav-container {
  max-width: 1320px !important;
  padding: 0 1rem !important;
}

.nav-links {
  gap: 0.4rem !important;
  flex-wrap: nowrap !important;
}

.nav-links a {
  font-size: 0.85rem !important;
  padding: 0.3rem 0.5rem !important;
  white-space: nowrap !important;
}

.nav-links .btn-spotify, .nav-links .btn-nav {
  display: none !important; /* Move spotify and youtube playlist buttons to footer to unclutter top navbar */
}


/* Support Links in Navbar Styles */
.nav-container {
  max-width: 1440px !important;
  padding: 0 1rem !important;
}

.nav-links {
  gap: 0.25rem !important;
  flex-wrap: nowrap !important;
}

.nav-links a {
  font-size: 0.82rem !important;
  padding: 0.25rem 0.42rem !important;
  white-space: nowrap !important;
}

.nav-links .btn-spotify, .nav-links .btn-nav, .nav-links .btn-social {
  display: inline-block !important;
}
