/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, var(--color-bg) 0%, rgba(5, 7, 13, 0.1) 45%),
    linear-gradient(to right, rgba(5, 7, 13, 0.82) 0%, rgba(5, 7, 13, 0.2) 65%),
    rgba(5, 7, 13, 0.28);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 6rem;
  width: 100%;
}

.hero__inner {
  max-width: 680px;
}

.hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: 1.125rem;
  line-height: 1.4;
}

.hero__desc {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: 2.25rem;
}

@media (min-width: 768px) {
  .hero__desc {
    font-size: 1.0625rem;
  }
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

/* ============================================================
   MOCKUP SHOWCASE LIST
   ============================================================ */

.mockup-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .mockup-showcase-list {
    gap: 5rem;
  }
}

.mockup-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .mockup-showcase {
    grid-template-columns: 320px 1fr;
    gap: 4rem;
  }

  .mockup-showcase--reverse {
    grid-template-columns: 1fr 320px;
  }

  .mockup-showcase--reverse .mockup-showcase__image {
    order: 2;
  }

  .mockup-showcase--reverse .mockup-showcase__content {
    order: 1;
  }
}

@media (min-width: 1024px) {
  .mockup-showcase {
    grid-template-columns: 360px 1fr;
    gap: 5rem;
  }

  .mockup-showcase--reverse {
    grid-template-columns: 1fr 360px;
  }
}

.mockup-showcase__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(75, 153, 204, 0.2);
  box-shadow: var(--shadow-glow-blue);
  max-width: 320px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .mockup-showcase__image {
    max-width: 100%;
    margin-inline: 0;
  }
}

.mockup-showcase__image img {
  width: 100%;
  height: auto;
  display: block;
}

.mockup-showcase__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.mockup-showcase__content .section__label {
  margin-bottom: 0.75rem;
}

.mockup-showcase__text {
  font-size: 1rem;
  color: var(--color-muted);
  line-height: 1.8;
  max-width: 52ch;
}

@media (min-width: 768px) {
  .mockup-showcase__text {
    font-size: 1.0625rem;
  }
}

/* ============================================================
   STATS STRIP SECTION
   ============================================================ */

.stats-section {
  background: var(--color-surface-2);
  border-top: 1px solid rgba(75, 153, 204, 0.1);
  border-bottom: 1px solid rgba(75, 153, 204, 0.1);
  padding-block: 4rem;
}

.stat-card__value--blue {
  color: var(--color-blue);
  font-size: 1.5rem;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-section__inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.about-section__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(75, 153, 204, 0.25);
  box-shadow: var(--shadow-glow-blue);
}

.about-section__image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.about-section__content .section__text {
  margin-bottom: 1.75rem;
}

.about-section__worlds {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.about-section__worlds li {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-blue);
  background: rgba(75, 153, 204, 0.1);
  border: 1px solid rgba(75, 153, 204, 0.3);
  border-radius: 100px;
  padding: 0.375rem 0.875rem;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast);
}

.about-section__worlds li:hover {
  background: rgba(75, 153, 204, 0.2);
  border-color: rgba(75, 153, 204, 0.55);
}

/* ============================================================
   MOCKUPS SECTION
   ============================================================ */

.mockups-section__header {
  margin-bottom: 3rem;
}

.mockups-section__header .section__text {
  margin-inline: auto;
}

.mockups-section__banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(75, 153, 204, 0.15);
  box-shadow: 0 4px 2rem rgba(5, 7, 13, 0.6);
}

.mockups-section__banner img {
  width: 100%;
  height: auto;
  display: block;
}

.mockups-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .mockups-section__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .mockups-section__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Featured mockup card (center/boss fight) */
.mockup-card--featured {
  border-color: rgba(245, 66, 77, 0.3);
}

.mockup-card--featured:hover {
  box-shadow: var(--shadow-glow-red-strong);
  border-color: rgba(245, 66, 77, 0.55);
}

@media (min-width: 1024px) {
  .mockup-card--featured {
    transform: scale(1.04);
  }

  .mockup-card--featured:hover {
    transform: scale(1.07) translateY(-4px);
  }
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */

.features-section {
  background: var(--color-surface-2);
  border-top: 1px solid rgba(75, 153, 204, 0.08);
  border-bottom: 1px solid rgba(75, 153, 204, 0.08);
}

.features-section__header {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */

.gallery-section__header {
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 3rem;
}

.gallery-section__featured {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(75, 153, 204, 0.15);
  box-shadow: 0 4px 2rem rgba(5, 7, 13, 0.6);
}

.gallery-section__featured img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-grid {
  columns: 2;
  column-gap: 0.75rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    columns: 3;
  }
}

@media (min-width: 1280px) {
  .gallery-grid {
    columns: 4;
  }
}

.gallery-grid .gallery-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
}

.gallery-grid .gallery-item img {
  height: auto;
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
  background: var(--color-surface-2);
  border-top: 1px solid rgba(75, 153, 204, 0.12);
  border-bottom: 1px solid rgba(75, 153, 204, 0.12);
}

