@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

:root {
  --c-bg:        #07070f;
  --c-surface:   #0f0f1e;
  --c-surface2:  #161628;
  --c-border:    rgba(255,255,255,0.07);
  --c-purple:    #7c5cfc;
  --c-violet:    #a78bfa;
  --c-cyan:      #22d3ee;
  --c-pink:      #f472b6;
  --c-green:     #34d399;
  --c-text:      #f1f0ff;
  --c-muted:     #8b8aa8;
  --grad-main:   linear-gradient(135deg, #7c5cfc 0%, #22d3ee 100%);
  --grad-warm:   linear-gradient(135deg, #f472b6 0%, #7c5cfc 100%);
  --grad-green:  linear-gradient(135deg, #34d399 0%, #22d3ee 100%);
  --grad-card1:  linear-gradient(145deg, rgba(124,92,252,0.18) 0%, rgba(34,211,238,0.08) 100%);
  --grad-card2:  linear-gradient(145deg, rgba(244,114,182,0.18) 0%, rgba(124,92,252,0.08) 100%);
  --grad-card3:  linear-gradient(145deg, rgba(52,211,153,0.18) 0%, rgba(34,211,238,0.08) 100%);
  --shadow-glow: 0 0 40px rgba(124,92,252,0.2);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --radius:      14px;
  --radius-lg:   22px;
  --radius-pill: 999px;
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --font-body:   'DM Sans', sans-serif;
  --font-ui:     'Outfit', sans-serif;
  --font-hero:   'Bebas Neue', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  display: block;
  max-width: 100%;
}

/* ─── NAVBAR ──────────────────────────────────────────────────────────────── */

.nm-navbar {
  position: relative;
  z-index: 500;
  background: rgba(7,7,15,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--c-border);
}

.nm-navbar__inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nm-navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nm-navbar__logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nm-navbar__logo-name {
  font-family: var(--font-hero);
  font-size: 1.55rem;
  font-weight: 400;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nm-navbar__links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nm-navbar__links a {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--c-muted);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  transition: color 0.22s var(--ease), background 0.22s var(--ease);
}

.nm-navbar__links a:hover {
  color: var(--c-text);
  background: rgba(255,255,255,0.06);
}

.nm-navbar__links .nm-nav-cta a {
  background: var(--grad-main);
  color: #fff;
  font-weight: 600;
  padding: 9px 22px;
  box-shadow: 0 4px 18px rgba(124,92,252,0.35);
}

.nm-navbar__links .nm-nav-cta a:hover {
  opacity: 0.88;
  background: var(--grad-main);
}

.nm-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  z-index: 1100;
}

.nm-hamburger__line {
  width: 26px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  transform-origin: center;
}

.nm-hamburger.is-open .nm-hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nm-hamburger.is-open .nm-hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nm-hamburger.is-open .nm-hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── MOBILE NAV ──────────────────────────────────────────────────────────── */

.nm-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(7,7,15,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.nm-mobile-nav.is-open {
  display: flex;
  pointer-events: all;
  opacity: 1;
}

.nm-mobile-nav__list {
  list-style: none;
  text-align: center;
}

.nm-mobile-nav__list li {
  overflow: hidden;
}

.nm-mobile-nav__list a {
  display: block;
  font-family: var(--font-hero);
  font-size: clamp(2.4rem, 9vw, 3.6rem);
  font-weight: 400;
  color: var(--c-text);
  padding: 10px 32px;
  transition: color 0.2s var(--ease);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nm-mobile-nav__list a:hover {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nm-mobile-nav__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--c-border);
  color: var(--c-muted);
  font-size: 1.25rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nm-mobile-nav__close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--c-text);
}

/* ─── HERO ────────────────────────────────────────────────────────────────── */

.nm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 28px 80px;
}

.nm-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 40%, rgba(124,92,252,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 55% 55% at 85% 30%, rgba(34,211,238,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 50% 90%, rgba(244,114,182,0.1) 0%, transparent 60%),
    var(--c-bg);
}

.nm-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

.nm-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.nm-hero__orb--1 {
  width: 480px;
  height: 480px;
  background: rgba(124,92,252,0.22);
  top: -100px;
  left: -120px;
}

.nm-hero__orb--2 {
  width: 360px;
  height: 360px;
  background: rgba(34,211,238,0.16);
  bottom: 0;
  right: -80px;
}

.nm-hero__orb--3 {
  width: 260px;
  height: 260px;
  background: rgba(244,114,182,0.14);
  top: 40%;
  right: 20%;
}

.nm-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.nm-hero__left {}

.nm-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,92,252,0.14);
  border: 1px solid rgba(124,92,252,0.35);
  color: var(--c-violet);
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}

