
:root {
  --bg: #070b14;
  --panel: #0d1425;
  --panel-2: #111a31;
  --text: #f6f7fb;
  --muted: #95a1bd;
  --line: rgba(255,255,255,.10);
  --accent: #8cf5d2;
  --accent-2: #7da6ff;
  --warning: #ffd76a;
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 80% 8%, rgba(83,109,254,.13), transparent 32rem),
    radial-gradient(circle at 12% 26%, rgba(62,255,196,.08), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #071018;
  font-weight: 950;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-size: 14px;
  letter-spacing: .18em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .35em;
}

.top-nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
}

.top-nav a { transition: color .2s ease; }
.top-nav a:hover, .top-nav a.active { color: var(--text); }

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
  padding: 78px 0 84px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .22em;
}

.hero h1 {
  margin: 0;
  max-width: 690px;
  font-size: clamp(54px, 7.2vw, 92px);
  line-height: .92;
  letter-spacing: -.06em;
}

.hero h1 span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,.58);
}

.hero-text {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 14px;
  border: 1px solid var(--line);
}

.button.primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.button.ghost:hover { border-color: rgba(255,255,255,.28); }

.hero-console {
  width: min(100%, 455px);
  justify-self: end;
  padding: 18px;
  border-radius: 38px;
  background: linear-gradient(145deg, #202c4b, #0c1221 70%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  transform: rotate(2deg);
}

.console-top {
  display: flex;
  gap: 6px;
  margin: 2px 0 12px 8px;
}

.console-top span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
}

.console-screen {
  position: relative;
  min-height: 305px;
  overflow: hidden;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  border-radius: 26px;
  background:
    linear-gradient(rgba(125,166,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125,166,255,.06) 1px, transparent 1px),
    #03060d;
  background-size: 26px 26px;
  border: 10px solid #050914;
}

.screen-logo {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 34px;
  font-weight: 900;
  border-radius: 24px;
  box-shadow: 0 0 35px rgba(140,245,210,.16);
}

.screen-title {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: .14em;
}

.screen-sub {
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .24em;
}

.pixel-star {
  position: absolute;
  color: var(--accent-2);
  opacity: .8;
}
.star-1 { top: 42px; left: 48px; }
.star-2 { top: 90px; right: 54px; font-size: 12px; }
.star-3 { bottom: 52px; left: 95px; font-size: 10px; }

.console-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 24px 16px 8px;
}

.dpad {
  width: 70px; height: 70px;
  display: grid; place-items: center;
  border-radius: 20px;
  background: #080d18;
  font-size: 38px;
  color: #617090;
}

.console-label {
  color: #697794;
  font-weight: 900;
  font-size: 9px;
  letter-spacing: .15em;
}

.buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  transform: rotate(-18deg);
}

.buttons span {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: #111a2a;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.games-section {
  padding: 88px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.section-heading h2, .about-section h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -.045em;
}

.section-heading > p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.game-card {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .2s ease, border-color .2s ease;
}

.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.20);
}

.game-art {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.art-catch {
  background:
    radial-gradient(circle at 50% 85%, rgba(140,245,210,.22), transparent 30%),
    linear-gradient(145deg, #0d1831, #131127);
}

.art-catch .emoji { position: absolute; }
.art-catch .big { top: 32px; left: 40px; font-size: 42px; }
.art-catch .cup { top: 75px; right: 54px; font-size: 34px; transform: rotate(10deg); }
.art-catch .note { top: 35px; right: 130px; font-size: 30px; color: var(--accent); }
.basket {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  font-size: 82px;
  color: var(--accent-2);
}

.art-rasa {
  background:
    radial-gradient(circle at 65% 30%, rgba(255,215,106,.28), transparent 25%),
    linear-gradient(145deg, #2e1632, #11162a);
}

.food { position: absolute; font-size: 42px; }
.food-1 { top: 42px; left: 48px; transform: rotate(-12deg); }
.food-2 { top: 108px; left: 118px; transform: rotate(10deg); }
.food-3 { top: 54px; right: 58px; transform: rotate(8deg); }
.food-4 { bottom: 40px; right: 92px; transform: rotate(-20deg); }

.art-ferry {
  background: linear-gradient(#18243f 0 52%, #0f3550 52%);
}

.sun {
  position: absolute;
  width: 66px; height: 66px;
  border-radius: 50%;
  background: #ffd778;
  right: 42px; top: 38px;
  box-shadow: 0 0 55px rgba(255,215,120,.35);
}

.cloud {
  position: absolute;
  width: 84px; height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
}
.c1 { top: 55px; left: 38px; }
.c2 { top: 98px; left: 110px; width: 56px; }

.sea {
  position: absolute;
  left: 0; right: 0; bottom: 0; height: 48%;
  background: repeating-linear-gradient(
    0deg,
    rgba(125,166,255,.10) 0 2px,
    transparent 2px 16px
  );
}

.ferry {
  position: absolute;
  left: 50%; bottom: 45px;
  transform: translateX(-50%);
  font-size: 62px;
}

.game-card-body { padding: 24px; }

.game-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .10em;
}

.status {
  display: inline-flex;
  padding: 6px 8px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
}

.status.soon { color: var(--accent); }
.status.concept { color: var(--warning); }

.game-card h3 {
  margin: 18px 0 10px;
  font-size: 23px;
  letter-spacing: -.02em;
}

.game-card p {
  min-height: 74px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.card-action {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
}

.card-action.disabled {
  color: #59647b;
  cursor: default;
}

.about-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 100px;
  padding: 92px 0;
  border-top: 1px solid var(--line);
}

.about-section > p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

footer {
  min-height: 100px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #66728c;
  font-size: 12px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
  }

  .hero-console {
    width: min(100%, 520px);
    justify-self: start;
  }

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

  .game-art { height: 280px; }

  .about-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 640px) {
  .page-shell { width: min(100% - 24px, 1180px); }

  .site-header {
    min-height: 74px;
  }

  .top-nav {
    gap: 14px;
    font-size: 12px;
  }

  .top-nav a:nth-child(2) { display: none; }

  .hero {
    padding: 56px 0 64px;
  }

  .hero h1 {
    font-size: clamp(46px, 16vw, 68px);
  }

  .hero-text { font-size: 16px; }

  .hero-console {
    transform: none;
  }

  .console-screen { min-height: 250px; }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .game-art { height: 230px; }

  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}


.brand-image {
  display: block;
  width: clamp(170px, 24vw, 290px);
  height: auto;
}

.hero-logo-panel {
  width: min(100%, 560px);
  justify-self: end;
  padding: 22px;
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(32,44,75,.85), rgba(12,18,33,.9) 70%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
}

.hero-logo-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-badges {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}

.status.playable { color: var(--accent); }

.card-action {
  color: var(--text);
}

.card-action:hover {
  color: var(--accent);
}

@media (max-width: 900px) {
  .hero-logo-panel {
    width: min(100%, 620px);
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .brand-image {
    width: min(210px, 62vw);
  }
}

footer a{color:inherit;text-decoration:none}footer a:hover{color:var(--text)}
