#ns-age-bar {
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  padding: 6px 16px;
  display: flex;
  justify-content: center;
}
#ns-age-bar .ns-age-bar__text {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #94a3b8;
  text-transform: uppercase;
}
@media (min-width: 640px) {
  #ns-age-bar .ns-age-bar__text {
    font-size: 12px;
  }
}

#ns-ticker {
  width: 100%;
  background: #f43f5e;
  padding: 4px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
#ns-ticker .ns-ticker__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  animation: ns-pulse 2s ease-in-out infinite;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
#ns-ticker .ns-ticker__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  animation: ns-ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ns-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}
@keyframes ns-ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}
#ns-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: rgba(18, 17, 26, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}
@media (min-width: 640px) {
  #ns-header {
    padding: 16px 48px;
  }
}
#ns-header .ns-nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
#ns-header .ns-nav__logo:hover .ns-nav__logo-icon {
  animation: spin 1s linear infinite;
}
#ns-header .ns-nav__logo .ns-nav__logo-icon {
  color: #eab308;
  transition: all 0.3s;
}
#ns-header .ns-nav__logo .ns-nav__logo-name {
  font-family: "Georgia", serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: #fff;
}
#ns-header .ns-nav__links {
  display: none;
  align-items: center;
  gap: 32px;
  font-weight: 500;
  font-size: 14px;
  color: #94a3b8;
}
@media (min-width: 1024px) {
  #ns-header .ns-nav__links {
    display: flex;
  }
}
#ns-header .ns-nav__links a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}
#ns-header .ns-nav__links a:hover {
  color: #fff;
}
#ns-header .ns-nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
#ns-header .ns-nav__rating {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 640px) {
  #ns-header .ns-nav__rating {
    display: flex;
  }
}
#ns-header .ns-nav__rating svg {
  color: #eab308;
}
#ns-header .ns-nav__cta {
  background: #eab308;
  color: #000;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 0 15px rgba(234, 179, 8, 0.3);
  transition: background 0.2s;
}
@media (min-width: 640px) {
  #ns-header .ns-nav__cta {
    padding: 10px 20px;
  }
}
#ns-header .ns-nav__cta:hover {
  background: #facc15;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#ns-hero {
  position: relative;
  width: 100%;
  padding: 80px 24px 128px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 85vh;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 640px) {
  #ns-hero {
    padding: 80px 48px 128px;
  }
}
@media (min-width: 1024px) {
  #ns-hero {
    padding: 80px 96px 128px;
  }
}
#ns-hero .ns-hero__bg-dots {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  pointer-events: none;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 40px 40px;
}
#ns-hero .ns-hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, transparent, rgba(10, 9, 15, 0.8));
  pointer-events: none;
}
#ns-hero .ns-hero__content {
  position: relative;
  z-index: 10;
  max-width: 896px;
  border-left: 2px solid #eab308;
  padding: 8px 0 8px 32px;
}
@media (min-width: 640px) {
  #ns-hero .ns-hero__content {
    padding-left: 48px;
  }
}
#ns-hero .ns-hero__title {
  font-family: "Georgia", serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: #fff;
  filter: drop-shadow(0 20px 13px rgba(0, 0, 0, 0.5));
}
@media (min-width: 640px) {
  #ns-hero .ns-hero__title {
    font-size: 72px;
  }
}
@media (min-width: 1024px) {
  #ns-hero .ns-hero__title {
    font-size: 96px;
  }
}
#ns-hero .ns-hero__title .ns-hero__title-sub {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  font-weight: 500;
}
#ns-hero .ns-hero__desc {
  font-size: 18px;
  color: #94a3b8;
  max-width: 672px;
  line-height: 1.625;
  margin-bottom: 40px;
}
@media (min-width: 640px) {
  #ns-hero .ns-hero__desc {
    font-size: 20px;
  }
}
#ns-hero .ns-hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  #ns-hero .ns-hero__buttons {
    flex-direction: row;
  }
}
#ns-hero .ns-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #eab308;
  color: #000;
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 25px rgba(234, 179, 8, 0.4);
  transition: background 0.2s;
}
#ns-hero .ns-hero__btn-primary:hover {
  background: #facc15;
  color: #000;
}
#ns-hero .ns-hero__btn-secondary {
  padding: 16px 32px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: transparent;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
