@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;700&display=swap');

:root {
  --nor-bg: #070b17;
  --nor-surface: #0d1322;
  --nor-surface-2: #141c2e;
  --nor-surface-3: #1b2540;
  --nor-primary: #c0102e;
  --nor-primary-h: #a00c25;
  --nor-gold: #d4af37;
  --nor-gold-h: #b8962e;
  --nor-text: #e8ecf5;
  --nor-muted: #6b7a99;
  --nor-border: #1c2840;
  --nor-radius: 8px;
  --nor-radius-lg: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: var(--nor-bg);
  color: var(--nor-text);
  line-height: 1.65;
}

a { color: var(--nor-gold); text-decoration: none; }
a:hover { color: var(--nor-gold-h); }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ─── Buttons ─── */
.nor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--nor-radius);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.nor-btn--primary {
  background: var(--nor-primary);
  border-color: var(--nor-primary);
  color: #fff;
}
.nor-btn--primary:hover { background: var(--nor-primary-h); border-color: var(--nor-primary-h); color: #fff; }
.nor-btn--gold {
  background: var(--nor-gold);
  border-color: var(--nor-gold);
  color: #0a0c14;
}
.nor-btn--gold:hover { background: var(--nor-gold-h); border-color: var(--nor-gold-h); color: #0a0c14; }
.nor-btn--ghost {
  background: transparent;
  border-color: var(--nor-border);
  color: var(--nor-text);
}
.nor-btn--ghost:hover { border-color: var(--nor-gold); color: var(--nor-gold); }
.nor-btn--lg { padding: 14px 32px; font-size: 16px; }
.nor-btn--sm { padding: 6px 12px; font-size: 11px; margin-top: 8px; }
.nor-btn--full { width: 100%; }

/* ─── Layout ─── */
.nor-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Header ─── */
.nor-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 11, 23, 0.95);
  border-bottom: 1px solid var(--nor-border);
  backdrop-filter: blur(8px);
}
.nor-header__bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 10px;
  max-width: 1120px;
  margin: 0 auto;
}
.nor-head__left { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nor-logo { display: flex; align-items: center; }
.nor-logo img { height: 40px; width: auto; }

.nor-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  border: 1px solid var(--nor-border);
  border-radius: var(--nor-radius);
  background: transparent;
  cursor: pointer;
  padding: 8px;
}
.nor-burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--nor-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nor-burger:hover { border-color: var(--nor-gold); }

.nor-nav { flex: 1; }
.nor-nav ul { display: flex; align-items: center; gap: 4px; }
.nor-nav ul li a {
  padding: 6px 12px;
  border-radius: var(--nor-radius);
  color: var(--nor-muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s;
  position: relative;
}
.nor-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 12px; right: 12px;
  height: 2px;
  background: var(--nor-gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nor-nav ul li a:hover, .nor-nav ul li a.active { color: var(--nor-text); }
.nor-nav ul li a:hover::after, .nor-nav ul li a.active::after { transform: scaleX(1); }

.nor-head__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; margin-left: auto; }

/* ─── Mobile panel ─── */
.nor-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.3s;
}
.nor-mobile-panel {
  position: fixed;
  top: 0; left: 0;
  width: min(300px, 88vw);
  height: 100%;
  background: var(--nor-surface);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 24px;
  transform: translateX(-100%);
  transition: transform 0.3s;
  border-right: 1px solid var(--nor-border);
}
.nor-mobile-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nor-mobile-panel__logo img { height: 32px; }
.nor-mobile-panel__close {
  width: 32px; height: 32px;
  border: 1px solid var(--nor-border);
  border-radius: var(--nor-radius);
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nor-mobile-panel__close::before,
.nor-mobile-panel__close::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 2px;
  background: var(--nor-text);
  border-radius: 1px;
}
.nor-mobile-panel__close::before { transform: translate(-50%,-50%) rotate(45deg); }
.nor-mobile-panel__close::after { transform: translate(-50%,-50%) rotate(-45deg); }
.nor-mobile-panel__nav { display: flex; flex-direction: column; gap: 4px; }
.nor-mobile-panel__nav li a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--nor-radius);
  color: var(--nor-text);
  font-size: 15px;
  font-weight: 700;
}
.nor-mobile-panel__nav li a:hover { background: var(--nor-surface-2); }
.nor-mobile-panel__actions { display: flex; flex-direction: column; gap: 8px; margin-top: auto; }

