:root {
  --bg: #0f0f10;
  --card: #141517;
  --ink: #f7f7f8;
  --muted: #b8c1cc;
  --accent: #ffb703;
  --accent-ink: #14213d;
  --link: #8ecae6;
  --ok: #06d6a0;
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);
  --radius: 18px;
  --pad: 1.25rem;
  --max: 1100px
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font: 16px/1.6 Montserrat, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif
}

a {
  color: var(--link)
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

.wrap {
  max-width: var(--max);
  margin: auto;
  padding: clamp(12px, 2vw, 24px)
}

/* Header/Banner */
header {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(90deg, #ff7b00, #ffb703 60%, #ffd166);
  box-shadow: var(--shadow)
}

.banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  align-items: center
}

.banner .copy {
  padding: clamp(16px, 3vw, 32px)
}

h1 {
  font-family: Bangers, cursive;
  font-weight: 400;
  letter-spacing: .5px;
  font-size: clamp(36px, 6vw, 64px);
  margin: .25em 0 .1em
}

.tag {
  font-weight: 700;
  font-size: clamp(16px, 2.4vw, 22px);
  color: var(--accent-ink)
}

.cta {
  margin-top: 1rem;
  display: inline-block;
  background: var(--accent-ink);
  color: #fff;
  padding: .8rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700
}

.cta:hover {
  filter: brightness(1.2)
}

/* SIMPLE FLOW LAYOUT (inline, no sidebar) */
main {
  display: block;
  margin-top: clamp(16px, 2vw, 28px)
}

article {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(16px, 3vw, 28px);
  margin-bottom: clamp(16px, 2vw, 28px)
}

h2 {
  font-weight: 800;
  font-size: clamp(20px, 2.6vw, 30px);
  margin: .2em 0 .2em
}

h3 {
  margin-top: 0
}

.muted {
  color: var(--muted)
}

.pill {
  display: inline-block;
  background: #1e1f22;
  color: var(--muted);
  padding: .25rem .6rem;
  border-radius: 999px;
  font-size: .85rem
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem
}

.card {
  background: #17181b;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #222
}

.card .body {
  padding: .8rem 1rem
}

/* Make the three 'What's New & Exciting!' images the same size */
.whats-new-row img {
  width: 100%;
  aspect-ratio: 4 / 3;   /* or 3 / 2 if you prefer a wider crop */
  object-fit: cover;      /* crop to fit while filling the box */
  display: block;
}


nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap
}

nav a {
  display: inline-block;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: #1a1b1e;
  text-decoration: none
}

nav a:hover {
  background: #202226
}

footer {
  color: var(--muted);
  padding: 2rem 0
}

/* “Highlight” cards to replace the old sidebar boxes */
.highlight {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;
  align-items: start
}

.highlight img {
  border-radius: 10px
}

.highlight h3 {
  margin: .2rem 0 0
}

/* Responsive */
@media (max-width:950px) {
  .banner {
    grid-template-columns: 1fr
  }

  .grid3 {
    grid-template-columns: 1fr
  }

  .highlight {
    grid-template-columns: 1fr
  }
}