#ns-hero .ns-hero__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
#ns-hero .ns-hero__trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
  color: #94a3b8;
}
@media (min-width: 640px) {
  #ns-hero .ns-hero__trust-badges {
    gap: 40px;
  }
}
#ns-hero .ns-hero__trust-badges .ns-hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
}
#ns-hero .ns-hero__trust-badges .ns-hero__badge svg {
  color: #eab308;
}

#ns-bonuses {
  padding: 80px 24px;
  background: #0a090f;
  position: relative;
}
@media (min-width: 640px) {
  #ns-bonuses {
    padding: 80px 48px;
  }
}
@media (min-width: 1024px) {
  #ns-bonuses {
    padding: 80px 96px;
  }
}
#ns-bonuses .ns-bonuses__inner {
  max-width: 1280px;
  margin: 0 auto;
}
#ns-bonuses .ns-section-title {
  font-family: "Georgia", serif;
  font-size: 36px;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}
#ns-bonuses .ns-section-title::before {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: #eab308;
  flex-shrink: 0;
}
#ns-bonuses .ns-bonuses__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  #ns-bonuses .ns-bonuses__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  #ns-bonuses .ns-bonuses__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
#ns-bonuses .ns-bonus-card {
  background: #1e1c28;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}
#ns-bonuses .ns-bonus-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}
#ns-bonuses .ns-bonus-card .ns-bonus-card__stripe {
  height: 4px;
  width: 100%;
}
#ns-bonuses .ns-bonus-card .ns-bonus-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
#ns-bonuses .ns-bonus-card .ns-bonus-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
#ns-bonuses .ns-bonus-card .ns-bonus-card__badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 999px;
}
#ns-bonuses .ns-bonus-card .ns-bonus-card__amount {
  font-family: "Georgia", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}
@media (min-width: 640px) {
  #ns-bonuses .ns-bonus-card .ns-bonus-card__amount {
    font-size: 30px;
  }
}
#ns-bonuses .ns-bonus-card .ns-bonus-card__desc {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.625;
  margin-bottom: 32px;
  flex: 1;
}
#ns-bonuses .ns-bonus-card .ns-bonus-card__btn {
  display: block;
  width: 100%;
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
#ns-bonuses .ns-bonus-card .ns-bonus-card__btn:hover {
  background: rgba(255, 255, 255, 0.05);
}
#ns-bonuses .ns-bonuses__disclaimer {
  margin-top: 32px;
  text-align: center;
  font-size: 12px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#ns-stats {
  padding: 64px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: #12111a;
}
#ns-stats .ns-stats__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
}
@media (min-width: 640px) {
  #ns-stats .ns-stats__inner {
    padding: 0 48px;
  }
}
@media (min-width: 768px) {
  #ns-stats .ns-stats__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
#ns-stats .ns-stat {
  padding: 0 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
#ns-stats .ns-stat:last-child {
  border-right: none;
}
#ns-stats .ns-stat__number {
  font-family: "Georgia", serif;
  font-size: 36px;
  color: #fff;
  margin-bottom: 8px;
}
@media (min-width: 640px) {
  #ns-stats .ns-stat__number {
    font-size: 48px;
  }
}
#ns-stats .ns-stat__label {
  font-size: 14px;
  color: #eab308;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.075em;
}

.ns-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1e1c28;
}

.ns-table {
  width: 100%;
  text-align: left;
  border-collapse: collapse;
  min-width: 600px;
  color: #94a3b8;
}
.ns-table thead tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.4);
}
.ns-table thead tr th {
  padding: 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  color: #94a3b8;
  font-weight: 500;
}
.ns-table thead tr th.ns-table__th--right {
  text-align: right;
}
.ns-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}
.ns-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.05);
}
.ns-table tbody tr:last-child {
  border-bottom: none;
}
.ns-table tbody tr.ns-table__row--featured {
  background: rgba(234, 179, 8, 0.05);
  position: relative;
}
.ns-table tbody tr.ns-table__row--featured .ns-table__featured-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #eab308;
}
.ns-table tbody td {
  padding: 20px;
  font-size: 14px;
  color: #94a3b8;
  font-family: monospace;
}
.ns-table tbody td.ns-table__td--name {
  font-family: inherit;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
}
.ns-table tbody td.ns-table__td--bonus {
  color: #eab308;
  font-weight: 700;
}
.ns-table tbody td.ns-table__td--right {
  text-align: right;
}
.ns-table tbody td.ns-table__td--rating {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
}
.ns-table tbody td.ns-table__td--rating svg {
  color: #eab308;
}