.cta-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .cta-section__inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.cta-section__content .section__text {
  margin-bottom: 0;
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.cta-section__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(75, 153, 204, 0.2);
  box-shadow: var(--shadow-glow-blue);
  order: -1;
}

@media (min-width: 1024px) {
  .cta-section__image {
    order: 0;
  }
}

.cta-section__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   INNER PAGES — SHARED PAGE TOP OFFSET
   ============================================================ */

.page-hero {
  padding-top: calc(80px + 4rem);
  padding-bottom: 4rem;
  background: var(--color-surface-2);
  border-bottom: 1px solid rgba(75, 153, 204, 0.1);
}

.page-hero__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 1rem;
}

.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.page-hero__desc {
  font-size: 1.0625rem;
  color: var(--color-muted);
  line-height: 1.75;
  max-width: 56ch;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.legal-content {
  max-width: 800px;
  margin-inline: auto;
}

.legal-content h2 {
  font-size: 1.375rem;
  margin-top: 2.5rem;
  margin-bottom: 0.875rem;
  color: var(--color-white);
}

.legal-content h3 {
  font-size: 1.0625rem;
  margin-top: 1.75rem;
  margin-bottom: 0.625rem;
  color: var(--color-blue);
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--color-muted);
  line-height: 1.8;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  color: var(--color-muted);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal-content a {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content a:hover {
  color: var(--color-cyan);
}

/* ============================================================
   404 PAGE
   ============================================================ */

.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 1.25rem 4rem;
}

.not-found__code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 700;
  color: var(--color-red);
  line-height: 1;
  text-shadow: var(--shadow-glow-red-strong);
  margin-bottom: 0.5rem;
}

.not-found__title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
}

.not-found__desc {
  font-size: 1rem;
  color: var(--color-muted);
  max-width: 42ch;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ============================================================
   CONTACTS PAGE
   ============================================================ */

.contacts-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contacts-section__inner {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-card {
  background: var(--color-surface);
  border: 1px solid rgba(75, 153, 204, 0.2);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.contact-card__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 0.5rem;
}

.contact-card__value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0;
}

.contact-card__value a {
  color: var(--color-blue);
  transition: color var(--transition-fast);
}

.contact-card__value a:hover {
  color: var(--color-cyan);
}

/* ============================================================
   404 PAGE — INNER ELEMENTS
   ============================================================ */

.not-found__box {
  max-width: 520px;
  margin-inline: auto;
}

.not-found__visual {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.not-found__visual img {
  height: 200px;
  width: auto;
  filter: drop-shadow(0 0 1.5rem rgba(75, 153, 204, 0.45));
}

/* ============================================================
   CONTACTS PAGE — INNER ELEMENTS
   ============================================================ */

.contacts-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contacts-section__inner {
    grid-template-columns: 1fr 1.5fr;
  }
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-block {
  background: var(--color-surface);
  border: 1px solid rgba(75, 153, 204, 0.18);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  transition:
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.contact-block:hover {
  box-shadow: var(--shadow-glow-blue);
  border-color: rgba(75, 153, 204, 0.4);
}

.contact-block--highlight {
  border-color: rgba(75, 153, 204, 0.35);
}

.contact-block__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 0.375rem;
}

.contact-block__value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
}

.contact-block__email {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-blue);
  transition: color var(--transition-fast);
  word-break: break-all;
}

.contact-block__email:hover {
  color: var(--color-cyan);
}

.contacts-text__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 2rem;
}

.contacts-text__block {
  margin-bottom: 1.75rem;
}

.contacts-text__sub {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 0.5rem;
}

.contacts-text__block p {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.75;
}

.contacts-text__cta {
  margin-top: 2.5rem;
}

.contacts-text__cta-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted-soft);
  margin-bottom: 1rem;
}

/* ============================================================
   MORE ABOUT GAME — STORY BLOCKS
   ============================================================ */

.story-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .story-block {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .story-block--reverse .story-block__image {
    order: -1;
  }
}

.story-block__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(75, 153, 204, 0.22);
  box-shadow: var(--shadow-glow-blue);
}

.story-block__image img {
  width: 100%;
  height: auto;
  display: block;
}

.story-block__content .section__text {
  margin-bottom: 1.125rem;
}

.story-block__content .btn {
  margin-top: 0.5rem;
}

/* ============================================================
   MORE ABOUT GAME — HERO CARDS
   ============================================================ */

.heroes-section__header {
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.heroes-section__header .section__text {
  margin-inline: auto;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .hero-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1280px) {
  .hero-cards {
    grid-template-columns: repeat(5, 1fr);
  }
}

.hero-card {
  background: var(--color-surface);
  border: 1px solid rgba(75, 153, 204, 0.18);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition:
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-base);
}

.hero-card:hover {
  box-shadow: var(--shadow-glow-blue);
  border-color: rgba(75, 153, 204, 0.5);
  transform: translateY(-3px);
}