body.nor-menu-open { overflow: hidden; }

/* ─── Hero ─── */
.nor-hero {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.nor-hero__bg {
  position: absolute;
  inset: 0;
}
.nor-hero__bg picture,
.nor-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.nor-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,11,23,0.95) 0%, rgba(7,11,23,0.6) 50%, rgba(7,11,23,0.2) 100%);
}
.nor-hero__content {
  position: relative;
  z-index: 2;
  padding: 48px 20px;
  margin: 0 auto 0 0;
  padding-left: max(20px, calc((100vw - 1120px) / 2 + 20px));
}
.nor-hero__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.nor-hero__title span { color: var(--nor-gold); }
.nor-hero__bonus {
  font-size: 22px;
  font-weight: 700;
  color: var(--nor-gold);
  margin-bottom: 8px;
}
.nor-hero__text {
  font-size: 15px;
  color: #fff;
  margin-bottom: 24px;
  max-width: 540px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.nor-hero__trust {
  display: flex;
  gap: 20px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.nor-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(232,236,245,0.7);
}
.nor-hero__trust-item svg { flex-shrink: 0; }

/* ─── Sections ─── */
.nor-section { padding: 60px 0; }
.nor-section--alt { background: var(--nor-surface); }
.nor-section--dark { background: var(--nor-surface-2); }

.nor-h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--nor-text);
}
.nor-h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--nor-text);
}
.nor-lead {
  font-size: 15px;
  color: var(--nor-muted);
  margin-bottom: 32px;
  max-width: 720px;
}
.nor-text { font-size: 15px; line-height: 1.7; color: rgba(232,236,245,0.85); }
.nor-text p { margin-bottom: 14px; }
.nor-text p:last-child { margin-bottom: 0; }

/* ─── Quick Table ─── */
.nor-table-wrap { overflow-x: auto; }
.nor-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.nor-table th {
  background: var(--nor-surface-3);
  color: var(--nor-gold);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--nor-border);
}
.nor-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--nor-border);
  color: var(--nor-text);
}
.nor-table tr:last-child td { border-bottom: none; }
.nor-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.nor-table td:first-child { color: var(--nor-muted); font-weight: 700; white-space: nowrap; }