.ns-table__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: inherit;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.ns-table__btn--primary {
  background: #eab308;
  color: #000;
}
.ns-table__btn--primary:hover {
  background: #facc15;
  color: #000;
}
.ns-table__btn--secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.ns-table__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

#ns-casino-table {
  padding: 96px 24px;
  background: #0a090f;
}
@media (min-width: 640px) {
  #ns-casino-table {
    padding: 96px 48px;
  }
}
@media (min-width: 1024px) {
  #ns-casino-table {
    padding: 96px 96px;
  }
}
#ns-casino-table .ns-casino-table__inner {
  max-width: 1280px;
  margin: 0 auto;
}

#ns-review {
  padding: 96px 24px;
  background: #12111a;
}
@media (min-width: 640px) {
  #ns-review {
    padding: 96px 48px;
  }
}
@media (min-width: 1024px) {
  #ns-review {
    padding: 96px 96px;
  }
}
#ns-review .ns-review__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 1024px) {
  #ns-review .ns-review__inner {
    flex-direction: row;
  }
}
#ns-review .ns-review__main {
  flex: 1;
}
#ns-review .ns-review__text {
  color: #94a3b8;
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 48px;
}
#ns-review .ns-review__text p {
  margin-bottom: 16px;
}
#ns-review .ns-review__pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  #ns-review .ns-review__pros-cons {
    grid-template-columns: repeat(2, 1fr);
  }
}
#ns-review .ns-pros-cons-card {
  background: #1e1c28;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #334155;
}
#ns-review .ns-pros-cons-card .ns-pros-cons-card__title {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
#ns-review .ns-pros-cons-card .ns-pros-cons-card__title--pros svg {
  color: #10b981;
}
#ns-review .ns-pros-cons-card .ns-pros-cons-card__title--cons svg {
  color: #f43f5e;
}
#ns-review .ns-pros-cons-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#ns-review .ns-pros-cons-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #94a3b8;
}
#ns-review .ns-pros-cons-card ul li svg {
  flex-shrink: 0;
  margin-top: 2px;
}
#ns-review .ns-pros-cons-card ul li.ns-pros-cons-card__item--pro svg {
  color: #10b981;
}
#ns-review .ns-pros-cons-card ul li.ns-pros-cons-card__item--con svg {
  color: #f43f5e;
}
#ns-review .ns-review__ratings-title {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 24px;
}
#ns-review .ns-rating-bar {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
#ns-review .ns-rating-bar .ns-rating-bar__label-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
}
#ns-review .ns-rating-bar .ns-rating-bar__label {
  color: #94a3b8;
}
#ns-review .ns-rating-bar .ns-rating-bar__score {
  color: #fff;
  font-family: monospace;
}
#ns-review .ns-rating-bar .ns-rating-bar__track {
  height: 8px;
  background: #000;
  border-radius: 999px;
  overflow: hidden;
}
#ns-review .ns-rating-bar .ns-rating-bar__fill {
  height: 100%;
  background: #eab308;
  border-radius: 999px;
}
#ns-review .ns-review__sidebar {
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  #ns-review .ns-review__sidebar {
    width: 320px;
  }
}
#ns-review .ns-key-facts {
  background: #1e1c28;
  border: 1px solid #334155;
  border-radius: 12px;
  overflow: hidden;
  position: sticky;
  top: 128px;
}
#ns-review .ns-key-facts .ns-key-facts__header {
  padding: 24px;
  background: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid #334155;
  text-align: center;
}
#ns-review .ns-key-facts .ns-key-facts__header h3 {
  font-family: "Georgia", serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 8px;
}
#ns-review .ns-key-facts .ns-key-facts__header p {
  font-size: 14px;
  color: #94a3b8;
}
#ns-review .ns-key-facts .ns-key-facts__table {
  width: 100%;
}
#ns-review .ns-key-facts .ns-key-facts__table tr {
  border-bottom: 1px solid #334155;
  transition: background 0.2s;
}
#ns-review .ns-key-facts .ns-key-facts__table tr:last-child {
  border-bottom: none;
}
#ns-review .ns-key-facts .ns-key-facts__table tr:hover {
  background: rgba(255, 255, 255, 0.05);
}
#ns-review .ns-key-facts .ns-key-facts__table td {
  padding: 12px 24px;
  font-size: 14px;
}
#ns-review .ns-key-facts .ns-key-facts__table td:first-child {
  color: #94a3b8;
  font-weight: 500;
  width: 50%;
}
#ns-review .ns-key-facts .ns-key-facts__table td:last-child {
  color: #fff;
  text-align: right;
}
#ns-review .ns-key-facts .ns-key-facts__cta {
  padding: 24px;
  background: rgba(0, 0, 0, 0.2);
}
#ns-review .ns-key-facts .ns-key-facts__cta .ns-key-facts__btn {
  display: block;
  width: 100%;
  background: #eab308;
  color: #000;
  padding: 12px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}
