:root {
  --np-bg: #fcfaf6;
  --np-text: #3e2b1f;
  --np-muted: #7f6a56;
  --np-card: #ffffff;
  --np-brown-900: #2b1d14;
  --np-brown-700: #5b3a24;
  --np-gold-400: #e5b45f;
  --np-border: #e6dbcf;
  --np-success: #2f7d57;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.np-body {
  font-family: "Space Grotesk", "Segoe UI", Tahoma, sans-serif;
  color: var(--np-text);
  background: var(--np-bg);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.np-bg-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 0% 0%, rgba(217, 119, 6, 0.08), transparent 22%),
    radial-gradient(circle at 100% 0%, rgba(120, 53, 15, 0.08), transparent 20%);
  z-index: -1;
}

.np-container {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.np-main {
  padding-bottom: 4rem;
}

.np-header-shell {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
  padding-top: 1rem;
}

.np-header-inner {
  background: rgba(43, 29, 20, 0.94);
  border: 1px solid rgba(229, 180, 95, 0.18);
  border-radius: 16px;
  padding: 0.9rem 1rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.np-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff7e6;
  font-weight: 700;
  font-size: 0.94rem;
}

.np-brand-dot {
  color: var(--np-gold-400);
}

.np-menu,
.np-footer-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.np-primary-nav {
  justify-self: center;
  width: 100%;
}

.np-menu-toggle {
  display: none;
  justify-self: end;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 10px;
  border: 1px solid rgba(229, 180, 95, 0.35);
  background: rgba(255, 247, 230, 0.08);
  align-items: center;
  justify-content: center;
  gap: 0.18rem;
  flex-direction: column;
  cursor: pointer;
}

.np-menu-toggle span {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: #fff7e6;
}

.np-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 16, 11, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease;
  z-index: 39;
}

.np-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(84vw, 360px);
  background: #2b1d14;
  border-left: 1px solid rgba(229, 180, 95, 0.22);
  transform: translateX(100%);
  transition: transform 0.26s ease;
  z-index: 40;
  padding: 1rem;
}

.np-mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff7e6;
  margin-bottom: 0.9rem;
}

.np-mobile-close {
  border: 1px solid rgba(229, 180, 95, 0.35);
  border-radius: 8px;
  width: 2rem;
  height: 2rem;
  line-height: 1;
  background: rgba(255, 247, 230, 0.08);
  color: #fff7e6;
  cursor: pointer;
}

.np-mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.25rem;
}

.np-mobile-menu a {
  display: block;
  color: rgba(255, 247, 230, 0.95);
  padding: 0.62rem 0.7rem;
  border-radius: 8px;
  border: 1px solid transparent;
}

.np-mobile-menu a:hover {
  background: rgba(255, 247, 230, 0.08);
  border-color: rgba(229, 180, 95, 0.28);
}

body.np-mobile-menu-open {
  overflow: hidden;
}

body.np-mobile-menu-open .np-mobile-overlay {
  opacity: 1;
  visibility: visible;
}

body.np-mobile-menu-open .np-mobile-panel {
  transform: translateX(0);
}

.np-menu a,
.np-footer-menu a {
  color: rgba(255, 247, 230, 0.86);
  font-size: 0.86rem;
  white-space: nowrap;
}

.np-menu a:hover,
.np-footer-menu a:hover {
  color: #fff;
}

.np-section {
  padding: 3.5rem 0 1rem;
}

.np-grid {
  display: grid;
  gap: 1rem;
}

.np-hero-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  border-bottom: 1px solid var(--np-border);
  padding-bottom: 2.5rem;
}

.np-badge {
  display: inline-flex;
  border: 1px solid #d6c0a5;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  color: var(--np-brown-700);
  background: #fff5e9;
}

.np-hero-title {
  margin: 0.8rem 0 0.4rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
}

.np-hero-copy {
  color: var(--np-muted);
  max-width: 640px;
}

.np-row {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
}

.np-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--np-brown-700);
  border: 1px solid var(--np-brown-700);
  color: #fff;
  border-radius: 10px;
  height: 2.5rem;
  padding: 0 1rem;
  font-size: 0.86rem;
  font-weight: 600;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.np-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.np-btn-outline {
  background: #fff;
  color: var(--np-brown-700);
  border-color: #d8c2a6;
}

.np-note {
  color: var(--np-muted);
  margin-top: 0.85rem;
  font-size: 0.8rem;
}

.np-stats-grid {
  display: grid;
  gap: 0.75rem;
}

.np-stat-card {
  border: 1px solid var(--np-border);
  border-radius: 14px;
  background: #fff;
  padding: 0.9rem;
}