.nm-hero__tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-cyan);
  box-shadow: 0 0 8px var(--c-cyan);
}

.nm-hero__title {
  font-family: var(--font-hero);
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.nm-hero__title-light {
  color: rgba(255, 255, 255, 0.42);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.42);
}

.nm-hero__title-line2 {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nm-hero__desc {
  font-size: 1.0625rem;
  color: var(--c-muted);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 40px;
}

.nm-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 60px;
}

.nm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), opacity 0.22s var(--ease);
  line-height: 1;
}

.nm-btn--primary {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 6px 24px rgba(124,92,252,0.38);
}

.nm-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(124,92,252,0.46);
}

.nm-btn--outline {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.nm-btn--outline:hover {
  border-color: var(--c-violet);
  color: var(--c-violet);
  transform: translateY(-2px);
}

.nm-hero__stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--c-border);
}

.nm-stat__num {
  font-family: var(--font-hero);
  font-size: 2.4rem;
  font-weight: 400;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}

.nm-stat__label {
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ─── HERO RIGHT ──────────────────────────────────────────────────────────── */

.nm-hero__right {
  position: relative;
  height: 480px;
}

.nm-floating-card {
  position: absolute;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nm-floating-card--1 {
  width: 240px;
  top: 0;
  left: 20px;
  background: var(--grad-card1);
  border-color: rgba(124,92,252,0.25);
}

.nm-floating-card--2 {
  width: 230px;
  top: 130px;
  left: 160px;
  background: var(--grad-card2);
  border-color: rgba(244,114,182,0.25);
}

.nm-floating-card--3 {
  width: 220px;
  top: 270px;
  left: 60px;
  background: var(--grad-card3);
  border-color: rgba(52,211,153,0.25);
}

.nm-floating-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: var(--c-text);
}

.nm-floating-card--1 .nm-floating-card__icon {
  background: linear-gradient(135deg, #7c5cfc33, #22d3ee33);
  box-shadow: 0 0 18px rgba(124,92,252,0.3);
}

.nm-floating-card--2 .nm-floating-card__icon {
  background: linear-gradient(135deg, #f472b633, #7c5cfc33);
  box-shadow: 0 0 18px rgba(244,114,182,0.3);
}

.nm-floating-card--3 .nm-floating-card__icon {
  background: linear-gradient(135deg, #34d39933, #22d3ee33);
  box-shadow: 0 0 18px rgba(52,211,153,0.3);
}

.nm-floating-card__title {
  font-family: var(--font-ui);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--c-text);
}

.nm-floating-card__text {
  font-size: 0.8125rem;
  color: var(--c-muted);
  line-height: 1.55;
}

.nm-floating-card__badge {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

.nm-floating-card--1 .nm-floating-card__badge {
  background: rgba(124,92,252,0.2);
  color: var(--c-violet);
}

.nm-floating-card--2 .nm-floating-card__badge {
  background: rgba(244,114,182,0.2);
  color: var(--c-pink);
}

.nm-floating-card--3 .nm-floating-card__badge {
  background: rgba(52,211,153,0.2);
  color: var(--c-green);
}

.nm-hero__scroll-hint {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.nm-hero__scroll-hint span {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--c-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nm-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--c-violet), transparent);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */

@media (max-width: 991px) {
  .nm-navbar__links {
    display: none;
  }

  .nm-hamburger {
    display: flex;
  }

  .nm-hero__content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .nm-hero__desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .nm-hero__actions {
    justify-content: center;
  }

  .nm-hero__stats {
    justify-content: center;
  }

  .nm-hero__right {
    display: none;
  }

  .nm-hero__tag {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .nm-navbar__inner {
    padding: 0 18px;
    height: 64px;
  }

  .nm-navbar__logo-name {
    font-size: 1.1rem;
  }

  .nm-navbar__logo img {
    width: 36px;
    height: 36px;
  }

  .nm-hero {
    padding: 80px 18px 60px;
  }

  .nm-hero__title {
    font-size: clamp(2.6rem, 11vw, 3.4rem);
  }

  .nm-hero__stats {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }

  .nm-stat__num {
    font-size: 1.65rem;
  }

  .nm-btn {
    padding: 13px 24px;
    font-size: 0.875rem;
  }

  .nm-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .nm-mobile-nav__list a {
    font-size: 1.75rem;
    padding: 12px 20px;
  }
}

/* ─── SHARED SECTION UTILITIES ───────────────────────────────────────────── */

.nm-section-inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 100px 28px;
}

.nm-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.nm-section-tag {
  display: inline-block;
  background: rgba(124,92,252,0.14);
  border: 1px solid rgba(124,92,252,0.35);
  color: var(--c-violet);
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.nm-section-tag--light {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
  color: var(--c-text);
}

.nm-section-title {
  font-family: var(--font-hero);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.55);
}

.nm-section-desc {
  font-size: 1.0625rem;
  color: var(--c-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.nm-btn--lg {
  padding: 16px 42px;
  font-size: 1rem;
}

/* ─── HOW TO PLAY ─────────────────────────────────────────────────────────── */

.nm-htp {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.nm-htp__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.nm-htp__step {
  position: relative;
  padding: 44px 40px;
  border-right: 1px solid var(--c-border);
  text-align: center;
}

.nm-htp__step:last-child {
  border-right: none;
}

.nm-htp__step-num {
  font-family: var(--font-hero);
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.35;
}

.nm-htp__step-icon {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--c-violet);
}

.nm-htp__step-title {
  font-family: var(--font-ui);
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.nm-htp__step-text {
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.75;
}

/* ─── GAMES SECTION ──────────────────────────────────────────────────────── */

.nm-games {
  background: var(--c-bg);
}

.nm-game-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.nm-game-spotlight__thumb {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-surface2);
  aspect-ratio: 4 / 3;
}

.nm-game-spotlight__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nm-game-spotlight__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 15, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}

.nm-game-spotlight__thumb:hover .nm-game-spotlight__overlay {
  opacity: 1;
}

.nm-game-spotlight__overlay i {
  font-size: 3rem;
  color: #fff;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
}

.nm-game-spotlight__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nm-game-spotlight__genre {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-violet);
}

.nm-game-spotlight__name {
  font-family: var(--font-hero);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1;
}

.nm-game-spotlight__desc {
  font-size: 1rem;
  color: var(--c-muted);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .nm-game-spotlight {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .nm-game-spotlight__genre {
    justify-content: center;
  }
}

/* ─── CONTACT CTA ─────────────────────────────────────────────────────────── */

.nm-contact-cta {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.nm-contact-cta__card {
  position: relative;
  background: var(--c-surface2);
  border: 1px solid rgba(124,92,252,0.2);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  overflow: hidden;
}

.nm-contact-cta__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,252,0.12) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  pointer-events: none;
}

.nm-contact-cta__content {
  position: relative;
  z-index: 1;
}

.nm-contact-cta__title {
  font-family: var(--font-hero);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-top: 14px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.55);
}

.nm-contact-cta__title-accent {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nm-contact-cta__desc {
  font-size: 1rem;
  color: var(--c-muted);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 32px;
}

.nm-contact-cta__visual {
  position: relative;
  width: 200px;
  height: 200px;
  flex-shrink: 0;
}

.nm-contact-cta__bubble {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-card);
  color: var(--c-text);
}

.nm-contact-cta__bubble--1 {
  top: 0;
  left: 20px;
  background: rgba(124,92,252,0.12);
  border-color: rgba(124,92,252,0.25);
}

.nm-contact-cta__bubble--2 {
  top: 70px;
  left: 100px;
  background: rgba(34,211,238,0.12);
  border-color: rgba(34,211,238,0.25);
}

.nm-contact-cta__bubble--3 {
  top: 130px;
  left: 30px;
  background: rgba(244,114,182,0.12);
  border-color: rgba(244,114,182,0.25);
}

/* ─── WHY CHOOSE US ──────────────────────────────────────────────────────── */

.nm-why {
  background: var(--c-bg);
}

.nm-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.nm-why__card {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.nm-why__card:hover {
  border-color: rgba(124,92,252,0.3);
  transform: translateY(-4px);
}

.nm-why__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--c-text);
}

.nm-why__card-title {
  font-family: var(--font-ui);
  font-size: 1.0625rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.nm-why__card-text {
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.75;
}

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */

.nm-footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
}

.nm-footer__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 56px 28px 40px;
}

.nm-footer__disclaimer {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 32px;
}

.nm-footer__disclaimer p {
  font-size: 0.8125rem;
  color: var(--c-muted);
  line-height: 1.8;
  text-align: center;
}

.nm-footer__divider {
  height: 1px;
  background: var(--c-border);
  margin: 28px 0;
}

.nm-footer__links-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 32px;
}

