@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --bg: #0c0c0c;
  --bg2: #141414;
  --bg3: #1c1c1c;
  --text: #f5f5f5;
  --muted: #666;
  --muted2: #999;
  --border: rgba(255,255,255,0.07);
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── NAVIGATION ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 52px;
  background: rgba(12,12,12,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--text);
  display: flex;
  align-items: baseline;
  gap: 0;
}
.site-logo em { color: rgba(255,255,255,0.3); font-style: normal; }
.site-logo sup {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.2);
  margin-left: 2px;
  vertical-align: super;
}

#primary-nav { display: flex; gap: 2rem; }
#primary-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
#primary-nav a:hover { color: var(--text); }

.nav-search-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 92vh;
  min-height: 520px;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-video-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0c0c0c 0%, #1a1a1a 40%, #0a0a0a 100%);
  display: flex; align-items: center; justify-content: center;
}

.hero-video-bg video,
.hero-video-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}
.hero-overlay-left {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.hero-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, border-color 0.2s;
}
.hero-play-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.hero-play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 9px 0 9px 18px;
  border-color: transparent transparent transparent rgba(255,255,255,0.85);
  margin-left: 4px;
}
.hero-play-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, 46px);
  font-size: 9px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

.hero-content {
  position: relative; z-index: 3;
  padding: 0 2.5rem 3.5rem;
  max-width: 640px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.hero-eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.35); }

.hero-title {
  font-family: var(--font-display);
  font-size: 82px; line-height: 0.9;
  letter-spacing: 1px;
  color: var(--text);
  margin-bottom: 1.4rem;
}
.hero-subtitle {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 380px;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; align-items: center; gap: 1.5rem; }
.btn-primary {
  background: #fff; color: #000;
  font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  padding: 11px 24px;
  border: none; cursor: pointer;
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-primary:hover { opacity: 0.85; color: #000; }
.btn-ghost {
  background: transparent; border: none;
  font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text); }

.hero-scroll-indicator {
  position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2)); }
.hero-scroll-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.2); }

/* ── NEWS TICKER ── */
#news-ticker {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 10px 2.5rem;
  display: flex; align-items: center; gap: 1.5rem;
  overflow: hidden;
}
.ticker-label {
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: 3px;
  color: var(--muted);
  flex-shrink: 0;
  padding-right: 1.5rem;
  border-right: 1px solid var(--border);
}
.ticker-track { display: flex; gap: 2.5rem; overflow: hidden; }
.ticker-item {
  font-size: 11px; color: var(--muted2);
  white-space: nowrap;
  display: flex; align-items: center; gap: 8px;
}
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted); flex-shrink: 0; }

/* ── SECTIONS ── */
.site-section { padding: 3rem 2.5rem; }
.section-dark { background: var(--bg); }
.section-mid { background: var(--bg2); }

.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 1.8rem;
}
.section-title { font-family: var(--font-display); font-size: 28px; letter-spacing: 1px; }
.section-link {
  font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.section-link:hover { color: var(--text); }

/* ── AD STRIP ── */
.ad-strip {
  margin: 0 2.5rem;
  border: 1px dashed rgba(255,255,255,0.06);
  padding: 14px;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  background: var(--bg2);
  text-align: center;
}
.ad-tag { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.15); }
.ad-leaderboard { min-height: 90px; display: flex; align-items: center; justify-content: center; }

/* ── NEWS GRID ── */
.news-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.news-card { background: var(--bg); overflow: hidden; }
.news-card-image {
  background: var(--bg3);
  position: relative; overflow: hidden;
}
.news-card-image img { width: 100%; height: 100%; object-fit: cover; }
.news-card.featured .news-card-image { height: 280px; }
.news-card:not(.featured) .news-card-image { height: 160px; }
.news-card-body { padding: 1.2rem; }
.news-cat {
  display: inline-block;
  font-size: 9px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--muted);
  padding-bottom: 1px;
  margin-bottom: 8px;
}
.news-title {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 8px;
  transition: opacity 0.2s;
}
.news-card.featured .news-title { font-size: 28px; }
.news-card:not(.featured) .news-title { font-size: 20px; }
.news-title:hover { opacity: 0.7; }
.news-excerpt { font-size: 12px; color: var(--muted2); line-height: 1.6; margin-bottom: 10px; }
.news-meta { font-size: 10px; color: var(--muted); letter-spacing: 0.5px; }