.hero-card__number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-red);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.hero-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.375rem;
}

.hero-card__style {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 0.625rem;
}

.hero-card__text {
  font-size: 0.8125rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ============================================================
   MORE ABOUT GAME — WORLD CARDS
   ============================================================ */

.worlds-section {
  background: var(--color-surface-2);
  border-top: 1px solid rgba(75, 153, 204, 0.08);
  border-bottom: 1px solid rgba(75, 153, 204, 0.08);
}

.worlds-section__header {
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.worlds-section__header .section__text {
  margin-inline: auto;
}

.world-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
}

@media (min-width: 768px) {
  .world-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .world-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.world-card {
  background: var(--color-surface);
  border: 1px solid rgba(75, 153, 204, 0.14);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  transition:
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-base);
}

.world-card:hover {
  box-shadow: var(--shadow-glow-blue);
  border-color: rgba(75, 153, 204, 0.4);
  transform: translateY(-2px);
}

.world-card__number {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 0.375rem;
}

.world-card__name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.625rem;
}

.world-card__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ============================================================
   MORE ABOUT GAME — PAGE CTA SECTION
   ============================================================ */

.page-cta-section {
  background: var(--color-surface-2);
  border-top: 1px solid rgba(75, 153, 204, 0.1);
}

.page-cta-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.page-cta-section__inner .section__text {
  margin-inline: auto;
}

/* ============================================================
   HOW TO PLAY — OVERVIEW
   ============================================================ */

.htp-overview__banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(75, 153, 204, 0.15);
  margin-bottom: 3.5rem;
  box-shadow: 0 4px 2rem rgba(5, 7, 13, 0.6);
}

.htp-overview__banner img {
  width: 100%;
  height: auto;
  display: block;
}

.htp-overview__intro {
  max-width: 680px;
  margin-inline: auto;
}

.htp-overview__intro .section__text {
  margin-inline: auto;
}

/* ============================================================
   HOW TO PLAY — SECTIONS
   ============================================================ */

.htp-section--alt {
  background: var(--color-surface-2);
  border-top: 1px solid rgba(75, 153, 204, 0.08);
  border-bottom: 1px solid rgba(75, 153, 204, 0.08);
}

.htp-section__header {
  max-width: 720px;
  margin-bottom: 3rem;
}

.htp-section__header .section__text {
  max-width: 60ch;
}

/* ============================================================
   HOW TO PLAY — GUIDE LIST
   ============================================================ */

.guide-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.guide-item {
  background: var(--color-surface);
  border: 1px solid rgba(75, 153, 204, 0.14);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  transition:
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.guide-item:hover {
  box-shadow: var(--shadow-glow-blue);
  border-color: rgba(75, 153, 204, 0.35);
}

.guide-item__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.guide-item__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
  background: var(--color-red);
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  flex-shrink: 0;
}

.guide-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

.guide-item__text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.75;
}

/* ============================================================
   HOW TO PLAY — SPLIT LAYOUT
   ============================================================ */

.htp-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .htp-split {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.htp-split__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(75, 153, 204, 0.2);
  box-shadow: var(--shadow-glow-blue);
  max-width: 380px;
  margin-inline: auto;
}

@media (min-width: 1024px) {
  .htp-split__image {
    max-width: 100%;
    margin-inline: 0;
  }
}

.htp-split__image img {
  width: 100%;
  height: auto;
  display: block;
}

.htp-split__content .section__text {
  margin-bottom: 1.125rem;
}

/* ============================================================
   HOW TO PLAY — TIPS
   ============================================================ */

.htp-tips {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.75rem;
}

.htp-tip {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  border: 1px solid rgba(75, 153, 204, 0.12);
}

.htp-tip__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-blue);
  margin-top: 0.45rem;
}

.htp-tip__text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.65;
}

.htp-tip__text strong {
  color: var(--color-white);
}

/* ============================================================
   HOW TO PLAY — BOSS TIPS
   ============================================================ */

.boss-tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .boss-tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.boss-tip-card {
  background: var(--color-surface);
  border: 1px solid rgba(245, 66, 77, 0.18);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    transform var(--transition-base);
}

.boss-tip-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-red), transparent);
}

.boss-tip-card:hover {
  box-shadow: var(--shadow-glow-red);
  border-color: rgba(245, 66, 77, 0.4);
  transform: translateY(-2px);
}

.boss-tip-card__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.boss-tip-card__text {
  font-size: 0.875rem;
  color: var(--color-muted);
  line-height: 1.75;
}

/* ============================================================
   HOW TO PLAY — MOCKUP ROW
   ============================================================ */

.htp-section__mockups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin-inline: auto;
}

@media (max-width: 767px) {
  .htp-section__mockups {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

/* ============================================================
   SHARED — CENTERED SECTION TEXT
   ============================================================ */

.section__text.text-center {
  margin-inline: auto;
}