.nm-footer__links-row a {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-muted);
  transition: color 0.2s var(--ease);
}

.nm-footer__links-row a:hover {
  color: var(--c-text);
}

.nm-footer__badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nm-footer__badge-img {
  height: 48px;
  width: auto;
  opacity: 0.75;
  transition: opacity 0.2s var(--ease);
}

.nm-footer__badge-img:hover {
  opacity: 1;
}

.nm-footer__copy {
  text-align: center;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  color: var(--c-muted);
}

/* ─── RESPONSIVE — NEW SECTIONS ──────────────────────────────────────────── */

@media (max-width: 991px) {
  .nm-section-inner {
    padding: 72px 24px;
  }

  .nm-htp__steps {
    grid-template-columns: 1fr;
  }

  .nm-htp__step {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
  }

  .nm-htp__step:last-child {
    border-bottom: none;
  }

  .nm-games__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nm-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nm-contact-cta__card {
    grid-template-columns: 1fr;
    padding: 48px 36px;
    text-align: center;
  }

  .nm-contact-cta__visual {
    display: none;
  }

  .nm-contact-cta__desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 576px) {
  .nm-section-inner {
    padding: 56px 18px;
  }

  .nm-games__grid {
    grid-template-columns: 1fr;
  }

  .nm-why__grid {
    grid-template-columns: 1fr;
  }

  .nm-contact-cta__card {
    padding: 36px 24px;
  }

  .nm-footer__inner {
    padding: 40px 18px 28px;
  }

  .nm-footer__links-row {
    gap: 12px 20px;
  }
}