.np-stat-card span {
  display: block;
  font-size: 0.76rem;
  color: var(--np-muted);
}

.np-stat-card strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.5rem;
}

.np-stat-card em {
  display: block;
  font-style: normal;
  color: var(--np-success);
  font-size: 0.76rem;
}

.np-heading p {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--np-brown-700);
  font-weight: 700;
}

.np-heading h2 {
  margin: 0.55rem 0 1.1rem;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.np-cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.np-card {
  background: #fff;
  border: 1px solid var(--np-border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px -24px rgba(43, 29, 20, 0.42);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.np-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px -28px rgba(43, 29, 20, 0.5);
  border-color: #dcc3a4;
}

.np-game-card {
  position: relative;
  isolation: isolate;
}

.np-game-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.16) 42%, transparent 66%);
  transform: translateX(-110%);
  animation: npShine 6.8s ease-in-out infinite;
}

.np-game-card::after {
  content: "";
  position: absolute;
  inset: auto -24% -44% -24%;
  height: 130px;
  z-index: -1;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.32) 0%, rgba(217, 70, 239, 0.2) 38%, rgba(37, 99, 235, 0) 72%);
  pointer-events: none;
}

@keyframes npShine {
  0% {
    transform: translateX(-110%);
  }
  40% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.np-card-body {
  padding: 1rem;
}

.np-card-media-wrap {
  position: relative;
  height: 196px;
  overflow: hidden;
  border-bottom: 1px solid var(--np-border);
  background: #f2e4d5;
}

.np-card-media-short {
  height: 154px;
}

.np-card-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.35s ease;
}

.np-card:hover .np-card-media {
  transform: scale(1.06);
}

