.game-page main {
  min-height: 0;
  overflow: visible;
}

.game-start.section {
  display: grid;
  padding: clamp(1.4rem, 3vw, 2.8rem) 0 1.8rem;
}

.game-start-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(2rem, 4vw, 3.4rem);
  align-items: center;
  max-width: 1120px;
}

.game-start-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "kicker"
    "title"
    "lead"
    "actions"
    "meta";
  gap: 0;
  align-items: start;
  max-width: 520px;
}

.game-kicker {
  grid-area: kicker;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.5rem;
  padding: 0.42rem 0.78rem;
  border: 1px solid rgba(159, 233, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #bcecff;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.game-start h1 {
  grid-area: title;
  max-width: 760px;
  margin-top: 0.7rem;
  font-size: clamp(2.35rem, 4.6vw, 4.35rem);
  line-height: 1.02;
  text-wrap: balance;
}

.game-lead {
  grid-area: lead;
  max-width: 650px;
  margin-top: 0.65rem;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  color: #dbeafe;
}

.game-meta {
  grid-area: meta;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 1.25rem 0 0;
}

.game-meta-card {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 72px;
  padding: 0.68rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(0, 229, 255, 0.42) 0%, rgba(82, 255, 207, 0.34) 100%),
    rgba(9, 28, 50, 0.88);
  box-shadow:
    0 14px 28px rgba(4, 12, 26, 0.24),
    0 0 22px rgba(0, 229, 255, 0.08);
}

.game-meta-card:nth-child(2) {
  background:
    linear-gradient(145deg, rgba(255, 238, 122, 0.58) 0%, rgba(255, 183, 43, 0.5) 52%, rgba(255, 139, 76, 0.42) 100%),
    rgba(80, 45, 12, 0.66);
  box-shadow:
    0 14px 28px rgba(4, 12, 26, 0.24),
    0 0 24px rgba(255, 206, 64, 0.16);
}

.game-meta-card:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(181, 156, 255, 0.46) 0%, rgba(78, 184, 255, 0.34) 100%),
    rgba(24, 24, 60, 0.88);
  box-shadow:
    0 14px 28px rgba(4, 12, 26, 0.24),
    0 0 22px rgba(181, 156, 255, 0.1);
}

.game-meta-card span,
.game-seo-summary span {
  display: block;
  margin-bottom: 0.25rem;
  color: rgba(239, 250, 255, 0.86);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.game-meta-card strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-title);
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  line-height: 1.25;
}

.game-actions {
  grid-area: actions;
  display: grid;
  gap: 0.8rem;
  margin: 1.15rem 0 0;
  align-self: start;
  width: 100%;
}

.play-launch {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 104px;
  padding: 1.1rem 1.25rem;
  border-radius: 20px;
  color: #031525;
  font-family: var(--font-title);
  font-size: clamp(1.5rem, 2.7vw, 2.25rem);
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #ffe66d 0%, #ffb627 48%, #ff7a45 100%),
    rgba(12, 26, 54, 0.86);
  box-shadow:
    0 24px 42px rgba(255, 166, 38, 0.32),
    0 0 0 1px rgba(255, 249, 199, 0.32) inset;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.play-launch i {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: clamp(48px, 6vw, 62px);
  height: clamp(48px, 6vw, 62px);
  border-radius: 50%;
  color: #ecfeff;
  background: rgba(4, 16, 31, 0.88);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  box-shadow: 0 10px 22px rgba(3, 10, 22, 0.24);
}

.play-launch:hover {
  transform: translateY(-3px) scale(1.01);
  filter: saturate(1.08);
  box-shadow:
    0 30px 52px rgba(255, 183, 43, 0.42),
    0 0 0 1px rgba(255, 249, 199, 0.38) inset;
}

.game-back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(159, 233, 255, 0.34);
  border-radius: 12px;
  color: #e9fbff;
  background:
    linear-gradient(135deg, rgba(102, 224, 255, 0.16), rgba(82, 255, 207, 0.12)),
    rgba(255, 255, 255, 0.055);
  font-weight: 800;
}

.game-stage {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
}

.game-cover-wrap {
  position: relative;
  width: min(100%, 620px);
  margin: 0 auto;
  border: 1px solid rgba(203, 213, 225, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(31, 41, 55, 0.88)),
    #1f2937;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.game-cover-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 6, 23, 0) 64%, rgba(2, 6, 23, 0.72) 100%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 24%, transparent 72%, rgba(255, 255, 255, 0.09));
  pointer-events: none;
}

.game-cover {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.game-cover-caption {
  position: absolute;
  right: 0.95rem;
  bottom: 0.95rem;
  left: 0.95rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.62rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.76);
  backdrop-filter: blur(12px);
}

.game-cover-caption strong {
  color: #ffffff;
  font-family: var(--font-title);
  line-height: 1.15;
  font-size: 0.98rem;
}