/* ─── AGE POPUP ──────────────────────────────────────────────────────────── */

.nm-age-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(7, 7, 15, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.nm-age-box {
  position: relative;
  background: var(--c-surface2);
  border: 1px solid rgba(124, 92, 252, 0.3);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(124, 92, 252, 0.12);
}

.nm-age-box__glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 252, 0.1) 0%, transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.nm-age-box__icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
  color: var(--c-violet);
}

.nm-age-box__title {
  font-family: var(--font-hero);
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 18px;
}

.nm-age-box__text {
  font-size: 1rem;
  color: var(--c-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.nm-age-box__text strong {
  color: var(--c-text);
}

.nm-age-box__sub {
  font-size: 0.8125rem;
  color: rgba(139, 138, 168, 0.7);
  margin-bottom: 36px;
  line-height: 1.6;
}

.nm-age-box__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.nm-age-box__deny {
  background: transparent;
  border: none;
  color: var(--c-muted);
  font-family: var(--font-ui);
  font-size: 0.875rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
  padding: 4px 8px;
}

.nm-age-box__deny:hover {
  color: var(--c-text);
}

@media (max-width: 576px) {
  .nm-age-box {
    padding: 36px 24px;
  }

  .nm-age-box__title {
    font-size: 1.6rem;
  }
}

/* ─── COOKIE CONSENT ─────────────────────────────────────────────────────── */

.nm-cookie {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9000;
  width: calc(100% - 48px);
  max-width: 860px;
}

.nm-cookie__inner {
  background: var(--c-surface2);
  border: 1px solid rgba(124, 92, 252, 0.25);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-wrap: wrap;
}

.nm-cookie__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--c-violet);
}

.nm-cookie__text {
  flex: 1;
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.65;
  min-width: 200px;
}

.nm-cookie__text strong {
  color: var(--c-text);
}