#ns-review .ns-key-facts .ns-key-facts__cta .ns-key-facts__btn:hover {
  background: #facc15;
  color: #000;
}

#ns-games {
  padding: 96px 24px;
  background: #0a090f;
}
@media (min-width: 640px) {
  #ns-games {
    padding: 96px 48px;
  }
}
@media (min-width: 1024px) {
  #ns-games {
    padding: 96px 96px;
  }
}
#ns-games .ns-games__inner {
  max-width: 1280px;
  margin: 0 auto;
}
#ns-games .ns-games__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
#ns-games .ns-games__filter-btn {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
#ns-games .ns-games__filter-btn--active {
  background: #eab308;
  color: #000;
}
#ns-games .ns-games__filter-btn--inactive {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
#ns-games .ns-games__filter-btn--inactive:hover {
  background: rgba(255, 255, 255, 0.2);
}
#ns-games .ns-games__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) {
  #ns-games .ns-games__grid {
    gap: 24px;
  }
}
@media (min-width: 768px) {
  #ns-games .ns-games__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
#ns-games .ns-game-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1e1c28;
}
#ns-games .ns-game-card:hover .ns-game-card__overlay {
  opacity: 1;
}
#ns-games .ns-game-card .ns-game-card__bg {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  mix-blend-mode: overlay;
}
#ns-games .ns-game-card .ns-game-card__info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  background: linear-gradient(to top, #000, transparent);
  z-index: 10;
}
#ns-games .ns-game-card .ns-game-card__name {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 4px;
}
#ns-games .ns-game-card .ns-game-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
#ns-games .ns-game-card .ns-game-card__rtp {
  font-family: monospace;
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 6px;
  border-radius: 4px;
}
#ns-games .ns-game-card .ns-game-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 20;
  backdrop-filter: blur(4px);
}
#ns-games .ns-game-card .ns-game-card__btn-play {
  background: #eab308;
  color: #000;
  padding: 8px 24px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
#ns-games .ns-game-card .ns-game-card__btn-play:hover {
  background: #facc15;
}
#ns-games .ns-game-card .ns-game-card__btn-demo {
  color: #fff;
  padding: 8px 24px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  background: transparent;
  cursor: pointer;
}
#ns-games .ns-game-card .ns-game-card__btn-demo:hover {
  background: rgba(255, 255, 255, 0.1);
}

#ns-banking {
  padding: 96px 24px;
  background: #12111a;
  border-top: 1px solid #334155;
  border-bottom: 1px solid #334155;
}
@media (min-width: 640px) {
  #ns-banking {
    padding: 96px 48px;
  }
}
@media (min-width: 1024px) {
  #ns-banking {
    padding: 96px 96px;
  }
}
#ns-banking .ns-banking__inner {
  max-width: 1280px;
  margin: 0 auto;
}
#ns-banking .ns-payment-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 64px;
  opacity: 0.7;
}
@media (min-width: 640px) {
  #ns-banking .ns-payment-logos {
    gap: 24px;
  }
}
#ns-banking .ns-payment-logo {
  padding: 12px 24px;
  background: #1e1c28;
  border: 1px solid #334155;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  font-weight: 700;
  color: #94a3b8;
}

#ns-responsible {
  background: #000;
  padding: 32px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
