:root {
  --bg: #0d0b12;
  --bg-soft: #151020;
  --panel: rgba(29, 22, 40, 0.78);
  --panel-strong: #21172e;
  --text: #f6e9d8;
  --muted: #b9a9bd;
  --line: rgba(255, 255, 255, 0.12);
  --gold: #ffc857;
  --orange: #ff7a3d;
  --red: #ff4d5e;
  --green: #8be36b;
  --blue: #73d2de;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 61, 0.18), transparent 34rem),
    radial-gradient(circle at top right, rgba(115, 210, 222, 0.11), transparent 26rem),
    linear-gradient(180deg, #0d0b12 0%, #130d1c 50%, #0d0b12 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }

.container {
  width: min(calc(100% - 36px), var(--container));
  margin: 0 auto;
}

.section-pad { padding: 92px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(18px, 4vw, 52px);
  background: rgba(13, 11, 18, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 10px 32px rgba(255, 122, 61, 0.35);
}
.brand-text { font-size: 1.05rem; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--text); }

.lang-switch {
  display: flex;
  gap: 6px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.lang-btn {
  border: 0;
  color: var(--muted);
  background: transparent;
  padding: 7px 11px;
  border-radius: 999px;
  font-weight: 800;
}
.lang-btn.active {
  color: #170d10;
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.8;
}
.hero-bg-one {
  width: 340px;
  height: 340px;
  background: rgba(255, 122, 61, 0.16);
  left: -120px;
  top: 20%;
}
.hero-bg-two {
  width: 420px;
  height: 420px;
  background: rgba(115, 210, 222, 0.10);
  right: -150px;
  bottom: 10%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 54px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 22px;
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}
h3 { letter-spacing: -0.03em; }
.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #1a0d0d;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 16px 45px rgba(255, 122, 61, 0.28);
}
.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
  max-width: 560px;
}
.hero-stats div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
}
.hero-stats strong {
  display: block;
  font-size: 1.6rem;
  color: var(--text);
  letter-spacing: -0.06em;
}
.hero-stats span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-card {
  padding: 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.mock-window {
  overflow: hidden;
  border-radius: 22px;
  background: #110c18;
  border: 1px solid rgba(255,255,255,0.12);
}
.window-top {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  font-size: 0.84rem;
}
.window-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff625f;
}
.window-top span:nth-child(2) { background: #ffbd2e; }
.window-top span:nth-child(3) { background: #28c840; margin-right: 8px; }
.battle-illustration {
  position: relative;
  height: 410px;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 200, 87, 0.13), transparent 8rem),
    linear-gradient(180deg, #171124, #24172a 58%, #1d1320 59%, #0e0a12);
  overflow: hidden;
}
.battle-illustration:after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: 0;
  height: 120px;
  background: repeating-linear-gradient(90deg, #211522 0 28px, #271a27 28px 56px);
  transform: skewY(-2deg);
}
.moon {
  position: absolute;
  right: 70px;
  top: 52px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f8d98a;
  box-shadow: 0 0 45px rgba(248,217,138,0.45);
}
.castle-shape {
  position: absolute;
  left: 65px;
  bottom: 62px;
  width: 260px;
  height: 190px;
  background: #3a3244;
  border: 4px solid #62566e;
  z-index: 2;
  box-shadow: inset 0 0 0 8px rgba(0,0,0,0.12), 0 22px 40px rgba(0,0,0,0.3);
}
.castle-shape:before {
  content: "";
  position: absolute;
  top: -28px;
  left: -4px;
  width: calc(100% + 8px);
  height: 28px;
  background: repeating-linear-gradient(90deg, #62566e 0 28px, transparent 28px 43px);
}
.tower {
  position: absolute;
  bottom: -4px;
  width: 72px;
  height: 240px;
  background: #464052;
  border: 4px solid #6c6078;
}
.tower:before {
  content: "";
  position: absolute;
  top: -30px;
  left: -4px;
  width: calc(100% + 8px);
  height: 30px;
  background: repeating-linear-gradient(90deg, #6c6078 0 21px, transparent 21px 34px);
}
.tower.left { left: -45px; }
.tower.right { right: -45px; }
.gate {
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 78px;
  height: 96px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #5b351e, #8a552d, #5b351e);
  border: 4px solid #221318;
  border-radius: 42px 42px 0 0;
}
.bell {
  position: absolute;
  left: 197px;
  top: 112px;
  font-size: 38px;
  z-index: 4;
  animation: ring 1.7s infinite ease-in-out;
}
.goblin {
  position: absolute;
  z-index: 3;
  font-size: 32px;
  filter: drop-shadow(0 8px 9px rgba(0,0,0,0.35));
}
.g1 { right: 82px; bottom: 105px; animation: march 3.6s infinite linear; }
.g2 { right: 155px; bottom: 70px; animation: march 3s infinite linear; }
.g3 { right: 235px; bottom: 118px; animation: march 4.2s infinite linear; }
.bolt {
  position: absolute;
  width: 58px;
  height: 4px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  z-index: 4;
}
.b1 { left: 300px; bottom: 184px; transform: rotate(-10deg); animation: shoot 1.1s infinite linear; }
.b2 { left: 275px; bottom: 120px; transform: rotate(6deg); animation: shoot 1.45s infinite linear; }
.fire {
  position: absolute;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe16a 0 25%, #ff7a3d 26% 62%, transparent 63%);
  filter: blur(0.2px);
  opacity: 0.9;
  animation: flare 1.1s infinite ease-in-out;
}
.f1 { right: 115px; bottom: 95px; }
.f2 { right: 260px; bottom: 150px; animation-delay: 0.4s; }
.pulse-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}
.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(139, 227, 107, 0.13);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-head p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.demo-section { position: relative; }
.game-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.06);
  box-shadow: var(--shadow);
}
.game-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.18);
}
.game-title {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.game-controls-text {
  color: var(--muted);
  font-size: 0.88rem;
  text-align: right;
}
.canvas-wrap {
  position: relative;
  background: #0b0910;
}
#siegeGame {
  display: block;
  width: 100%;
  max-height: 70vh;
  aspect-ratio: 16 / 9;
  background: #120f19;
  cursor: crosshair;
}
.game-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle, rgba(13,11,18,0.35), rgba(13,11,18,0.72));
}
.game-overlay.hidden { display: none; }
.overlay-card {
  width: min(420px, 100%);
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(24, 17, 32, 0.92);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow);
}
.overlay-card h3 {
  margin-bottom: 10px;
  font-size: 2rem;
}
.overlay-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.upgrade-grid {
  display: grid;
  gap: 10px;
  margin: 18px 0 20px;
  text-align: left;
}
.upgrade-choice {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 3px 12px;
  width: 100%;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.upgrade-choice:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 200, 87, 0.55);
  background: rgba(255, 200, 87, 0.11);
}
.upgrade-choice span {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 200, 87, 0.14);
  font-size: 1.35rem;
}
.upgrade-choice b {
  align-self: end;
  letter-spacing: -0.02em;
}
.upgrade-choice small {
  color: var(--muted);
  line-height: 1.45;
}
.game-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}
.action-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  min-height: 92px;
  border: 0;
  color: var(--text);
  background: rgba(20, 14, 28, 0.96);
  transition: background 160ms ease, transform 160ms ease;
}
.action-card:hover { background: rgba(39, 27, 53, 0.98); }
.action-card:active { transform: scale(0.99); }
.action-card span { font-size: 1.55rem; }
.action-card small { color: var(--muted); }
.action-card.danger b { color: var(--gold); }