/* ─── Games grid ─── */
.nor-games-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.nor-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--nor-radius);
  border: 1px solid var(--nor-border);
  background: var(--nor-surface-2);
  color: var(--nor-muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.nor-tab.active, .nor-tab:hover {
  background: var(--nor-surface-3);
  border-color: var(--nor-gold);
  color: var(--nor-gold);
}
.nor-tab img { width: 16px; height: 16px; }

.nor-games-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.nor-game-card {
  flex: 1 1 calc(12.5% - 12px);
  min-width: 140px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  background: var(--nor-surface-2);
  border: 1px solid var(--nor-border);
  border-radius: var(--nor-radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}
.nor-game-card:hover { border-color: var(--nor-gold); }
.nor-game-card__img {
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  background: var(--nor-surface-3);
}
.nor-game-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.nor-game-card:hover .nor-game-card__img img { transform: scale(1.05); }
.nor-game-card__body {
  padding: 10px 10px 4px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nor-game-card__name {
  font-size: 12px;
  font-weight: 700;
  color: var(--nor-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.nor-game-card__rtp {
  font-size: 11px;
  color: var(--nor-gold);
}
.nor-game-card__vol {
  font-size: 11px;
  color: var(--nor-muted);
}
.nor-game-card__rtp-desc {
  font-size: 10px;
  line-height: 1.35;
  color: var(--nor-muted);
  margin-top: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.nor-game-card__foot {
  padding: 8px 10px 10px;
}
.nor-game-card__foot--2 {
  display: flex;
  gap: 6px;
  align-items: stretch;
}
.nor-game-card__foot--2 a {
  flex: 1;
  min-width: 0;
}
.nor-game-card__foot a {
  display: block;
  text-align: center;
  padding: 6px 8px;
  border-radius: var(--nor-radius);
  background: var(--nor-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nor-game-card__foot a:hover { background: var(--nor-primary-h); color: #fff; }
.nor-game-card__foot a.nor-game-card__btn--ghost {
  background: transparent;
  border: 1px solid var(--nor-border);
  color: var(--nor-text);
}
.nor-game-card__foot a.nor-game-card__btn--ghost:hover {
  border-color: var(--nor-gold);
  color: var(--nor-gold);
  background: rgba(255, 255, 255, 0.04);
}

/* ─── Bonus steps ─── */
.nor-bonus-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.nor-bonus-card {
  flex: 1 1 calc(25% - 12px);
  min-width: 220px;
  background: var(--nor-surface-2);
  border: 1px solid var(--nor-border);
  border-radius: var(--nor-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.nor-bonus-card__img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.nor-bonus-card__body { padding: 16px; flex: 1; }
.nor-bonus-card__step {
  font-size: 11px;
  font-weight: 700;
  color: var(--nor-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.nor-bonus-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--nor-gold);
  margin-bottom: 6px;
  line-height: 1.3;
}
.nor-bonus-card__info {
  font-size: 13px;
  color: var(--nor-muted);
}
.nor-bonus-card__info span { color: var(--nor-text); }
.nor-bonus-card__foot {
  padding: 0 16px 16px;
}

/* ─── Features ─── */
.nor-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.nor-feature {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 240px;
  background: var(--nor-surface-2);
  border: 1px solid var(--nor-border);
  border-radius: var(--nor-radius-lg);
  padding: 24px;
}
.nor-feature__icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(192,16,46,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.nor-feature__icon img { width: 24px; height: 24px; }
.nor-feature__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.nor-feature__text { font-size: 14px; color: var(--nor-muted); line-height: 1.6; }

/* ─── Pros/Cons ─── */
.nor-pro-con {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.nor-pro-col, .nor-con-col {
  flex: 1 1 calc(50% - 10px);
  min-width: 260px;
  background: var(--nor-surface-2);
  border: 1px solid var(--nor-border);
  border-radius: var(--nor-radius-lg);
  padding: 24px;
}
.nor-pro-col { border-top: 3px solid #22c55e; }
.nor-con-col { border-top: 3px solid var(--nor-primary); }
.nor-pro-col h3 { color: #22c55e; }
.nor-con-col h3 { color: var(--nor-primary); }
.nor-pro-col ul li, .nor-con-col ul li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--nor-text);
  padding: 8px 0;
  border-bottom: 1px solid var(--nor-border);
  line-height: 1.5;
}
.nor-pro-col ul li:last-child, .nor-con-col ul li:last-child { border-bottom: none; }
.nor-pro-col ul li::before { content: '✓'; color: #22c55e; font-weight: 700; flex-shrink: 0; }
.nor-con-col ul li::before { content: '✗'; color: var(--nor-primary); font-weight: 700; flex-shrink: 0; }

/* ─── Providers ─── */
.nor-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}
.nor-provider {
  flex: 1 1 160px;
  background: #ffff;
  border: 1px solid var(--nor-border);
  border-radius: var(--nor-radius);
  padding: 18px 14px;
  text-align: center;
  transition: border-color 0.2s;
}
.nor-provider:hover { border-color: var(--nor-gold); }
.nor-provider img {
  max-width: 120px;
  height: 40px;
  object-fit: contain;
  margin: 0 auto 10px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nor-provider:hover img { opacity: 1; }
.nor-provider__name {
  font-size: 12px;
  font-weight: 700;
  color: #0a0c14;
  margin-bottom: 4px;
}
.nor-provider__desc {
  font-size: 11px;
  color: #555e72;
  line-height: 1.5;
}

/* ─── Reviews slider ─── */
.nor-reviews-slider { position: relative; overflow: hidden; }
.nor-reviews-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}
.nor-review-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  background: var(--nor-surface-2);
  border: 1px solid var(--nor-border);
  border-radius: var(--nor-radius-lg);
  padding: 22px;
}
.nor-review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}
.nor-review-card__header h4 { font-size: 15px; font-weight: 700; }
.nor-review-card__stars { color: var(--nor-gold); font-size: 14px; }
.nor-review-card__meta { font-size: 12px; color: var(--nor-muted); margin-bottom: 10px; }
.nor-review-card p { font-size: 14px; color: rgba(232,236,245,0.8); line-height: 1.6; font-style: italic; }

.nor-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}
.nor-slider-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--nor-border);
  background: var(--nor-surface-2);
  color: var(--nor-text);
  font-size: 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.nor-slider-btn:hover { border-color: var(--nor-gold); background: var(--nor-surface-3); }
.nor-slider-dots { display: flex; gap: 6px; }
.nor-slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--nor-border);
  cursor: pointer;
  transition: background 0.2s;
}
.nor-slider-dot.active { background: var(--nor-gold); }

/* ─── FAQ ─── */
.nor-faq { display: flex; flex-direction: column; gap: 8px; }
.nor-faq-item {
  background: var(--nor-surface-2);
  border: 1px solid var(--nor-border);
  border-radius: var(--nor-radius);
  overflow: hidden;
}
.nor-faq-item.open { border-color: var(--nor-gold); }
.nor-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--nor-text);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}
.nor-faq-btn::after {
  content: '+';
  font-size: 20px;
  color: var(--nor-gold);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.nor-faq-item.open .nor-faq-btn::after { transform: rotate(45deg); }
.nor-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.nor-faq-body-inner {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--nor-muted);
  line-height: 1.7;
}

/* ─── Rating bar ─── */
.nor-rating-box {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  background: var(--nor-surface-2);
  border: 1px solid var(--nor-border);
  border-radius: var(--nor-radius-lg);
  padding: 28px;
  margin-bottom: 40px;
}
.nor-rating-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.nor-rating-score strong { font-size: 48px; font-weight: 700; color: var(--nor-gold); line-height: 1; }
.nor-rating-score span { font-size: 13px; color: var(--nor-muted); }
.nor-stars { color: var(--nor-gold); font-size: 20px; }
.nor-rating-bars { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 8px; }
.nor-rating-row { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.nor-rating-row span:first-child { width: 140px; color: var(--nor-muted); flex-shrink: 0; }
.nor-rating-row span:last-child { width: 32px; text-align: right; color: var(--nor-gold); font-weight: 700; flex-shrink: 0; }
.nor-rating-bar-wrap { flex: 1; background: var(--nor-border); border-radius: 4px; height: 6px; }
.nor-rating-bar { height: 6px; background: var(--nor-gold); border-radius: 4px; }

/* ─── Payments layout ─── */
.nor-pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.nor-pay-item {
  flex: 1 1 calc(50% - 6px);
  min-width: 280px;
  background: var(--nor-surface-2);
  border: 1px solid var(--nor-border);
  border-radius: var(--nor-radius-lg);
  padding: 20px;
}
.nor-pay-item h3 { font-size: 16px; margin-bottom: 14px; color: var(--nor-gold); }
.nor-pay-item ul li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--nor-border);
  font-size: 13px;
}
.nor-pay-item ul li:last-child { border-bottom: none; }
.nor-pay-item ul li span:first-child { color: var(--nor-muted); }

/* ─── Steps list ─── */
.nor-steps { display: flex; flex-direction: column; gap: 16px; }
.nor-step {
  display: flex;
  gap: 16px;
  background: var(--nor-surface-2);
  border: 1px solid var(--nor-border);
  border-radius: var(--nor-radius-lg);
  padding: 20px;
  align-items: flex-start;
}
.nor-step__num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--nor-primary);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nor-step__title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.nor-step__text { font-size: 14px; color: var(--nor-muted); line-height: 1.6; }

/* ─── Two-col layout ─── */
.nor-two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}
.nor-two-col__img { flex: 1 1 380px; max-width: 520px; }
.nor-two-col__img img { width: 100%; border-radius: var(--nor-radius-lg); }
.nor-two-col__text { flex: 1 1 300px; }

/* ─── Footer ─── */
.nor-footer {
  background: var(--nor-surface);
  border-top: 1px solid var(--nor-border);
  padding: 48px 0 24px;
}
.nor-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}
.nor-footer__brand { flex: 1 1 240px; }
.nor-footer__brand .nor-logo { margin-bottom: 14px; }
.nor-footer__brand p { font-size: 13px; color: var(--nor-muted); line-height: 1.7; max-width: 300px; }
.nor-footer__col { flex: 1 1 140px; }
.nor-footer__col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--nor-muted); margin-bottom: 14px; }
.nor-footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.nor-footer__col ul li a { font-size: 14px; color: var(--nor-muted); transition: color 0.2s; }
.nor-footer__col ul li a:hover { color: var(--nor-gold); }