#ns-responsible .ns-responsible__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  opacity: 0.6;
  margin-bottom: 16px;
}
@media (min-width: 640px) {
  #ns-responsible .ns-responsible__logos {
    gap: 48px;
  }
}
#ns-responsible .ns-responsible__age {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}
#ns-responsible .ns-responsible__org {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  color: #fff;
}
#ns-responsible .ns-responsible__text {
  color: #94a3b8;
  font-size: 14px;
  max-width: 576px;
  margin: 0 auto;
}

#ns-faq {
  padding: 96px 24px;
  background: #12111a;
}
@media (min-width: 640px) {
  #ns-faq {
    padding: 96px 48px;
  }
}
@media (min-width: 1024px) {
  #ns-faq {
    padding: 96px 96px;
  }
}
#ns-faq .ns-faq__inner {
  max-width: 768px;
  margin: 0 auto;
}
#ns-faq .ns-faq__title {
  font-family: "Georgia", serif;
  font-size: 36px;
  margin-bottom: 48px;
  text-align: center;
  color: #fff;
}
#ns-faq .ns-faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#ns-faq .ns-faq-item {
  background: #1e1c28;
  border: 1px solid #334155;
  border-radius: 8px;
  cursor: pointer;
}
#ns-faq .ns-faq-item[open] .ns-faq-item__icon {
  transform: rotate(180deg);
}
#ns-faq .ns-faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  padding: 24px;
  color: #fff;
  list-style: none;
  user-select: none;
}
#ns-faq .ns-faq-item summary::-webkit-details-marker {
  display: none;
}
#ns-faq .ns-faq-item .ns-faq-item__icon {
  color: #eab308;
  flex-shrink: 0;
  transition: transform 0.2s;
}
#ns-faq .ns-faq-item .ns-faq-item__answer {
  padding: 24px;
  padding-top: 0;
  color: #94a3b8;
  border-top: 1px solid #334155;
  margin-top: 8px;
}
#ns-faq .ns-faq-item .ns-faq-item__answer p {
  font-size: 15px;
  line-height: 1.7;
}

#ns-footer {
  background: #0a090f;
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
#ns-footer .ns-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 640px) {
  #ns-footer .ns-footer__inner {
    padding: 0 48px;
  }
}
#ns-footer .ns-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  #ns-footer .ns-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  #ns-footer .ns-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
#ns-footer .ns-footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #fff;
}
#ns-footer .ns-footer__logo svg {
  color: #eab308;
}
#ns-footer .ns-footer__logo span {
  font-family: "Georgia", serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.025em;
}
#ns-footer .ns-footer__desc {
  color: #94a3b8;
  margin-bottom: 24px;
  font-size: 14px;
  max-width: 340px;
}
#ns-footer .ns-footer__contact {
  font-size: 14px;
  font-family: monospace;
  color: #64748b;
}
#ns-footer .ns-footer__col-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  font-size: 14px;
}
#ns-footer .ns-footer__col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
#ns-footer .ns-footer__col-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
#ns-footer .ns-footer__col-links a:hover {
  color: #fff;
}
#ns-footer .ns-footer__bottom {
  border-top: 1px solid #334155;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (min-width: 768px) {
  #ns-footer .ns-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
#ns-footer .ns-footer__legal {
  font-size: 12px;
  color: #64748b;
  text-align: center;
  max-width: 672px;
}
@media (min-width: 768px) {
  #ns-footer .ns-footer__legal {
    text-align: left;
  }
}
#ns-footer .ns-footer__payment-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.55;
  transition: opacity 0.2s;
}
#ns-footer .ns-footer__payment-badges:hover {
  opacity: 1;
}
#ns-footer .ns-footer__payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 56px;
  height: 32px;
  padding: 0 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(234, 179, 8, 0.2);
  line-height: 0;
}
#ns-footer .ns-footer__payment-badge svg {
  display: block;
  flex-shrink: 0;
}
#ns-footer .ns-footer__payment-badge--ssl {
  line-height: 1;
}
#ns-footer .ns-footer__payment-badge .ns-footer__badge-label {
  font-size: 10px;
  font-weight: 700;
  color: #eab308;
  letter-spacing: 0.05em;
  line-height: 1;
}
