:root {
  --bg: #090c13;
  --bg-deep: #060910;
  --surface: #111622;
  --surface-soft: #141a27;
  --surface-muted: #1d2432;
  --surface-button: #252c38;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --text-soft: #e6ecf5;
  --text-muted: #9aa5b6;
  --accent: #26bbff;
  --accent-strong: #e11d2f;
  --success: #a7d129;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 10px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top center, rgba(24, 36, 59, 0.35), transparent 36%),
    linear-gradient(180deg, #090c13 0%, #070a12 38%, #080b13 100%);
  line-height: 1.45;
}

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

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

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  color: inherit;
}

.shell {
  width: min(1140px, calc(100% - 48px));
  margin: 0 auto;
}

.shell--mobile {
  width: min(100%, calc(100% - 24px));
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 9, 16, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-desktop {
  display: block;
}

.header-desktop__top,
.header-desktop__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-desktop__top {
  min-height: 68px;
  gap: 24px;
}

.header-desktop__bottom {
  min-height: 56px;
  gap: 24px;
}

.brand-cluster {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand__mark {
  display: inline-flex;
  width: 18px;
  height: 24px;
  color: currentColor;
}

.brand__name {
  font-size: 0.95rem;
}

.brand__name{
  width: 200px;
}

.primary-nav,
.secondary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-nav a,
.secondary-nav a {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.secondary-nav a {
  font-size: 0.95rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  border: 1px solid transparent;
}

.button--small {
  min-height: 34px;
  padding: 0 14px;
  font-size: 0.84rem;
}

.button--quiet {
  background: rgba(255, 255, 255, 0.08);
}

.button--accent {
  background: var(--accent-strong);
  color: #09111a;
}

.button--buy {
  background: var(--accent-strong);
  color: #09111a;
  width: 100%;
  min-height: 46px;
  font-size: 1rem;
}

.button--secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.06);
}

.button--tertiary {
  background: rgba(255, 255, 255, 0.08);
  min-height: 40px;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.button--full {
  width: 100%;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: var(--text-soft);
  border: 1px solid transparent;
}

.icon-button svg {
  width: 18px;
  height: 18px;
}

.icon-button--square {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.search-box {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 240px);
  padding: 0 16px;
  min-height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  color: var(--text-muted);
}

.search-box svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.search-box input::placeholder {
  color: var(--text-muted);
}

.header-mobile {
  display: none;
}

.menu-close-icon {
  display: none;
}

.mobile-panel {
  max-height: 0;
  overflow: hidden;
  border-top: 1px solid transparent;
}

.mobile-panel.is-open {
  max-height: 320px;
  border-top-color: rgba(255, 255, 255, 0.06);
}

.mobile-panel__inner {
  padding: 14px 0 18px;
}

.mobile-nav {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.mobile-nav a {
  padding: 12px 4px;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.page-shell {
  padding-top: 32px;
  padding-bottom: 56px;
}

.section-head h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.content-tabs {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

.content-tabs a {
  position: relative;
  color: var(--text-soft);
  font-size: 0.94rem;
  padding-bottom: 10px;
}

.content-tabs a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 40px;
  align-items: start;
  margin-top: 20px;
}

.hero-grid__left,
.hero-grid__right {
  min-width: 0;
}

.media-card {
  overflow: hidden;
  background: #111722;
}

.media-card img {
  
  object-fit: cover;
}

.summary-text {
  margin: 20px 0 24px;
  color: var(--text-soft);
  font-size: 1rem;
  max-width: 64ch;
}

.tag-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.tag-group h2 {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--text-soft);
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

.notice-card {
  padding: 20px 22px;
  border-left: 3px solid var(--accent-strong);
}

.notice-card h2 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
}

.notice-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.notice-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-grid__right {
  display: flex;
  justify-content: flex-end;
}

.purchase-panel {
  width: 100%;
  max-width: 368px;
}

.mobile-cover {
  display: none;
  overflow: hidden;
  margin-bottom: 16px;
}

.mobile-cover img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.brand-lockup {
  width: 172px;
  margin: 2px 0 18px;
}

.rating-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
}

.pegi-badge {
  flex: 0 0 auto;
  width: 30px;
  height: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--success);
  border-radius: 2px;
  color: #0f1a04;
}

.pegi-badge strong {
  font-size: 1rem;
  line-height: 1;
}

.pegi-badge span {
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.rating-copy {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-soft);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.label-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 8px;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.label-pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.58rem;
}

.price-stack {
  margin-top: 14px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.discount-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(57, 194, 255, 0.18);
  color: var(--accent-strong);
  font-size: 0.72rem;
  font-weight: 700;
}

.old-price {
  color: var(--text-muted);
  font-size: 0.84rem;
  text-decoration: line-through;
}

.current-price {
  color: var(--text);
  font-size: 1.05rem;
}

.sale-note {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.cta-column {
  margin-top: 16px;
}

.cta-buy-row {
  display: flex;
  gap: 8px;
}

.cta-buy-row .button--buy {
  flex: 1 1 auto;
}

.cta-column .button--secondary {
  margin-top: 10px;
}

.details-list {
  margin: 18px 0 0;
  padding: 0;
}

.details-list > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.details-list > div:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.details-list dt {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.details-list dd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: right;
}

.details-list__icon,
.windows-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: var(--accent-strong);
}

.action-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.welcome-section,
.follow-section,
.requirements-section {
  margin-top: 52px;
}

.welcome-section__inner {
  max-width: 760px;
}

.welcome-section h2,
.follow-section h2,
.requirements-section h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.banner-card {
  overflow: hidden;
}

.banner-card img {
  aspect-ratio: 16 / 4.2;
  object-fit: cover;
}

.welcome-copy {
  margin-top: 14px;
  max-width: 700px;
}

.welcome-copy h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.welcome-copy p {
  margin: 0;
  color: var(--text-muted);
}

.welcome-copy a {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent-strong);
  font-weight: 600;
}