.features {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.035), transparent);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card {
  min-height: 250px;
  padding: 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
.feature-card .icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: rgba(255, 200, 87, 0.13);
  font-size: 1.55rem;
}
.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}
.feature-card p {
  color: var(--muted);
  line-height: 1.65;
}

.roadmap-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}
.timeline {
  padding: 12px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.055);
}
.timeline-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 18px;
}
.timeline-item + .timeline-item { border-top: 1px solid rgba(255,255,255,0.08); }
.timeline-item span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--gold);
  background: rgba(255, 200, 87, 0.12);
  font-weight: 900;
}
.timeline-item.active {
  background: linear-gradient(135deg, rgba(255, 200, 87, 0.12), rgba(255, 122, 61, 0.08));
}
.timeline-item h3 { margin-bottom: 8px; }
.timeline-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.playtest-card {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 36px;
  align-items: center;
  padding: clamp(24px, 5vw, 52px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.14);
  background:
    radial-gradient(circle at top right, rgba(255, 200, 87, 0.14), transparent 18rem),
    linear-gradient(135deg, rgba(255,255,255,0.095), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
}
.playtest-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}
.signup-form {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(0,0,0,0.18);
  border: 1px solid var(--line);
}
.signup-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}
.signup-form input,
.signup-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.13);
  color: var(--text);
  background: rgba(255,255,255,0.07);
  outline: none;
}
.signup-form input:focus,
.signup-form select:focus {
  border-color: rgba(255, 200, 87, 0.6);
}
.signup-form option { color: #120c18; }
.signup-form .btn { width: 100%; border: 0; margin-top: 4px; }
.form-message {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--green) !important;
  font-size: 0.9rem;
}

