@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&family=Inter:wght@400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --void: #0f0f0f;
  --pure-black: #000000;
  --white: #ffffff;
  --cyan: #00ffff;
  --cobalt: #0007cd;
  --signal-blue: #0089ff;
  --ocean-blue: #0096ff;
  --charcoal: #2c2c2c;
  --ghost: rgba(255,255,255,0.6);
  --whisper: rgba(255,255,255,0.5);
  --phantom: rgba(255,255,255,0.2);
  --mist-12: rgba(255,255,255,0.12);
  --mist-10: rgba(255,255,255,0.10);
  --mist-08: rgba(255,255,255,0.08);
  --mist-06: rgba(255,255,255,0.06);
  --mist-04: rgba(255,255,255,0.04);
  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'Courier New', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--void);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--cyan); }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--void);
  border-bottom: 1px solid var(--mist-08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 500;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--cobalt);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
}
.logo-text { color: var(--white); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  color: var(--ghost);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 4px; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--pure-black);
  border: 1px solid var(--mist-10);
  border-radius: 4px;
  min-width: 220px;
  padding: 8px 0;
  box-shadow: 0px 8px 32px rgba(0,0,0,0.5);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--ghost);
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu li a:hover { background: var(--mist-06); color: var(--white); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.2s;
}

/* HERO */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(0,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-overline {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
  border: 1px solid rgba(0,255,255,0.2);
  padding: 4px 12px;
  border-radius: 2px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  line-height: 0.87;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto 28px;
}
.hero-desc {
  font-size: 18px;
  color: var(--ghost);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.hero-image {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--mist-10);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.15), 0px 8px 32px rgba(0,0,0,0.5);
}
.hero-image img { width: 100%; height: 420px; object-fit: cover; }

/* STATS BAR */
.stats-bar {
  border-top: 1px solid var(--mist-08);
  border-bottom: 1px solid var(--mist-08);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid var(--mist-08);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--ghost);
  letter-spacing: 0.3px;
}

/* SECTION HEADERS */
.section-header {
  margin-bottom: 48px;
}
.section-overline {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
  display: block;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--white);
}
.section-header p {
  margin-top: 16px;
  font-size: 16px;
  color: var(--ghost);
  max-width: 540px;
  line-height: 1.6;
}

/* ARTICLES GRID */
.articles-section { padding: 80px 0; }
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--pure-black);
  border: 1px solid var(--mist-10);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  border-color: var(--mist-12);
  box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.15);
}
.article-card-image { overflow: hidden; aspect-ratio: 16/9; }
.article-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.article-card:hover .article-card-image img { transform: scale(1.03); }
.article-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.article-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.article-card-body h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 12px;
}
.article-card-body p {
  font-size: 14px;
  color: var(--ghost);
  line-height: 1.63;
  flex: 1;
  margin-bottom: 20px;
}
.article-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--mist-06);
}
.article-date {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--whisper);
}
.article-read-link {
  font-size: 13px;
  color: var(--signal-blue);
  display: flex;
  align-items: center;
  gap: 4px;
}
.article-read-link:hover { color: var(--cyan); }

/* VENUE FEATURES */
.venues-section { padding: 80px 0; border-top: 1px solid var(--mist-08); }
.venue-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--mist-06);
}
.venue-feature:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.venue-feature.reverse { direction: rtl; }
.venue-feature.reverse > * { direction: ltr; }
.venue-feature-image {
  border: 1px solid var(--mist-10);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.15);
  position: relative;
}
.venue-feature-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0,255,255,0.06), transparent 70%);
  pointer-events: none;
}
.venue-feature-image img { width: 100%; height: 320px; object-fit: cover; }
.venue-feature-content {}
.venue-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.55px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  display: block;
}
.venue-feature-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.0;
  margin-bottom: 16px;
  color: var(--white);
}
.venue-feature-content p {
  font-size: 15px;
  color: var(--ghost);
  line-height: 1.63;
  margin-bottom: 24px;
}
.venue-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.spec-item {
  padding: 12px 16px;
  background: var(--mist-04);
  border: 1px solid var(--mist-08);
  border-radius: 4px;
}
.spec-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--whisper);
  display: block;
  margin-bottom: 4px;
}
.spec-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--signal-blue);
  border-radius: 4px;
  font-size: 14px;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: rgba(0,137,255,0.1); color: var(--white); }