.np-gradient-box {
  border-bottom: 1px solid var(--np-border);
  padding: 1rem;
  background: linear-gradient(135deg, #bb7f45, #884a28 46%, #5b2d74 100%);
  color: #fff;
}

#games .np-game-card:nth-child(3n + 1) .np-gradient-box {
  background: linear-gradient(135deg, #ca8f44 0%, #7f4a1d 52%, #155e75 100%);
}

#games .np-game-card:nth-child(3n + 2) .np-gradient-box {
  background: linear-gradient(135deg, #7c3aed 0%, #1d4ed8 50%, #0891b2 100%);
}

#games .np-game-card:nth-child(3n + 3) .np-gradient-box {
  background: linear-gradient(135deg, #be123c 0%, #7c2d12 46%, #0f766e 100%);
}

.np-gradient-box-overlay {
  position: relative;
  margin-top: -68px;
  border-bottom: none;
  background: linear-gradient(180deg, rgba(43, 29, 20, 0.15) 0%, rgba(43, 29, 20, 0.74) 30%, rgba(43, 29, 20, 0.92) 100%);
}

.np-gradient-box-overlay h3,
.np-gradient-box-overlay .np-white-soft {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.np-game-topline {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
}

.np-white-soft {
  color: rgba(255, 255, 255, 0.85);
}

.np-tag {
  border: 1px solid rgba(62, 43, 31, 0.15);
  border-radius: 999px;
  padding: 0.18rem 0.5rem;
  font-size: 0.72rem;
  background: #f8ece0;
  color: #5b3a24;
}

.np-tag-soft {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  animation: npTagPulse 2.8s ease-in-out infinite;
}

@keyframes npTagPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.np-muted {
  color: var(--np-muted);
  font-size: 0.84rem;
}

.np-row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.np-countdown {
  border: 1px solid #e7c792;
  border-radius: 8px;
  padding: 0.2rem 0.45rem;
  background: #fff8ea;
  font-size: 0.76rem;
  color: #91611d;
  font-family: "JetBrains Mono", monospace;
}

.np-boost {
  border: 1px solid #c6e7cf;
  border-radius: 10px;
  background: linear-gradient(135deg, #edf9f1, #def3e6);
  padding: 0.75rem;
  margin: 0.85rem 0;
}

.np-boost small {
  color: #2f7d57;
}

.np-boost strong {
  display: block;
  color: #2f7d57;
  font-size: 1.5rem;
}

.np-ticker-wrap {
  border: 1px solid var(--np-border);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 0.85rem;
}

.np-ticker {
  margin: 0;
  white-space: nowrap;
  color: #7b531e;
  font-size: 0.86rem;
  padding: 0.65rem 1rem;
  animation: npTicker 18s linear infinite;
}

@keyframes npTicker {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.np-activity-item {
  border: 1px solid var(--np-border);
  border-radius: 10px;
  padding: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.55rem;
}

.np-activity-item span {
  color: var(--np-success);
  font-size: 0.78rem;
}

.np-payments-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 0.85rem;
}

.np-pay-chip {
  border: 1px solid var(--np-border);
  border-radius: 10px;
  background: #fff;
  text-align: center;
  padding: 0.6rem;
  font-size: 0.83rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.np-pay-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: #fff3df;
  border: 1px solid #ecd2ad;
  font-size: 0.74rem;
}

.np-trust-note {
  margin-top: 0.8rem;
  border: 1px solid #c6e7cf;
  border-radius: 10px;
  background: #edf9f1;
  color: #2f7d57;
  padding: 0.65rem 0.75rem;
  font-size: 0.82rem;
}

.np-cat-card .np-card-body,
.np-vip-card .np-card-body {
  padding-top: 1.15rem;
}

.np-cat-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: #fff6e9;
  border: 1px solid #edd6b9;
  margin-bottom: 0.65rem;
}

.np-vip-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.np-vip-card {
  position: relative;
  overflow: hidden;
}

.np-vip-card::after {
  content: "";
  position: absolute;
  inset: auto -18% -38% -18%;
  height: 80px;
  background: radial-gradient(circle, rgba(229, 180, 95, 0.24) 0%, rgba(229, 180, 95, 0) 72%);
}

.np-faq-list {
  display: grid;
  gap: 0.7rem;
}

.np-faq-item {
  border: 1px solid var(--np-border);
  border-radius: 12px;
  background: #fff;
  padding: 0.9rem;
}

.np-faq-item summary {
  cursor: pointer;
  font-weight: 600;
}

.np-faq-item[open] {
  border-color: #dcbf98;
  box-shadow: 0 12px 24px -22px rgba(43, 29, 20, 0.7);
}

.np-faq-item p {
  margin: 0.65rem 0 0;
}

.np-footer-shell {
  margin: 0 auto 1.2rem;
  width: min(1180px, 92vw);
}

.np-footer-inner {
  background: rgba(43, 29, 20, 0.94);
  border: 1px solid rgba(229, 180, 95, 0.18);
  border-radius: 14px;
  color: rgba(255, 247, 230, 0.88);
  font-size: 0.8rem;
  text-align: center;
  padding: 1rem;
}

.np-footer-contact {
  margin: 0.35rem 0 0.7rem;
  color: rgba(255, 247, 230, 0.82);
  font-size: 0.78rem;
}

.np-footer-widgets {
  margin-top: 0.65rem;
}

.np-page-title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.np-article-card {
  border: 1px solid var(--np-border);
  border-radius: 14px;
  background: #fff;
  padding: 1rem;
}

.np-content-body {
  color: var(--np-text);
}

.np-prose-page {
  max-width: 900px;
  margin-inline: auto;
}

.np-page-featured-image-wrap {
  margin-bottom: 1rem;
  border: 1px solid var(--np-border);
  border-radius: 12px;
  overflow: hidden;
}

.np-page-featured-image {
  display: block;
  width: 100%;
  height: auto;
}

.np-prose-page .np-content-body p {
  font-size: 1.02rem;
  color: #4a3728;
  margin: 0.75rem 0;
}

.np-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.np-post-card {
  border: 1px solid var(--np-border);
  border-radius: 12px;
  background: #fff;
}

.np-game-card .np-card-body .np-btn,
.np-promo-card .np-card-body .np-btn {
  width: 100%;
}

.np-post-card-link {
  display: block;
  padding: 0.9rem;
}

.np-post-title {
  margin: 0 0 0.3rem;
}

.np-post-excerpt {
  color: var(--np-muted);
  font-size: 0.86rem;
}

.np-meta {
  color: var(--np-muted);
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}

@media (max-width: 1024px) {
  .np-cards-3,
  .np-post-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .np-vip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .np-payments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .np-header-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .np-brand {
    margin-bottom: 0;
  }

  .np-primary-nav {
    display: none;
  }

  .np-menu-toggle {
    display: inline-flex;
  }

  .np-hero-grid,
  .np-cards-3,
  .np-post-grid,
  .np-payments-grid {
    grid-template-columns: 1fr;
  }

  .np-card-media-wrap {
    height: 180px;
  }

  .np-card-media-short {
    height: 140px;
  }

  .np-page-title {
    font-size: clamp(1.55rem, 6.5vw, 2rem);
  }

  .np-prose-page .np-content-body p {
    font-size: 0.96rem;
  }

  .np-vip-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .np-header-shell {
    position: static;
    backdrop-filter: none;
  }

  .np-header-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .np-primary-nav {
    display: none;
  }

  .np-menu-toggle {
    display: inline-flex;
  }
}