.difficulty-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  flex: 0 0 auto;
  padding: 0.42rem 0.62rem;
  border-radius: 999px;
  color: #06192e;
  background: #ffc067;
  font-size: 0.82rem;
  font-weight: 900;
}

.game-seo-summary {
  position: relative;
  z-index: 2;
  margin-top: 1.3rem;
  padding-bottom: 2rem;
}

.game-seo-summary .container {
  position: relative;
  display: grid;
  justify-items: center;
  padding-top: 1.35rem;
  text-align: center;
}

.game-seo-summary .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 1120px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(56, 214, 166, 0), rgba(56, 214, 166, 0.95) 20%, rgba(103, 178, 255, 0.95) 80%, rgba(103, 178, 255, 0));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 18px rgba(56, 214, 166, 0.28),
    0 0 24px rgba(103, 178, 255, 0.22);
}

.game-seo-summary h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
}

.game-seo-summary p {
  width: min(100%, 1120px);
  max-width: none;
  margin: 0 auto;
  color: #cbd5e1;
  font-size: clamp(1.03rem, 1.08vw, 1.14rem);
  line-height: 1.72;
  text-align: justify;
  text-align-last: left;
  text-justify: inter-word;
  hyphens: auto;
  word-spacing: normal;
  overflow-wrap: break-word;
}

.game-seo-summary .bncc-highlight {
  margin-top: 0.8rem;
  padding: 0.85rem 1rem;
  border-left: 4px solid rgba(56, 214, 166, 0.95);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(56, 214, 166, 0.16), rgba(103, 178, 255, 0.08));
  color: #e6f5ff;
}

.game-seo-summary .bncc-highlight strong {
  color: #9efea8;
}

@media (max-width: 980px) {
  .game-start-shell {
    grid-template-columns: 1fr;
    align-content: start;
  }

  .game-start-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "lead"
      "actions"
      "meta";
    align-items: start;
    max-width: none;
  }

  .game-stage {
    order: -1;
  }

  .game-cover-wrap {
    width: min(100%, 760px);
  }

  .game-seo-summary {
    margin-top: 1rem;
  }
}