.site-footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy {
  display: grid !important;
  gap: 5px !important;
}
.footer-inner p { margin-bottom: 0; }
.studio-credit {
  color: var(--text);
  font-weight: 800;
}
.studio-credit a {
  color: var(--gold);
}
.footer-inner > div:last-child {
  display: flex;
  gap: 18px;
}
.footer-inner a:hover { color: var(--text); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal 700ms ease forwards;
}
.delay-1 { animation-delay: 120ms; }
.delay-2 { animation-delay: 240ms; }

@keyframes reveal { to { opacity: 1; transform: translateY(0); } }
@keyframes ring {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(9deg); }
}
@keyframes march {
  from { transform: translateX(40px); }
  to { transform: translateX(-80px); }
}
@keyframes shoot {
  from { transform: translateX(0) rotate(-8deg); opacity: 0; }
  12% { opacity: 1; }
  to { transform: translateX(220px) rotate(-8deg); opacity: 0; }
}
@keyframes flare {
  0%, 100% { transform: scale(0.78); opacity: 0.65; }
  50% { transform: scale(1.08); opacity: 1; }
}

@media (max-width: 980px) {
  .main-nav { display: none; }
  .hero-grid, .roadmap-grid, .playtest-card { grid-template-columns: 1fr; }
  .hero-card { order: -1; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .game-toolbar { align-items: flex-start; flex-direction: column; }
  .game-controls-text { text-align: left; }
}

@media (max-width: 680px) {
  .section-pad { padding: 68px 0; }
  .site-header { padding-inline: 14px; }
  .brand-text { display: none; }
  h1 { font-size: clamp(2.8rem, 15vw, 4rem); }
  .hero-stats { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .game-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .action-card { min-height: 86px; }
  .battle-illustration { height: 310px; }
  .castle-shape { transform: scale(0.78); transform-origin: left bottom; }
  .goblin { font-size: 26px; }
  .footer-inner { flex-direction: column; }
}

.studio-line {
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 800;
}
.studio-line a,
.studio-url a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(255, 200, 87, 0.38);
  text-underline-offset: 4px;
}
.updates {
  position: relative;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 200, 87, 0.08), transparent 22rem),
    linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0.055), rgba(255,255,255,0.025));
}
.update-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.update-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.13);
  background: linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.045));
  box-shadow: 0 16px 42px rgba(0,0,0,0.2);
}
.update-card:before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--orange), var(--red));
}
.patch-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 30px;
  margin-bottom: 20px;
  border-radius: 999px;
  color: #170d10;
  background: var(--gold);
  font-weight: 950;
  font-size: 0.82rem;
}
.update-card h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}
.update-card p,
.update-card li {
  color: var(--muted);
  line-height: 1.65;
}
.update-card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}
.howto-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}
.tip-list {
  display: grid;
  gap: 14px;
}
.tip-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.06);
}
.tip-item span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--gold);
  background: rgba(255, 200, 87, 0.12);
  font-weight: 950;
}
.tip-item h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}
.tip-item p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}
.studio-url {
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .update-grid,
  .howto-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .update-card { min-height: auto; }
  .tip-item { grid-template-columns: 1fr; }
}


/* Modern studio credit footer */
.footer-copy {
  align-items: flex-start;
}
.studio-credit {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 200, 87, 0.24);
  background: linear-gradient(135deg, rgba(255, 200, 87, 0.12), rgba(255, 122, 61, 0.08));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.studio-credit a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 950;
  text-decoration: none;
}
.studio-credit a::after {
  content: "↗";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  color: #1a0d0d;
  background: var(--gold);
  font-size: 0.72rem;
  line-height: 1;
  transform: translateY(-1px);
}
.studio-credit a:hover {
  color: var(--text);
}
.studio-credit a:hover::after {
  background: var(--text);
}


/* Hostinger clean footer studio label (no external website link) */
.studio-name {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  font-weight: 950;
}
.studio-credit a::after {
  content: none;
}
