@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --nol-night: #12151c;
  --nol-night-soft: #1a1f2a;
  --nol-cream: #f4efe6;
  --nol-cream-muted: rgba(244, 239, 230, 0.72);
  --nol-coral: #e85d4c;
  --nol-coral-deep: #c94839;
  --nol-line: rgba(244, 239, 230, 0.16);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--nol-cream);
  background: var(--nol-night);
  min-height: 100vh;
  line-height: 1.65;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

main,
.site-footer {
  overflow-x: clip;
}

.topbar {
  background: #0d1016;
  border-bottom: 1px solid var(--nol-line);
  padding: 0.7rem 0;
  font-size: 0.84rem;
  color: var(--nol-cream-muted);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
}

.topbar i {
  color: var(--nol-coral);
}

.site-header {
  position: relative;
  z-index: 40;
  background: rgba(18, 21, 28, 0.88);
  border-bottom: 1px solid var(--nol-line);
}

.navbar-nol {
  padding: 0.95rem 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-lockup img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy .brand-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--nol-cream);
  letter-spacing: -0.02em;
}

.brand-copy .brand-tag {
  margin-top: 0.18rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nol-coral);
  font-weight: 600;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--nol-line);
  background: transparent;
  color: var(--nol-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle:hover,
.nav-toggle:focus-visible,
.nav-toggle[aria-expanded="true"] {
  border-color: var(--nol-coral);
  color: var(--nol-coral);
  outline: none;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.primary-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--nol-cream-muted);
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.active {
  color: var(--nol-cream);
  outline: none;
}

.primary-nav a.active {
  box-shadow: inset 0 -2px 0 var(--nol-coral);
  padding-bottom: 0.15rem;
}

.mobile-drawer {
  display: none;
  border-top: 1px solid var(--nol-line);
  background: #0f131a;
  padding: 0.5rem 0 1.1rem;
}

.mobile-drawer.open {
  display: block;
  animation: riseIn 0.3s ease;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--nol-line);
  color: var(--nol-cream);
  font-weight: 500;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-nav a i {
  color: var(--nol-coral);
  font-size: 0.8rem;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--nol-coral);
  outline: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 7.5rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--nol-night);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform-origin: center center;
  will-change: transform;
  animation: gentleZoom 18s ease-in-out infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 21, 28, 0.92) 0%, rgba(18, 21, 28, 0.72) 42%, rgba(18, 21, 28, 0.28) 100%),
    linear-gradient(180deg, rgba(18, 21, 28, 0.35) 0%, rgba(18, 21, 28, 0.15) 40%, rgba(18, 21, 28, 0.82) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 5.5rem 0 4.5rem;
}

.hero-brand {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--nol-cream);
  margin: 0 0 1.35rem;
  max-width: 12ch;
  animation: riseIn 0.7s ease both;
}

.hero-brand em {
  font-style: normal;
  color: var(--nol-coral);
}

.hero-title {
  margin: 0 0 1rem;
  max-width: 18ch;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.25;
  color: var(--nol-cream);
  animation: riseIn 0.8s ease 0.08s both;
}

.hero-lead {
  margin: 0 0 2rem;
  max-width: 32rem;
  font-size: 1.05rem;
  color: var(--nol-cream-muted);
  animation: riseIn 0.85s ease 0.14s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  animation: riseIn 0.9s ease 0.2s both;
}

.btn-nol {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.1rem;
  padding: 0.8rem 1.4rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.94rem;
  border: 1px solid transparent;
}

.btn-nol-primary {
  background: var(--nol-coral);
  color: #fff8f6;
}

.btn-nol-primary:hover,
.btn-nol-primary:focus-visible {
  background: var(--nol-coral-deep);
  color: #fff;
  outline: none;
}

.btn-nol-ghost {
  background: transparent;
  border-color: rgba(244, 239, 230, 0.35);
  color: var(--nol-cream);
}

.btn-nol-ghost:hover,
.btn-nol-ghost:focus-visible {
  border-color: var(--nol-cream);
  outline: none;
}

.games-section {
  padding: 5rem 0 5.5rem;
  background:
    linear-gradient(180deg, #10131a 0%, var(--nol-night) 40%, #151922 100%);
  border-top: 1px solid var(--nol-line);
}

.games-intro {
  max-width: 42rem;
  margin-bottom: 2.5rem;
}

.games-heading {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  letter-spacing: -0.03em;
  color: var(--nol-cream);
  line-height: 1.15;
}

.games-lead {
  margin: 0;
  color: var(--nol-cream-muted);
  font-size: 1.05rem;
}

.game-tile {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--nol-night-soft);
  border: 1px solid var(--nol-line);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.game-tile:hover {
  border-color: rgba(232, 93, 76, 0.55);
  transform: translateY(-4px);
}

.game-media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0d1016;
}