.nor-footer__payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  align-items: center;
}
.nor-footer__payments img { height: 28px; width: auto; opacity: 0.6; }

.nor-footer__social { display: flex; gap: 10px; margin-top: 16px; }
.nor-footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--nor-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.nor-footer__social a:hover { border-color: var(--nor-gold); }
.nor-footer__social img { width: 16px; height: 16px; opacity: 0.7; }

.nor-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--nor-border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.nor-footer__bottom p { font-size: 12px; color: var(--nor-muted); }
.nor-footer__bottom a { color: var(--nor-muted); font-size: 12px; }
.nor-footer__bottom a:hover { color: var(--nor-gold); }
.nor-footer__legal {
  font-size: 12px;
  color: var(--nor-muted);
  line-height: 1.7;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--nor-border);
}

/* ─── Badge / tag ─── */
.nor-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(212,175,55,0.15);
  color: var(--nor-gold);
  border: 1px solid rgba(212,175,55,0.3);
}

/* ─── Section header ─── */
.nor-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.nor-section-head .nor-h2 { margin-bottom: 0; }

/* ─── Missions ─── */
.nor-missions-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--nor-border);
  padding-bottom: 16px;
}
.nor-missions-panel { display: none; }
.nor-missions-panel.active { display: block; }

.nor-mission-group {
  margin-bottom: 32px;
}
.nor-mission-group__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--nor-muted);
  margin-bottom: 14px;
}
.nor-mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.nor-mission-card {
  flex: 1 1 calc(16.666% - 10px);
  min-width: 120px;
  max-width: 160px;
  background: var(--nor-surface-2);
  border: 1px solid var(--nor-border);
  border-radius: var(--nor-radius-lg);
  overflow: hidden;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.nor-mission-card:hover {
  border-color: var(--nor-gold);
  transform: translateY(-2px);
}
.nor-mission-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--nor-surface-3);
}
.nor-mission-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nor-mission-card__body {
  padding: 8px 8px 10px;
}
.nor-mission-card__name {
  font-size: 11px;
  font-weight: 700;
  color: var(--nor-text);
  margin-bottom: 3px;
  line-height: 1.3;
}
.nor-mission-card__reward {
  font-size: 11px;
  color: var(--nor-gold);
  font-weight: 700;
}
.nor-mission-card__desc {
  font-size: 10px;
  color: var(--nor-muted);
  margin-top: 2px;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .nor-mission-card { flex: 1 1 calc(33.333% - 8px); min-width: 90px; }
}

/* ─── Responsive ─── */
@media (max-width: 980px) {
  .nor-burger { display: flex; }
  .nor-nav { display: none; }
  .nor-hero__title { font-size: 30px; }
  .nor-review-card { flex: 0 0 calc(50% - 10px); }
  .nor-game-card { flex: 1 1 calc(20% - 10px); }
  .nor-feature { flex: 1 1 calc(50% - 10px); }
}

@media (max-width: 640px) {
  .nor-hero { min-height: 420px; }
  .nor-hero__title { font-size: 24px; }
  .nor-hero__bonus { font-size: 18px; }
  .nor-section { padding: 40px 0; }
  .nor-h2 { font-size: 22px; }
  .nor-review-card { flex: 0 0 100%; }
  .nor-game-card { flex: 1 1 calc(33.333% - 8px); min-width: 100px; }
  .nor-feature { flex: 1 1 100%; }
  .nor-bonus-card { flex: 1 1 100%; }
  .nor-pro-col, .nor-con-col { flex: 1 1 100%; }
  .nor-pay-item { flex: 1 1 100%; }
}
