:root {
  --blue: #2f6bff;
  --border: #e6e6e6;
  --text-muted: #666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  background: #fff;
  color: #111;
}

/* NAV */
.nav {
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  font-weight: 900;
  font-size: 22px;
}

nav a {
  font-size: 15px;
  cursor: pointer;
}

.search {
  width: 220px;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

/* PAGE */
.wrap {
  max-width: 1200px;
  margin: auto;
  padding: 28px 20px;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) 1fr;
  gap: 32px;
  align-items: center;
}

.hero-media img {
  width: 100%;
  border-radius: 14px;
}

.hero-content h1 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  margin-bottom: 10px;
}

.meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

/* PLAY */
.play-btn {
  width: 100%;
  max-width: 340px;
  background: var(--blue);
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 18px;
  border-radius: 12px;
  cursor: pointer;
}

.play-btn:hover {
  background: #2558d8;
}

.stats {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-muted);
}

/* TABS */
.tabs {
  display: flex;
  gap: 40px;
  margin-top: 42px;
  border-bottom: 1px solid var(--border);
}

.tabs span {
  padding-bottom: 12px;
  color: var(--text-muted);
  cursor: pointer;
}

.tabs .active {
  color: #000;
  border-bottom: 3px solid #000;
}

/* STORE */
.store {
  margin-top: 28px;
}

.store h2 {
  margin-bottom: 18px;
}

/* STORE GRID */
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 32px;
}

.item {
  text-align: center;
}

.item img {
  width: 96px;
}

.item p {
  margin: 8px 0;
  font-weight: 600;
}

.item button {
  padding: 8px 20px;
  border-radius: 8px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

.item button:hover {
  background: #f4f4f4;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .stats {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .search {
    display: none;
  }

  .play-btn {
    max-width: 100%;
  }
}
