:root {
  --bg: #111111;
  --panel: #222222;
  --panel-2: #2a2a2a;
  --panel-3: #444444;
  --text: #f4efe7;
  --muted: #c9c1b6;
  --orange: #ffa500;
  --orange-soft: #ffbc42;
  --red: #440000;
  --red-soft: #6a1717;
  --line: rgba(255, 165, 0, 0.24);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.34);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 165, 0, 0.12), transparent 22%),
    radial-gradient(circle at 8% 78%, rgba(104, 0, 0, 0.32), transparent 18%),
    linear-gradient(180deg, #171717, #111111 32%, #0d0d0d 100%);
}

img {
  max-width: 100%;
  display: block;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(20, 20, 20, 0.84);
  border: 1px solid var(--line);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand-badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--orange), #d68500);
  color: #171717;
  font-weight: 900;
  font-family: "Baloo 2", sans-serif;
  font-size: 1.25rem;
}

.brand-text strong,
.brand-text em {
  display: block;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.88rem;
}

.nav {
  display: flex;
  gap: 22px;
}

.nav a,
.footer a,
.content-card a {
  color: var(--text);
  text-decoration: none;
}

.nav a:hover,
.footer a:hover,
.content-card a:hover {
  color: var(--orange-soft);
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding: 72px 0 44px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 165, 0, 0.12);
  border: 1px solid rgba(255, 165, 0, 0.26);
  color: var(--orange-soft);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1,
h2 {
  font-family: "Baloo 2", sans-serif;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.9rem);
  max-width: 9ch;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.3rem);
}

h3 {
  font-size: 1.35rem;
}

.accent {
  color: var(--orange);
}

.lead,
p,
li {
  line-height: 1.7;
  color: var(--muted);
}

.lead {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: linear-gradient(145deg, var(--orange), #d98700);
  color: #161616;
}

.button.secondary,
.ghost-button {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.tagline-box {
  margin-top: 22px;
  padding: 14px 16px;
  background: rgba(68, 0, 0, 0.24);
  border: 1px solid rgba(255, 165, 0, 0.18);
  border-radius: 16px;
}

.tagline-label {
  display: block;
  margin-bottom: 4px;
  color: var(--orange-soft);
  font-size: 0.86rem;
}

/* HERO SLIDESHOW */

.hero-art {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  justify-self: center;
  flex-shrink: 0;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, #2f2f31, #1a1a1c);
  border: 1px solid rgba(255, 170, 25, 0.16);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slideshow-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom right, rgba(255, 140, 0, 0.08), rgba(120, 0, 0, 0.16)),
    linear-gradient(to top, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02));
  pointer-events: none;
  z-index: 2;
}

/* TICKER */

.ticker {
  overflow: hidden;
  margin: 8px 0 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.ticker-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding: 14px 0;
  color: var(--orange-soft);
  font-weight: 800;
  animation: scroll 24s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* GENERAL SECTIONS */

.section {
  padding: 60px 0;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading.left {
  margin-bottom: 14px;
}

.card-grid,
.feature-grid,
.split-section,
.cta-panel {
  display: grid;
  gap: 22px;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-card,
.fact-panel,
.cta-panel {
  padding: 24px;
  background: linear-gradient(180deg, rgba(42, 42, 42, 0.95), rgba(26, 26, 26, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-card {
  position: relative;
  overflow: hidden;
}

.content-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), rgba(255, 165, 0, 0));
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  border-radius: 18px;
  font-size: 1.6rem;
  background: rgba(255, 165, 0, 0.12);
}

.split-section {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.fact-panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

/* FEATURED CARDS */

.feature-grid {
  grid-template-columns: 1.25fr 1fr 1fr;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  background-color: #1c1c1c;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card.large {
  min-height: 300px;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.22)
  );
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 120, 0, 0.1);
}

.card-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 24px;
  color: white;
}

.film-card {
  background-image: url("images/film_window00.jpg");
}

.music-card {
  background-image: url("images/song_window00.jpg");
}

.game-card {
  background-image: url("images/game_window00.jpg");
}

.pill {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 165, 0, 0.12);
  color: var(--orange-soft);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
}

/* CTA */

.cta-panel {
  grid-template-columns: 1fr auto;
  align-items: center;
  background:
    radial-gradient(circle at right center, rgba(255, 165, 0, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(68, 0, 0, 0.34), rgba(24, 24, 24, 0.95));
}

/* FOOTER */

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

/* RESPONSIVE */

@media (max-width: 920px) {
  .hero,
  .split-section,
  .feature-grid,
  .card-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-art {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
  }

  .topbar {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px;
  }

  .nav.open {
    display: flex;
  }

  h1 {
    max-width: 100%;
  }

  .footer {
    flex-direction: column;
  }

  .footer-links {
    text-align: left;
  }
}