.follow-section h2 {
  font-size: 1.2rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.follow-card {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.04));
}

.follow-card__icon {
  width: 20px;
  height: 20px;
  color: var(--text-soft);
}

.requirements-section h2 {
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.requirements-card {
  padding: 28px 30px;
}

.requirements-card__platform {
  color: var(--text-soft);
  font-size: 0.98rem;
  font-weight: 600;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
  margin-top: 26px;
}

.requirements-column h3,
.requirements-extra h3 {
  margin: 0 0 16px;
  font-size: 0.98rem;
}

.requirements-column dl,
.requirements-extra {
  margin: 0;
}

.requirements-column dl {
  display: grid;
  gap: 14px;
}

.requirements-column dl div {
  display: grid;
  gap: 4px;
}

.requirements-column dt {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.requirements-column dd {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.requirements-extra {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.requirements-extra p,
.legal-copy p,
.lowest-price-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.legal-copy {
  margin-top: 28px;
}

.lowest-price-note {
  margin-top: 12px;
}

.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(7, 10, 18, 0.98);
}

.footer-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-topline h2 {
  margin: 0;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links a {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: var(--text-soft);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  padding-top: 22px;
}

.footer-columns h3 {
  margin: 0 0 14px;
  font-size: 0.96rem;
}

.footer-columns ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-columns a,
.footer-accordion__panel a,
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-accordion {
  display: none;
  padding-top: 10px;
}

.footer-accordion__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-accordion__trigger {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-soft);
}

.footer-accordion__trigger::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--text-muted);
}

.footer-accordion__trigger.is-open::after {
  content: "−";
}

.footer-accordion__panel {
  display: none;
  padding: 0 0 16px;
}

.footer-accordion__panel.is-open {
  display: grid;
  gap: 10px;
}

.footer-legal {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 26px;
  margin-left: auto;
  padding: 0 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .hero-grid {
    gap: 32px;
  }

  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 28px;
  }
}

@media (max-width: 860px) {
  .header-desktop {
    display: none;
  }

  .header-mobile {
    display: block;
  }

  .header-mobile__top {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .brand--mobile {
    gap: 8px;
  }

  .brand--mobile .brand__name {
    font-size: 0.88rem;
  }

  .header-mobile__actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .icon-button--mobile {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .hero-grid__right {
    /*order: -1;
    justify-content: stretch;*/
    margin: 0 auto;

  }

  .purchase-panel {
    max-width: none;
  }

  .mobile-cover {
    display: block;
  }



  .tag-layout {
    gap: 18px;
  }

  .welcome-section h2 {
    text-align: center;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-columns {
    display: none;
  }

  .footer-accordion {
    display: block;
  }
}

@media (max-width: 640px) {
  .shell,
  .site-footer__inner {
    width: min(100%, calc(100% - 20px));
  }

  .page-shell {
    padding-top: 18px;
    padding-bottom: 40px;
  }

  .section-head h1 {
    font-size: 1.8rem;
   /* max-width: 13ch;*/
  }

  .content-tabs {
    gap: 16px;
    margin-top: 10px;
  }

  .content-tabs a {
    font-size: 0.88rem;
  }

  .rating-card {
    padding: 12px 14px;
  }

  .details-list > div {
    padding: 12px 0;
  }

  .details-list dt,
  .details-list dd {
    font-size: 0.84rem;
  }

  .summary-text,
  .notice-card p,
  .welcome-copy p,
  .requirements-extra p,
  .legal-copy p,
  .lowest-price-note,
  .footer-columns a,
  .footer-accordion__panel a,
  .footer-links a {
    font-size: 0.84rem;
  }

  .tag-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .chip {
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.74rem;
  }

  .welcome-section,
  .follow-section,
  .requirements-section {
    margin-top: 40px;
  }

  .welcome-section h2 {
    font-size: 2.05rem;
  }

  .follow-card {
    min-height: 68px;
  }

  .requirements-section h2,
  .follow-section h2 {
    font-size: 1.05rem;
  }

  .requirements-card {
    padding: 18px 16px;
  }

  .footer-topline {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .back-to-top {
    margin-left: 0;
  }
}