.nm-cookie__text a {
  color: var(--c-violet);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nm-cookie__text a:hover {
  color: var(--c-cyan);
}

.nm-cookie__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.nm-cookie__btn {
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.nm-cookie__btn--accept {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 4px 14px rgba(124, 92, 252, 0.3);
}

.nm-cookie__btn--accept:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.nm-cookie__btn--decline {
  background: transparent;
  color: var(--c-muted);
  border: 1.5px solid var(--c-border);
}

.nm-cookie__btn--decline:hover {
  color: var(--c-text);
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 576px) {
  .nm-cookie {
    bottom: 16px;
    width: calc(100% - 32px);
  }

  .nm-cookie__inner {
    padding: 16px 18px;
    gap: 14px;
  }

  .nm-cookie__actions {
    width: 100%;
  }

  .nm-cookie__btn {
    flex: 1;
    text-align: center;
  }
}

/* ─── INNER PAGE HERO ────────────────────────────────────────────────────── */

.nm-page-hero {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: 72px 28px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.nm-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(124, 92, 252, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.nm-page-hero__tag {
  display: inline-block;
  background: rgba(124, 92, 252, 0.14);
  border: 1px solid rgba(124, 92, 252, 0.35);
  color: var(--c-violet);
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  position: relative;
}

.nm-page-hero__title {
  font-family: var(--font-hero);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1;
  margin-bottom: 18px;
  position: relative;
}

.nm-page-hero__desc {
  font-size: 1.0625rem;
  color: var(--c-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
}

/* ─── INNER PAGE CONTENT ─────────────────────────────────────────────────── */

.nm-page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 28px;
}

.nm-page-content h2 {
  font-family: var(--font-hero);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 48px;
  margin-bottom: 14px;
}

.nm-page-content h2:first-child {
  margin-top: 0;
}

.nm-page-content p {
  font-size: 1rem;
  color: var(--c-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.nm-page-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.nm-page-content ul li {
  font-size: 1rem;
  color: var(--c-muted);
  line-height: 1.85;
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}

.nm-page-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-violet);
  font-size: 0.85rem;
}

.nm-page-content strong {
  color: var(--c-text);
  font-weight: 600;
}

.nm-page-content a {
  color: var(--c-violet);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nm-page-content a:hover {
  color: var(--c-cyan);
}

/* ─── CONTACT PAGE ───────────────────────────────────────────────────────── */

.nm-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.nm-contact-card {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  transition: border-color 0.25s var(--ease);
}

.nm-contact-card:hover {
  border-color: rgba(124, 92, 252, 0.3);
}

.nm-contact-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--c-violet);
}

.nm-contact-card__title {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
}

.nm-contact-card__value {
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.65;
}

.nm-contact-card__value a {
  color: var(--c-violet);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nm-contact-card__value a:hover {
  color: var(--c-cyan);
}

/* ─── FAQ PAGE ───────────────────────────────────────────────────────────── */

.nm-faq-list {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nm-faq-item {
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s var(--ease);
}

.nm-faq-item:hover {
  border-color: rgba(124, 92, 252, 0.3);
}

.nm-faq-item__q {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.nm-faq-item__q::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--c-violet);
  flex-shrink: 0;
  line-height: 1;
}

.nm-faq-item.is-open .nm-faq-item__q::after {
  content: '−';
}

.nm-faq-item__a {
  display: none;
  padding: 0 26px 22px;
  font-size: 0.9375rem;
  color: var(--c-muted);
  line-height: 1.8;
  border-top: 1px solid var(--c-border);
  padding-top: 18px;
}

.nm-faq-item.is-open .nm-faq-item__a {
  display: block;
}

/* ─── GAME INDIVIDUAL PAGE ───────────────────────────────────────────────── */

.nm-game-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 28px 80px;
}

.nm-game-page__title {
  font-family: var(--font-hero);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
  text-align: center;
}

.nm-game-page__iframe-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-surface2);
  margin-bottom: 32px;
  position: relative;
}

.nm-game-page__iframe-wrap iframe {
  display: block;
  width: 100%;
  height: 600px;
  border: none;
}

.nm-game-page__disclaimer {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px 26px;
}

.nm-game-page__disclaimer p {
  font-size: 0.8125rem;
  color: var(--c-muted);
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 768px) {
  .nm-contact-grid {
    grid-template-columns: 1fr;
  }

  .nm-game-page__iframe-wrap iframe {
    height: 400px;
  }

  .nm-page-hero {
    padding: 56px 18px 48px;
  }
}

@media (max-width: 576px) {
  .nm-page-content {
    padding: 48px 18px;
  }

  .nm-game-page {
    padding: 48px 18px 60px;
  }

  .nm-game-page__iframe-wrap iframe {
    height: 300px;
  }
}