/* EVENTS SECTION */
.events-section { padding: 80px 0; border-top: 1px solid var(--mist-08); }
.events-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.event-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--pure-black);
  border: 1px solid var(--mist-08);
  border-radius: 4px;
}
.event-date-block {
  flex-shrink: 0;
  text-align: center;
  width: 56px;
}
.event-month {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--cyan);
  display: block;
}
.event-day {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
}
.event-year {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--whisper);
  display: block;
}
.event-info h4 { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.event-info p { font-size: 13px; color: var(--ghost); line-height: 1.5; }
.event-venue {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--whisper);
  margin-top: 6px;
  display: block;
}

/* ARTICLE PAGE */
.article-page { padding: 60px 0 80px; }
.article-page-inner { max-width: 780px; margin: 0 auto; }
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--whisper);
  margin-bottom: 32px;
}
.article-breadcrumb a { color: var(--ghost); }
.article-breadcrumb a:hover { color: var(--white); }
.article-breadcrumb span { color: var(--whisper); }
.article-page h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 400;
  line-height: 1.0;
  margin-bottom: 20px;
}
.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--mist-08);
  border-bottom: 1px solid var(--mist-08);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.article-meta-item {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--whisper);
  display: flex;
  align-items: center;
  gap: 6px;
}
.article-meta-item .dot { width: 4px; height: 4px; background: var(--cyan); border-radius: 50%; }
.article-featured-image {
  border: 1px solid var(--mist-10);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.15);
}
.article-featured-image img { width: 100%; height: 440px; object-fit: cover; }
.article-content { font-size: 15px; color: var(--ghost); line-height: 1.8; }
.article-content h2 {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.0;
  color: var(--white);
  margin: 48px 0 16px;
}
.article-content h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin: 32px 0 12px;
}
.article-content p { margin-bottom: 20px; }
.article-content ul, .article-content ol { margin: 0 0 20px 20px; }
.article-content li { margin-bottom: 8px; }
.article-content a { color: var(--signal-blue); text-decoration: underline; text-underline-offset: 3px; }
.article-content a:hover { color: var(--cyan); }
.article-content strong { color: var(--white); font-weight: 500; }
.article-content blockquote {
  border-left: 2px solid var(--cyan);
  padding: 12px 20px;
  margin: 24px 0;
  background: var(--mist-04);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: var(--ghost);
}
.article-content .info-box {
  background: var(--pure-black);
  border: 1px solid var(--mist-10);
  border-radius: 4px;
  padding: 24px;
  margin: 28px 0;
}
.article-content .info-box h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.article-content .info-box p, .article-content .info-box li { font-size: 14px; }
.article-inline-image {
  border: 1px solid var(--mist-10);
  border-radius: 4px;
  overflow: hidden;
  margin: 32px 0;
  box-shadow: 4px 4px 0px 0px rgba(0,0,0,0.15);
}
.article-inline-image img { width: 100%; height: 320px; object-fit: cover; }
.article-inline-image figcaption {
  padding: 10px 16px;
  font-size: 12px;
  color: var(--whisper);
  font-family: var(--font-mono);
  border-top: 1px solid var(--mist-08);
}
.related-articles { margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--mist-08); }
.related-articles h3 { font-size: 24px; font-weight: 400; margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.related-card {
  padding: 20px;
  background: var(--pure-black);
  border: 1px solid var(--mist-10);
  border-radius: 4px;
  transition: border-color 0.2s;
}
.related-card:hover { border-color: var(--mist-12); }
.related-card .article-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.55px; text-transform: uppercase; color: var(--cyan); margin-bottom: 8px; display: block; }
.related-card h4 { font-size: 16px; font-weight: 500; color: var(--white); line-height: 1.3; margin-bottom: 8px; }
.related-card p { font-size: 13px; color: var(--ghost); line-height: 1.5; }

