
:root {
  --bg-color: #08080a;
  --bg-card: rgba(18, 18, 24, 0.8);
  --border-color: rgba(255, 255, 255, 0.12);
  --text-main: #f5f5f8;
  --text-muted: #a0a0b0;
  --accent-gold: #e5b94c;
  --accent-neon: #ff2a5f;
  --accent-cyan: #00f0ff;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: var(--bg-color); color: var(--text-main); font-family: var(--font-family); line-height: 1.6; overflow-x: hidden; }
.cinematic-backdrop { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -2; overflow: hidden; background: radial-gradient(circle at 50% 30%, #161224 0%, #08080a 80%); }
.bg-video { position: absolute; top: 50%; left: 50%; min-width: 100%; min-height: 100%; width: auto; height: auto; transform: translate(-50%, -50%); object-fit: cover; opacity: 0.4; filter: saturate(1.2) contrast(1.1) brightness(0.8); }
.noise-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: radial-gradient(circle, transparent 30%, rgba(8, 8, 10, 0.88) 95%); pointer-events: none; }
.nav-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; padding: 1.25rem 2.5rem; display: flex; justify-content: space-between; align-items: center; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); background: rgba(8, 8, 10, 0.65); border-bottom: 1px solid var(--border-color); }
.brand-logo { font-size: 1.4rem; font-weight: 900; letter-spacing: 0.25em; color: var(--text-main); text-decoration: none; text-transform: uppercase; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s ease, transform 0.2s ease; }
.nav-links a:hover { color: var(--accent-gold); transform: translateY(-1px); }
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 8rem 1.5rem 4rem; position: relative; }
.hero-badge { display: inline-block; padding: 0.35rem 1rem; border-radius: 50px; background: rgba(229, 185, 76, 0.12); border: 1px solid rgba(229, 185, 76, 0.3); color: var(--accent-gold); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-title { font-size: clamp(2.75rem, 8vw, 6rem); font-weight: 900; letter-spacing: -0.02em; line-height: 1.05; margin-bottom: 1.5rem; text-transform: uppercase; background: linear-gradient(135deg, #ffffff 0%, #b0b0c0 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-description { max-width: 680px; color: var(--text-muted); font-size: 1.2rem; margin-bottom: 2.5rem; font-weight: 400; }
.btn-group { display: flex; gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
.btn { padding: 0.95rem 2rem; border-radius: 4px; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em; text-decoration: none; text-transform: uppercase; transition: all 0.25s ease; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-primary { background: var(--text-main); color: var(--bg-color); border: 1px solid var(--text-main); }
.btn-primary:hover { background: #ffffff; box-shadow: 0 0 25px rgba(255, 255, 255, 0.45); transform: translateY(-2px); }
.btn-outline { background: rgba(255, 255, 255, 0.06); color: var(--text-main); border: 1px solid var(--border-color); backdrop-filter: blur(10px); }
.btn-outline:hover { background: rgba(255, 255, 255, 0.15); border-color: rgba(255, 255, 255, 0.35); transform: translateY(-2px); }
.section { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 3.5rem; text-align: center; }
.section-title { font-size: 2.25rem; font-weight: 800; letter-spacing: -0.01em; margin-bottom: 0.5rem; text-transform: uppercase; }
.section-subtitle { color: var(--text-muted); font-size: 1rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 8px; padding: 2.25rem; backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }
.card:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.3); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6); }
.card-title { font-size: 1.35rem; font-weight: 800; margin-bottom: 0.85rem; }
.card-text { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1.5rem; }
.media-portrait { width: 100%; border-radius: 6px; margin-bottom: 1.25rem; aspect-ratio: 16/9; object-fit: cover; border: 1px solid var(--border-color); }
footer { padding: 4rem 2rem 2.5rem; border-top: 1px solid var(--border-color); background: rgba(6, 6, 8, 0.95); text-align: center; color: var(--text-muted); font-size: 0.85rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-weight: 500; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--text-main); }
@media (max-width: 768px) { .nav-header { padding: 1rem 1.25rem; } .nav-links { display: none; } .section { padding: 4rem 1.25rem; } .hero { padding: 6rem 1.25rem 3rem; } }

/* Timeline Styles */
.timeline-section {
  padding: 4rem 2rem 8rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline {
  position: relative;
  border-left: 2px solid rgba(255, 255, 255, 0.15);
  margin-left: 1rem;
  padding-left: 3rem;
}

.timeline-item {
  margin-bottom: 5rem;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3.45rem;
  top: 0.2rem;
  width: 1rem;
  height: 1rem;
  background: var(--bg-color);
  border: 2px solid var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(229, 185, 76, 0.5);
}

.timeline-date {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
  font-family: 'Courier New', Courier, monospace;
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.timeline-content:hover {
  transform: translateX(10px);
  border-color: rgba(229, 185, 76, 0.4);
}

.timeline-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.timeline-image {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 21/9;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  filter: grayscale(40%) contrast(1.1);
  transition: filter 0.4s ease;
}

.timeline-content:hover .timeline-image {
  filter: grayscale(0%) contrast(1.1);
}

@media (max-width: 768px) {
  .timeline { margin-left: 0; padding-left: 2rem; }
  .timeline-item::before { left: -2.45rem; }
  .timeline-content { padding: 1.5rem; }
  .timeline-content h3 { font-size: 1.5rem; }
}

/* Accessibility & Performance Fixes */
:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: flex !important;
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
}