@media (max-width: 680px) {
  .game-page {
    min-height: 100svh;
    background:
      radial-gradient(circle at 18% 8%, rgba(56, 214, 166, 0.16), transparent 30%),
      radial-gradient(circle at 88% 10%, rgba(103, 178, 255, 0.16), transparent 34%),
      linear-gradient(180deg, #06101f 0%, #0a1830 52%, #050b16 100%);
  }

  .game-page main {
    overflow: hidden;
  }

  .game-start.section {
    min-height: 0;
    padding: 0 0 0.45rem;
    align-items: start;
  }

  .game-page .menu-toggle {
    border-color: rgba(159, 233, 255, 0.72);
    background:
      linear-gradient(145deg, rgba(0, 229, 255, 0.28), rgba(103, 178, 255, 0.2)),
      rgba(5, 12, 26, 0.9);
    box-shadow:
      0 12px 24px rgba(0, 0, 0, 0.38),
      0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    z-index: 80;
  }

  .game-start-shell {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    width: 100%;
    max-width: 30rem;
  }

  .game-start-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
      linear-gradient(90deg, rgba(0, 229, 255, 0.08) 1px, transparent 1px),
      linear-gradient(rgba(102, 224, 255, 0.07) 1px, transparent 1px);
    background-size: 2.35rem 2.35rem;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.95), transparent 76%);
  }

  .game-start h1 {
    margin-top: 0.54rem;
    font-size: clamp(2.05rem, 12vw, 3.35rem);
    line-height: 0.95;
    letter-spacing: 0;
    text-align: center;
    color: #f8fdff;
    text-shadow:
      0 2px 18px rgba(0, 0, 0, 0.5),
      0 0 26px rgba(0, 229, 255, 0.2);
  }

  .game-start-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: none;
    width: 100%;
    text-align: center;
  }

  .game-kicker {
    max-width: 100%;
    min-height: 34px;
    justify-content: center;
    padding: 0.34rem 0.62rem;
    border-color: rgba(159, 233, 255, 0.42);
    background:
      linear-gradient(135deg, rgba(0, 229, 255, 0.16), rgba(56, 214, 166, 0.12)),
      rgba(4, 12, 26, 0.74);
    font-size: 0.7rem;
    line-height: 1.1;
    white-space: normal;
    text-align: center;
  }

  .game-lead {
    width: min(100%, 23rem);
    margin-top: 0.56rem;
    font-size: clamp(0.92rem, 4vw, 1.04rem);
    line-height: 1.42;
    color: rgba(221, 235, 255, 0.88);
  }

  .game-meta {
    order: 4;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: 0.46rem;
    margin-top: 1.05rem;
  }

  .game-meta-card {
    height: 58px;
    min-height: 58px;
    padding: 0.5rem 0.42rem;
    border-color: rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
  }

  .game-meta-card span,
  .game-seo-summary span {
    margin-bottom: 0.22rem;
    font-size: 0.55rem;
    line-height: 1;
    letter-spacing: 0.06em;
  }

  .game-meta-card span {
    font-size: 0.64rem;
  }

  .game-meta-card strong {
    font-size: clamp(0.76rem, 3.45vw, 0.92rem);
    line-height: 1.08;
  }

  .game-cover-wrap {
    width: 100%;
    border-radius: 8px;
    border-color: rgba(159, 233, 255, 0.38);
    background:
      radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.18), transparent 45%),
      rgba(8, 19, 40, 0.92);
    box-shadow:
      0 22px 44px rgba(0, 4, 14, 0.52),
      0 0 0 1px rgba(255, 255, 255, 0.06) inset,
      0 0 36px rgba(0, 229, 255, 0.12);
  }

  .game-cover-wrap::after {
    content: "";
    position: absolute;
    inset: 0.42rem;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    pointer-events: none;
  }

  .game-cover {
    aspect-ratio: 16 / 9;
    width: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.04);
  }

  .game-cover-caption {
    right: 0.72rem;
    bottom: 0.72rem;
    left: 0.72rem;
    padding: 0.46rem 0.5rem;
    border-radius: 8px;
    background: rgba(2, 8, 19, 0.78);
    backdrop-filter: blur(10px);
  }

  .game-cover-caption strong {
    min-width: 0;
    font-size: 0.78rem;
  }

  .difficulty-pill {
    padding: 0.32rem 0.46rem;
    font-size: 0.68rem;
  }

  .play-launch {
    min-height: 62px;
    border-radius: 8px;
    gap: 0.62rem;
    padding: 0.8rem 1rem;
    font-size: clamp(1.34rem, 7vw, 1.76rem);
    box-shadow:
      0 18px 34px rgba(255, 166, 38, 0.36),
      0 0 0 1px rgba(255, 249, 199, 0.32) inset;
  }

  .play-launch i {
    width: 42px;
    height: 42px;
    font-size: 1.42rem;
  }

  .game-actions {
    position: relative;
    order: 3;
    z-index: 3;
    display: grid;
    gap: 0.48rem;
    width: 100%;
    margin: 0.9rem 0 0;
    padding: 0.54rem;
    border: 1px solid rgba(159, 233, 255, 0.2);
    border-radius: 12px;
    background:
      linear-gradient(180deg, rgba(8, 19, 40, 0.86), rgba(5, 12, 26, 0.94));
    box-shadow:
      0 -12px 30px rgba(0, 0, 0, 0.36),
      0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    backdrop-filter: blur(16px);
  }

  .game-back-link {
    min-height: 36px;
    padding: 0.42rem 0.62rem;
    border-radius: 8px;
    font-size: 0.82rem;
    background:
      linear-gradient(135deg, rgba(102, 224, 255, 0.15), rgba(82, 255, 207, 0.1)),
      rgba(255, 255, 255, 0.06);
  }

  .game-seo-summary {
    display: block;
    margin-top: 0.85rem;
  }

  .game-seo-summary .container {
    padding-top: 0.85rem;
  }

  .game-seo-summary .container::before {
    height: 1px;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.05),
      0 0 12px rgba(56, 214, 166, 0.2),
      0 0 16px rgba(103, 178, 255, 0.16);
  }

  .game-seo-summary h2 {
    margin-bottom: 0.42rem;
    font-size: clamp(1.08rem, 5vw, 1.34rem);
    line-height: 1.14;
  }

  .game-seo-summary p {
    font-size: 1rem;
    line-height: 1.68;
    color: rgba(203, 213, 225, 0.84);
    text-align: justify;
    text-align-last: left;
    text-justify: inter-word;
    hyphens: auto;
    word-spacing: normal;
  }

  .game-seo-summary .bncc-highlight {
    margin-top: 0.72rem;
    padding: 0.72rem 0.78rem;
    border-left-width: 3px;
    border-radius: 6px;
  }
}

@media (max-width: 390px) {
  .game-start.section {
    padding-top: 0;
  }

  .game-meta {
    gap: 0.36rem;
  }

  .game-meta-card {
    height: 54px;
    min-height: 54px;
    padding: 0.44rem 0.34rem;
  }

  .game-meta-card strong {
    font-size: 0.78rem;
  }

  .game-cover-caption {
    align-items: flex-start;
  }

  .difficulty-pill {
    font-size: 0.62rem;
  }
}

@media (max-width: 340px) {
  .game-meta {
    grid-template-columns: 1fr;
  }

  .game-meta-card {
    height: 44px;
    min-height: 44px;
  }
}