/* PAGES (About, Privacy, Terms) */
.page-content { padding: 60px 0 80px; }
.page-inner { max-width: 780px; margin: 0 auto; }
.page-inner h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 400; line-height: 1.0; margin-bottom: 24px; }
.page-inner .page-updated { font-family: var(--font-mono); font-size: 12px; color: var(--whisper); margin-bottom: 40px; display: block; }
.page-text { font-size: 15px; color: var(--ghost); line-height: 1.8; }
.page-text h2 { font-size: 24px; font-weight: 400; color: var(--white); margin: 40px 0 16px; }
.page-text h3 { font-size: 18px; font-weight: 500; color: var(--white); margin: 28px 0 10px; }
.page-text p { margin-bottom: 16px; }
.page-text ul, .page-text ol { margin: 0 0 16px 20px; }
.page-text li { margin-bottom: 6px; }
.page-text a { color: var(--signal-blue); text-decoration: underline; text-underline-offset: 3px; }
.page-text a:hover { color: var(--cyan); }
.page-text strong { color: var(--white); font-weight: 500; }

/* CONTACT FORM (footer) */
.contact-form { display: flex; flex-direction: column; gap: 10px; }
.contact-form input {
  background: transparent;
  border: 1px solid var(--mist-10);
  border-radius: 4px;
  padding: 10px 14px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input::placeholder { color: var(--whisper); }
.contact-form input:focus { border-color: var(--signal-blue); }
.btn-submit {
  background: var(--white);
  color: #111;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: opacity 0.2s;
}
.btn-submit:hover { opacity: 0.88; }

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--mist-08);
  padding: 64px 0 0;
  margin-top: auto;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 6px; margin-bottom: 14px; font-size: 17px; }
.footer-tagline { font-size: 13px; color: var(--ghost); line-height: 1.6; margin-bottom: 20px; max-width: 280px; }
.footer-address p { font-size: 13px; color: var(--whisper); line-height: 1.8; }
.footer-address a { color: var(--ghost); }
.footer-address a:hover { color: var(--white); }
.footer-col h4 { font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; font-family: var(--font-mono); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: var(--ghost); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--mist-06);
  padding: 24px 0;
}
.footer-legal { font-size: 13px; color: var(--whisper); margin-bottom: 8px; }
.footer-legal a { color: var(--ghost); }
.footer-legal a:hover { color: var(--white); }
.footer-disclaimer { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.6; max-width: 780px; }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--pure-black);
  border-top: 1px solid var(--mist-12);
  padding: 16px 24px;
}
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 14px; color: var(--ghost); }
.cookie-inner p a { color: var(--signal-blue); text-decoration: underline; }
.cookie-btns { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--white);
  color: #111;
  border: none;
  border-radius: 4px;
  padding: 8px 20px;
  font-size: 14px;
  font-family: var(--font-sans);
  cursor: pointer;
  font-weight: 500;
}
.btn-cookie-reject {
  background: transparent;
  color: var(--ghost);
  border: 1px solid var(--charcoal);
  border-radius: 4px;
  padding: 8px 20px;
  font-size: 14px;
  font-family: var(--font-sans);
  cursor: pointer;
}
.btn-cookie-reject:hover { border-color: var(--mist-10); color: var(--white); }

/* ABOUT PAGE TEAM */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }
.about-card {
  padding: 28px;
  background: var(--pure-black);
  border: 1px solid var(--mist-10);
  border-radius: 4px;
}
.about-card h3 { font-size: 18px; font-weight: 500; margin-bottom: 8px; }
.about-card p { font-size: 14px; color: var(--ghost); line-height: 1.6; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .venue-feature { grid-template-columns: 1fr; gap: 32px; }
  .venue-feature.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .events-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--void); border-bottom: 1px solid var(--mist-08); padding: 16px 24px 24px; gap: 16px; }
  .nav-links.open { display: flex; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-toggle { display: flex; }
  .site-nav { position: relative; }
  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: clamp(28px, 8vw, 40px); }
  .articles-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .venue-specs { grid-template-columns: 1fr; }
  .article-featured-image img { height: 260px; }
  .hero-image img { height: 240px; }
}