.game-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.game-tile:hover .game-media img {
  transform: scale(1.04);
}

.game-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.25rem 1.25rem 1.4rem;
  flex: 1;
}

.game-kind {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--nol-coral);
}

.game-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.game-title a:hover,
.game-title a:focus-visible {
  color: var(--nol-coral);
  outline: none;
}

.game-play {
  margin-top: auto;
  align-self: flex-start;
  min-height: 2.7rem;
  padding: 0.65rem 1.15rem;
  font-size: 0.9rem;
}

.content-section {
  padding: 5rem 0;
  border-top: 1px solid var(--nol-line);
}

.about-section {
  background: #10131a;
}

.how-section {
  background: var(--nol-night);
}

.community-section {
  background: linear-gradient(180deg, #141821 0%, #10141c 100%);
}

.disclaimer-section {
  background: #0e1218;
  padding-bottom: 5.5rem;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  color: var(--nol-coral);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-heading {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--nol-cream);
}

.section-intro {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.section-lead {
  margin: 0;
  color: var(--nol-cream-muted);
  font-size: 1.06rem;
}

.section-copy p {
  margin: 0 0 1.15rem;
  color: var(--nol-cream-muted);
  font-size: 1.02rem;
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.75rem;
  color: var(--nol-cream);
  font-weight: 700;
  font-size: 0.95rem;
}

.text-link i {
  color: var(--nol-coral);
  font-size: 0.8rem;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--nol-coral);
  outline: none;
}

.step-block {
  height: 100%;
  padding: 1.5rem 0 0.25rem;
  border-top: 2px solid rgba(232, 93, 76, 0.65);
}

.step-index {
  display: block;
  margin-bottom: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--nol-coral);
  letter-spacing: -0.02em;
}

.step-block h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--nol-cream);
}

.step-block p {
  margin: 0;
  color: var(--nol-cream-muted);
  font-size: 0.98rem;
}

.highlight-panel {
  height: 100%;
  padding: 1.75rem 1.6rem;
  background: var(--nol-night-soft);
  border: 1px solid var(--nol-line);
  border-radius: 10px;
}

.highlight-panel h3 {
  margin: 0 0 1.2rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.highlight-list {
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--nol-cream-muted);
  font-size: 0.98rem;
}

.highlight-list i {
  margin-top: 0.2rem;
  color: var(--nol-coral);
}

.disclaimer-frame {
  padding: 2rem 0 0;
}

.site-footer {
  background: #0a0d13;
  border-top: 1px solid var(--nol-line);
  padding: 4.25rem 0 1.75rem;
  color: var(--nol-cream-muted);
}

.footer-brand {
  margin-bottom: 1.15rem;
}

.footer-about {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--nol-cream);
}

.footer-title-spaced {
  margin-top: 1.75rem;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--nol-cream-muted);
  font-size: 0.92rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--nol-coral);
  outline: none;
}

.footer-disclaimer {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.7rem;
  background: rgba(244, 239, 230, 0.04);
  border: 1px solid var(--nol-line);
  border-radius: 8px;
}

.footer-badge img {
  width: auto;
  max-height: 42px;
  object-fit: contain;
}

.footer-bottom {
  margin-top: 2.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--nol-line);
  font-size: 0.84rem;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gentleZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@media (max-width: 991.98px) {
  .desktop-nav {
    display: none !important;
  }

  .hero {
    min-height: calc(100vh - 8.5rem);
    align-items: flex-end;
  }

  .hero-content {
    padding: 4rem 0 3.25rem;
  }

  .hero-veil {
    background:
      linear-gradient(180deg, rgba(18, 21, 28, 0.25) 0%, rgba(18, 21, 28, 0.55) 45%, rgba(18, 21, 28, 0.92) 100%),
      linear-gradient(90deg, rgba(18, 21, 28, 0.55), transparent 70%);
  }

  .brand-copy .brand-title {
    font-size: 1.02rem;
  }
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .mobile-drawer {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .topbar {
    font-size: 0.76rem;
    padding: 0.8rem 0;
  }

  .brand-lockup img {
    width: 40px;
    height: 40px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-nol {
    width: 100%;
  }

  .games-section {
    padding: 3.5rem 0 4rem;
  }

  .content-section {
    padding: 3.5rem 0;
  }

  .disclaimer-section {
    padding-bottom: 4rem;
  }

  .site-footer {
    padding-top: 3.25rem;
  }

  .game-play {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
