:root {
  color: #ece7df;
  background: #12100e;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.studio-page {
  background:
    linear-gradient(180deg, rgba(18, 16, 14, 0.92), rgba(18, 16, 14, 0.98)),
    url("/abstractanks/screenshot2.png") center top / cover fixed;
}

.studio-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.studio-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
}

.brand {
  color: #f4c763;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.studio-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.studio-header nav a,
.studio-footer a {
  color: #d7d0c6;
  text-decoration: none;
}

.studio-header nav a:hover,
.studio-footer a:hover {
  color: #f4c763;
}

.studio-intro {
  min-height: 56vh;
  display: grid;
  align-items: center;
  padding: 64px 0 80px;
}

.studio-intro h1,
.legal-content h1 {
  max-width: 760px;
  margin: 10px 0 20px;
  color: #fffdf4;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.95;
}

.lead {
  max-width: 690px;
  color: #d7d0c6;
  font-size: 22px;
  line-height: 1.45;
}

.eyebrow {
  margin: 0;
  color: #7fd2b3;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.studio-section {
  padding: 56px 0 72px;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading h2,
.game-copy h3 {
  margin: 6px 0 0;
  color: #fffdf4;
  font-size: 34px;
}

.game-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 32px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(244, 199, 99, 0.26);
  background: rgba(25, 22, 18, 0.88);
}

.game-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0b0a08;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.game-copy p {
  color: #d7d0c6;
  font-size: 18px;
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button-row a {
  color: #f4c763;
  font-weight: 700;
  text-decoration: none;
}

.primary-link {
  padding: 10px 14px;
  border: 1px solid #f4c763;
  background: rgba(244, 199, 99, 0.08);
}

.studio-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0 42px;
  color: #8f867a;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-content address {
  margin: 36px 0;
  color: #fffdf4;
  font-style: normal;
  line-height: 1.7;
}

.legal-list {
  max-width: 820px;
  padding-left: 22px;
  color: #d7d0c6;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .studio-header,
  .studio-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .studio-intro {
    min-height: 48vh;
    padding: 36px 0 54px;
  }

  .lead {
    font-size: 18px;
  }

  .game-feature {
    grid-template-columns: 1fr;
  }
}
