:root {
  --color-bg: #000000;
  --color-surface: #1A1A1F;
  --color-surface2: #101014;
  --color-accent: #C1121F;
  --color-teal: #0E6B6B;
  --color-white: #F5F5F5;
  --color-muted: #888890;
  --font-headline: 'Trajan Pro 3', 'TrajanPro3', serif;
  --font-body: 'Switzer', sans-serif;
  --section-gap: 140px;
  --section-gap-mob: 80px;
  --container-max: 1200px;
  --container-pad: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  text-transform: uppercase;
}

body > * {
  position: relative;
  z-index: 1;
}

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

video {
  display: block;
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section-gap {
  margin-top: var(--section-gap);
}

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

.ph {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 2px dashed #ccc;
}

.ph-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: #555;
  text-transform: uppercase;
  font-weight: 600;
}

.ph-sub {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: #999;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 14px 40px;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  transform: scale(1.04);
  box-shadow: 0 0 28px rgba(193, 18, 31, 0.55);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-white);
  border: 1px solid rgba(245, 245, 245, 0.3);
}

.btn-secondary:hover {
  border-color: var(--color-white);
  transform: scale(1.04);
}

.section-label {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-headline);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-body,
.body-text {
  color: rgba(245, 245, 245, 0.65);
  font-size: 1rem;
  line-height: 1.75;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-brand-link {
  display: flex;
  align-items: center;
}

.nav-brand-logo-cvn {
  height: 32px;
  width: auto;
}

.nav-brand-divider {
  width: 1px;
  height: 24px;
  background: rgba(245, 245, 245, 0.2);
  flex-shrink: 0;
}

.nav-brand-logo-wl {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-steam-cta {
  margin-left: auto;
}

.btn-steam {
  display: inline-block;
  font-family: var(--font-headline);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  padding: 10px 22px;
  background-color: var(--color-teal);
  color: var(--color-white);
  border-radius: 2px;
  transition: transform 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn-steam:hover {
  background-color: #0d7f7f;
  transform: scale(1.03);
}

.btn-steam-lg {
  font-size: 1.05rem;
  padding: 15px 44px;
}

.embed-video-16x9 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}

.embed-video-16x9 video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.embed-video-4x3 {
  position: relative;
  width: 100%;
  padding-top: 75%;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}

.embed-video-4x3 img,
.embed-video-4x3 video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.cover-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rating-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.footer-logo-img {
  height: 32px;
  width: auto;
}

.footer-logo-img[alt="KIIROO"] {
  opacity: 0.75;
  transform: scale(0.8);
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 24px;
  background: rgba(26, 26, 31, 0.98);
  border-top: 1px solid rgba(245, 245, 245, 0.1);
}

.cookie-consent-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-text {
  margin: 0;
  flex: 1;
  min-width: 240px;
  font-size: 0.88rem;
  color: rgba(245, 245, 245, 0.75);
  line-height: 1.5;
}

.cookie-consent-text a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-consent-btn {
  font-family: var(--font-headline);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  padding: 10px 28px;
  border-radius: 2px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.cookie-consent-btn-primary {
  background: var(--color-teal);
  color: var(--color-white);
  border: none;
}

.cookie-consent-btn-primary:hover {
  background: #0d7f7f;
}

.cookie-consent-btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(245, 245, 245, 0.3);
}

.cookie-consent-btn-secondary:hover {
  border-color: var(--color-white);
}

@media (max-width: 640px) {
  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-actions {
    justify-content: stretch;
  }

  .cookie-consent-btn {
    flex: 1;
    text-align: center;
  }
}