/* ── JET DATABASE ── */
.jets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.jet-card {
  background: var(--bg2);
  padding: 1.4rem 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  border-bottom: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.jet-card:hover { background: var(--bg3); border-bottom-color: rgba(255,255,255,0.15); }
.jet-gen { font-size: 9px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.jet-name { font-family: var(--font-display); font-size: 24px; letter-spacing: 0.5px; margin-bottom: 2px; }
.jet-nation { font-size: 11px; color: var(--muted); margin-bottom: 1rem; }
.jet-stat { font-size: 11px; color: var(--muted2); line-height: 1.8; }
.jet-stat strong { color: rgba(255,255,255,0.6); font-weight: 500; }

/* ── VIDEO SECTION ── */
.video-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
}
.video-card { background: var(--bg); overflow: hidden; cursor: pointer; }
.video-thumb {
  background: var(--bg3);
  position: relative; overflow: hidden;
}
.video-card.featured .video-thumb { height: 300px; }
.video-card:not(.featured) .video-thumb { aspect-ratio: 16/9; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.video-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  z-index: 1;
}
.video-card:hover .video-play-btn { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.08); }
.video-play-icon {
  width: 0; height: 0;
  border-style: solid;
  border-width: 6px 0 6px 12px;
  border-color: transparent transparent transparent rgba(255,255,255,0.7);
  margin-left: 3px;
}
.video-duration {
  position: absolute; bottom: 8px; right: 8px;
  font-size: 10px; font-weight: 500;
  background: rgba(0,0,0,0.7);
  color: rgba(255,255,255,0.6);
  padding: 2px 6px;
  z-index: 1;
}
.video-overlay-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.6));
}
.video-info { padding: 1rem 1rem 1.2rem; }
.video-title { font-family: var(--font-display); color: var(--text); margin-bottom: 4px; line-height: 1.1; }
.video-card.featured .video-title { font-size: 22px; }
.video-card:not(.featured) .video-title { font-size: 16px; }
.video-meta { font-size: 10px; color: var(--muted); }

/* ── PHOTO GRID ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
}
.photo-cell {
  aspect-ratio: 1;
  background: var(--bg3);
  overflow: hidden;
  cursor: pointer;
}
.photo-cell img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.2s; }
.photo-cell:hover img { opacity: 0.7; }

/* ── SIDEBAR LAYOUT ── */
.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 1.5rem;
  padding: 2.5rem;
  background: var(--bg);
}
.sidebar-ad {
  background: var(--bg2);
  border: 1px dashed rgba(255,255,255,0.08);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 1rem; text-align: center; gap: 6px;
  min-height: 300px;
}
.sidebar-ad-label { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.12); }

/* ── NEWSLETTER ── */
#newsletter {
  background: var(--bg3);
  padding: 4rem 2.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.newsletter-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.newsletter-title { font-family: var(--font-display); font-size: 44px; margin-bottom: 0.5rem; }
.newsletter-sub { font-size: 13px; color: var(--muted2); margin-bottom: 2rem; }
.newsletter-form { display: flex; justify-content: center; max-width: 400px; margin: 0 auto; }
.newsletter-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-right: none;
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  outline: none;
}
.newsletter-input::placeholder { color: var(--muted); }
.newsletter-btn {
  background: var(--text); color: #000;
  font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 11px 20px;
  border: none; cursor: pointer;
  white-space: nowrap;
}

/* ── FOOTER ── */
#site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 2.5rem 2.5rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-logo { font-family: var(--font-display); font-size: 20px; letter-spacing: 3px; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.footer-desc { font-size: 12px; color: var(--muted); line-height: 1.6; max-width: 200px; }
.footer-col h5 { font-size: 9px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.footer-col a { display: block; font-size: 12px; color: rgba(255,255,255,0.3); margin-bottom: 7px; transition: color 0.2s; }
.footer-col a:hover { color: rgba(255,255,255,0.7); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.2rem;
  display: flex; justify-content: space-between;
  font-size: 10px; color: rgba(255,255,255,0.15); letter-spacing: 0.5px;
}

/* ── SINGLE POST / JET PROFILE ── */
.single-hero {
  background: var(--bg2);
  padding: 3rem 2.5rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.single-cat { font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }
.single-title { font-family: var(--font-display); font-size: 52px; line-height: 0.95; max-width: 800px; margin-bottom: 1rem; }
.single-meta { font-size: 11px; color: var(--muted); }
.single-content { max-width: 740px; margin: 0 auto; padding: 3rem 2.5rem; }
.single-content p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.single-content h2 { font-family: var(--font-display); font-size: 32px; margin: 2rem 0 1rem; }
.single-content img { width: 100%; margin: 2rem 0; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr; }
  .jets-grid { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .content-sidebar { grid-template-columns: 1fr; }
  .hero-title { font-size: 52px; }
  #primary-nav { display: none; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 40px; }
  .jets-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  #site-header { padding: 0 1.2rem; }
  .site-section { padding: 2rem 1.2rem; }
}
