:root {
  --bg: #06080f;
  --bg2: #0f1a2b;
  --panel: #131f34;
  --panel-2: #1a2d49;
  --txt: #eef4ff;
  --muted: #a7b8d6;
  --neon-a: #ff4fd8;
  --neon-b: #2dffca;
  --neon-c: #ffd24a;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 20px 42px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--txt);
  background:
    radial-gradient(circle at 10% 10%, rgba(45, 255, 202, 0.13), transparent 34%),
    radial-gradient(circle at 90% 0%, rgba(255, 79, 216, 0.16), transparent 32%),
    linear-gradient(160deg, var(--bg) 0%, var(--bg2) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  height: auto;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(6, 8, 15, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.topbar .container {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: 1px;
  color: var(--neon-b);
}

.nav {
  display: flex;
  gap: 16px;
  font-weight: 700;
  color: #d8e6ff;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--neon-a);
}

.hero {
  padding: 64px 0 36px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 30px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 74, 0.2), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.chip {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--neon-c), #ffe89b);
  color: #201500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 900;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  line-height: 1;
  letter-spacing: 0.4px;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4.3rem);
  margin: 14px 0 12px;
}

h2 {
  font-size: clamp(1.6rem, 4.1vw, 2.8rem);
  margin-bottom: 10px;
}

h3 {
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  margin-bottom: 8px;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.actions {
  margin-top: 20px;
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}

.btn {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 800;
}

.btn.primary {
  color: #160329;
  background: linear-gradient(90deg, var(--neon-a), #ffa8ea);
  box-shadow: 0 10px 22px rgba(255, 79, 216, 0.28);
}

.btn.secondary {
  color: #032118;
  background: linear-gradient(90deg, var(--neon-b), #9dffe7);
  box-shadow: 0 10px 22px rgba(45, 255, 202, 0.24);
}

.hero-media {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-media img {
  min-height: 360px;
  object-fit: cover;
}

.section {
  padding: 52px 0;
}

.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255, 79, 216, 0.12), rgba(45, 255, 202, 0.12));
}

.ticker .container {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: #f7ddff;
  font-weight: 700;
}

.layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 14px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.card.alt {
  background: linear-gradient(145deg, rgba(45, 255, 202, 0.14), rgba(255, 79, 216, 0.12));
}

.list {
  display: grid;
  gap: 10px;
}

.list div {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--neon-c);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(14, 20, 33, 0.74);
  color: #fff5ca;
  font-weight: 600;
}

.timeline {
  display: grid;
  gap: 11px;
}

.event {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  background: var(--panel-2);
}

.event strong {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--neon-b);
  font-weight: 800;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 22px 0 34px;
  color: #d8cfee;
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero-grid,
  .layout {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    min-height: 240px;
  }
}
