/* ─── Variables ──────────────────────────────────────────────────────────── */
:root {
  --accent:       #f5a623;
  --accent2:      #f1c40f;
  --bg:           #001a10;
  --card-bg:      rgba(245,166,35,.07);
  --card-border:  rgba(245,166,35,.22);
  --text:         #ecf0f1;
  --font-body:    'Inter', sans-serif;
  --font-head:    'Poppins', sans-serif;
  --sidebar-w:    240px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body   { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.7; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; color: var(--text); }
p, li, td, th, blockquote { color: var(--text); }
a { color: var(--accent); }
html { scroll-padding-top: 72px; }

/* ─── Header ─────────────────────────────────────────────────────────────── */
.ngjuh-site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(var(--bg-rgb,0,26,16),.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--card-border);
  padding: 10px 0;
}
.ngjuh-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1400px; margin: 0 auto; padding: 0 20px; gap: 12px;
}
.ngjuh-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.ngjuh-logo img { height: 36px; width: auto; }
.ngjuh-logo-icon {
  width: 32px; height: 32px; border-radius: 7px; flex-shrink: 0;
  background: var(--accent); color: #000;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 1rem; font-weight: 800;
}
.ngjuh-logo-name { font-family: var(--font-head); font-size: .95rem; font-weight: 700; color: var(--text); letter-spacing: .3px; }
.ngjuh-header-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.ngjuh-btn-login {
  padding: 9px 20px; border: 1.5px solid #61ffbb; color: #61ffbb;
  text-decoration: none; border-radius: 8px; font-weight: 600; font-size: .9rem;
  transition: .2s; white-space: nowrap;
}
.ngjuh-btn-login:hover { background: rgba(97,255,187,.15); color: #61ffbb; }
.ngjuh-btn-register {
  padding: 9px 22px; background: #fcbb00;
  color: #000; text-decoration: none; border-radius: 8px; font-weight: 700;
  font-size: .9rem; box-shadow: 0 4px 14px rgba(252,187,0,.3); transition: .25s; white-space: nowrap;
}
.ngjuh-btn-register:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(252,187,0,.4); background: #e5a900; }
.ngjuh-hamburger {
  display: none; background: none; border: none; color: var(--text);
  font-size: 22px; cursor: pointer; flex-shrink: 0;
}
@media (max-width:768px) {
  .ngjuh-hamburger { display: block; }
  .ngjuh-header-cta { flex-shrink: 0; }
  .ngjuh-btn-login { display: none; }
  .ngjuh-btn-register {
    padding: 8px 12px; font-size: .78rem;
    max-width: 130px; overflow: hidden; text-overflow: ellipsis;
  }
}
@media (max-width:380px) {
  .ngjuh-btn-register { max-width: 100px; font-size: .72rem; padding: 7px 10px; }
}

/* ─── Page wrapper: sidebar + main ───────────────────────────────────────── */
.ngjuh-page-wrapper {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  min-height: calc(100vh - 62px);
}
@media (max-width:768px) { .ngjuh-page-wrapper { grid-template-columns: 1fr; } }

/* ─── Sidebar ─────────────────────────────────────────────────────────────── */
.ngjuh-sidebar {
  position: sticky; top: 62px; align-self: start;
  height: calc(100vh - 62px); overflow-y: auto;
  background: rgba(var(--bg-rgb,0,10,6),.85); border-right: 1px solid var(--card-border);
  padding: 20px 12px;
  scrollbar-width: thin; scrollbar-color: var(--card-border) transparent;
}
@media (max-width:768px) {
  .ngjuh-sidebar {
    position: fixed; top: 62px; left: 0; bottom: 0;
    width: var(--sidebar-w); z-index: 200;
    transform: translateX(-100%); transition: transform .25s ease;
  }
  .ngjuh-sidebar.open { transform: translateX(0); }
}
.ngjuh-sidebar-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 199;
}
.ngjuh-sidebar-overlay.active { display: block; }
.ngjuh-sidebar-group { margin-bottom: 28px; }
.ngjuh-sidebar-label {
  font-size: .68rem; font-weight: 700; letter-spacing: 1.2px;
  color: rgba(236,240,241,.4); text-transform: uppercase; padding: 0 8px; margin-bottom: 6px; display: block;
}
.ngjuh-sidebar-link {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px;
  color: rgba(236,240,241,.8); text-decoration: none; border-radius: 8px;
  font-size: .88rem; font-weight: 500; transition: .2s; margin-bottom: 2px;
}
.ngjuh-sidebar-link i { width: 16px; font-size: 13px; color: var(--accent); flex-shrink: 0; }
.ngjuh-sidebar-link:hover { background: var(--card-bg); color: var(--accent); }

/* ─── Main content ────────────────────────────────────────────────────────── */
.ngjuh-main-content { min-width: 0; padding: 32px 36px; }
@media (max-width:768px) { .ngjuh-main-content { padding: 16px 14px; } }
@media (max-width:400px) { .ngjuh-main-content { padding: 12px 10px; } }

/* ─── Hero ────────────────────────────────────────────────────────────────── */
.ngjuh-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center; padding: 40px 0; margin-bottom: 44px;
}
@media (max-width:900px) { .ngjuh-hero { grid-template-columns: 1fr; gap: 24px; padding: 24px 0; margin-bottom: 32px; } }
.ngjuh-hero-content h1 {
  font-size: 2.4rem; line-height: 1.15; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
@media (max-width:768px) { .ngjuh-hero-content h1 { font-size: 1.55rem; } }
@media (max-width:400px) { .ngjuh-hero-content h1 { font-size: 1.3rem; } }
.ngjuh-hero-subtitle { font-size: .95rem; color: rgba(236,240,241,.8); margin-bottom: 16px; }
.ngjuh-bonus-display {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .88rem; font-weight: 600; line-height: 1.4;
  color: var(--accent2); background: rgba(241,196,15,.1);
  border: 1px solid rgba(241,196,15,.3); border-radius: 8px;
  padding: 8px 14px; margin-bottom: 20px;
}
.ngjuh-bonus-display::before { content: '🎁'; font-size: 1rem; }
.ngjuh-hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.ngjuh-btn-primary {
  padding: 12px 26px; background: #fcbb00;
  color: #000; text-decoration: none; border-radius: 10px; font-weight: 700; font-size: .95rem;
  box-shadow: 0 6px 20px rgba(252,187,0,.3); transition: .25s; display: inline-block; white-space: nowrap;
}
.ngjuh-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(252,187,0,.4); color: #000; background: #e5a900; }
.ngjuh-btn-secondary {
  padding: 12px 26px; border: 2px solid #61ffbb; color: #61ffbb;
  text-decoration: none; border-radius: 10px; font-weight: 700; font-size: .95rem;
  transition: .25s; display: inline-block; white-space: nowrap;
}
.ngjuh-btn-secondary:hover { background: rgba(97,255,187,.1); }
@media (max-width:480px) {
  .ngjuh-btn-primary, .ngjuh-btn-secondary { width: 100%; text-align: center; padding: 12px 16px; }
}
.ngjuh-update-date { font-size: .82rem; color: rgba(236,240,241,.5); }
.ngjuh-hero-banner img { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 10px 40px rgba(0,0,0,.4); }

/* ─── USP cards ──────────────────────────────────────────────────────────── */
.ngjuh-usp-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 40px; }
@media (max-width:600px) { .ngjuh-usp-cards { grid-template-columns: repeat(3,1fr); gap: 10px; } }
@media (max-width:400px) { .ngjuh-usp-cards { grid-template-columns: 1fr; gap: 10px; } }
.ngjuh-usp-card {
  background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 12px;
  padding: 22px 16px; text-align: center; transition: .25s;
}
@media (max-width:600px) { .ngjuh-usp-card { padding: 16px 10px; border-radius: 10px; } }
.ngjuh-usp-card:hover { transform: translateY(-5px); border-color: var(--accent); }
.ngjuh-usp-card i { font-size: 2rem; color: var(--accent); margin-bottom: 10px; display: block; }
@media (max-width:600px) { .ngjuh-usp-card i { font-size: 1.4rem; margin-bottom: 6px; } }
.ngjuh-usp-card .ngjuh-usp-value { font-size: 1.5rem; font-weight: 800; font-family: var(--font-head); margin-bottom: 4px; }
@media (max-width:600px) { .ngjuh-usp-card .ngjuh-usp-value { font-size: 1.1rem; } }
.ngjuh-usp-card .ngjuh-usp-label { font-size: .78rem; color: rgba(236,240,241,.7); }

/* ─── Overview box ───────────────────────────────────────────────────────── */
.ngjuh-overview-box {
  background: linear-gradient(135deg, rgba(245,166,35,.08), rgba(241,196,15,.06));
  border: 2px solid var(--accent); border-radius: 18px; padding: 36px; margin-bottom: 52px;
}
.ngjuh-overview-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: 20px; }
.ngjuh-overview-item { text-align: center; }
.ngjuh-overview-label { font-size: .8rem; color: rgba(236,240,241,.6); margin-bottom: 6px; }
.ngjuh-overview-value { font-size: 1.2rem; font-weight: 700; color: var(--accent2); font-family: var(--font-head); }

/* ─── Sections ────────────────────────────────────────────────────────────── */
.ngjuh-section { margin-bottom: 56px; }
.ngjuh-section h2 {
  font-size: 2rem; margin-bottom: 22px; padding-bottom: 14px; position: relative;
}
.ngjuh-section h2::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 56px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.ngjuh-section h3 { font-size: 1.25rem; margin: 24px 0 12px; color: var(--accent); }
.ngjuh-section p { margin-bottom: 16px; line-height: 1.8; color: rgba(236,240,241,.9); }
.ngjuh-section ul, .ngjuh-section ol { padding-left: 20px; margin-bottom: 16px; }
.ngjuh-section li { margin-bottom: 8px; color: rgba(236,240,241,.9); }

/* ─── Highlight box ──────────────────────────────────────────────────────── */
.ngjuh-highlight-box {
  background: var(--card-bg); border: 2px solid var(--accent);
  border-radius: 14px; padding: 28px; margin: 20px 0;
}

/* ─── Expert note ─────────────────────────────────────────────────────────── */
.ngjuh-expert-note {
  background: linear-gradient(135deg, rgba(241,196,15,.08), rgba(245,166,35,.06));
  border-left: 4px solid var(--accent2); padding: 18px 20px; margin: 20px 0; border-radius: 8px;
}
.ngjuh-expert-note strong { color: var(--accent2); display: block; margin-bottom: 6px; }

/* ─── Game grid ───────────────────────────────────────────────────────────── */
.ngjuh-game-filters { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.ngjuh-filter-btn {
  padding: 8px 18px; background: var(--card-bg); border: 1px solid var(--card-border);
  color: var(--text); border-radius: 8px; cursor: pointer; transition: .2s; font-weight: 600; font-size: .88rem;
}
.ngjuh-filter-btn:hover, .ngjuh-filter-btn.active { background: var(--accent); color: #000; border-color: var(--accent); }
.ngjuh-game-card { text-decoration: none; display: block; transition: transform .2s, box-shadow .2s; }
.ngjuh-game-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.4); }
.ngjuh-game-img { position: relative; aspect-ratio: 3/2; overflow: hidden; border-radius: 10px 10px 0 0; display: flex; align-items: center; justify-content: center; }
.ngjuh-game-img img { width: 100%; height: 100%; object-fit: cover; }
.ngjuh-game-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .3rem; padding: .75rem; text-align: center; width: 100%; height: 100%; }
.ngjuh-game-emoji { font-size: 2.2rem; line-height: 1; }
.ngjuh-game-provider { font-size: .65rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .5px; }
.ngjuh-game-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.65); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .2s; border-radius: 10px 10px 0 0; }
.ngjuh-game-card:hover .ngjuh-game-overlay { opacity: 1; }
.ngjuh-play-badge { background: var(--accent); color: #000; font-size: .82rem; font-weight: 700; padding: 5px 16px; border-radius: 20px; }
.ngjuh-game-body { background: var(--card-bg); border: 1px solid var(--card-border); border-top: none; border-radius: 0 0 10px 10px; padding: 10px 12px; }
.ngjuh-game-body p:first-child { font-weight: 600; font-size: .88rem; margin: 0 0 2px; }
.ngjuh-game-body p:last-child { font-size: .72rem; color: rgba(236,240,241,.5); margin: 0; }

/* ─── Sports ──────────────────────────────────────────────────────────────── */
.ngjuh-sport-card { transition: transform .2s, box-shadow .2s; color: inherit; text-decoration: none; display: flex; align-items: center; gap: 12px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 10px; padding: 14px 16px; }
.ngjuh-sport-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.3); border-color: var(--accent); color: inherit; }
.ngjuh-sport-icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }

/* ─── Pros / Cons ─────────────────────────────────────────────────────────── */
.ngjuh-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 52px; }
@media (max-width:600px) { .ngjuh-pros-cons { grid-template-columns: 1fr; } }
.ngjuh-pros-box, .ngjuh-cons-box { background: var(--card-bg); border-radius: 14px; padding: 28px; }
.ngjuh-pros-box { border-top: 4px solid #22c55e; }
.ngjuh-cons-box { border-top: 4px solid #ef4444; }
.ngjuh-pros-box h3, .ngjuh-cons-box h3 { font-size: 1.2rem; margin-bottom: 16px; }
.ngjuh-pros-box ul, .ngjuh-cons-box ul { list-style: none; padding: 0; }
.ngjuh-pros-box li, .ngjuh-cons-box li { padding: 8px 0 8px 26px; position: relative; border-bottom: 1px solid var(--card-border); color: rgba(236,240,241,.9); }
.ngjuh-pros-box li:last-child, .ngjuh-cons-box li:last-child { border-bottom: none; }
.ngjuh-pros-box li::before { content: '✓'; position: absolute; left: 0; color: #22c55e; font-weight: 700; }
.ngjuh-cons-box li::before { content: '✗'; position: absolute; left: 0; color: #ef4444; font-weight: 700; }

/* ─── FAQ ─────────────────────────────────────────────────────────────────── */
.ngjuh-faq-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 10px; margin-bottom: 10px; overflow: hidden; }
.ngjuh-faq-question { padding: 18px 20px; cursor: pointer; font-weight: 600; display: flex; justify-content: space-between; align-items: center; color: var(--text); transition: .2s; list-style: none; }
.ngjuh-faq-question:hover { background: rgba(245,166,35,.05); }
.ngjuh-faq-question i { transition: transform .3s; color: var(--accent); flex-shrink: 0; }
.ngjuh-faq-item.open .ngjuh-faq-question i { transform: rotate(180deg); }
.ngjuh-faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.ngjuh-faq-item.open .ngjuh-faq-answer { max-height: 600px; }
.ngjuh-faq-answer p { padding: 0 20px 18px; line-height: 1.8; color: rgba(236,240,241,.85); }

/* ─── Payment table ──────────────────────────────────────────────────────── */
.ngjuh-payment-table { width: 100%; border-collapse: collapse; background: var(--card-bg); border-radius: 12px; overflow: hidden; margin: 16px 0; }
.ngjuh-payment-table th, .ngjuh-payment-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--card-border); }
.ngjuh-payment-table th { background: rgba(245,166,35,.1); font-weight: 700; color: var(--accent); font-size: .9rem; }
.ngjuh-payment-table tr:last-child td { border-bottom: none; }
.ngjuh-payment-table td { color: rgba(236,240,241,.9); font-size: .9rem; }
@media (max-width:768px) { .ngjuh-table-wrap { overflow-x: auto; } }

/* ─── Rating table ───────────────────────────────────────────────────────── */
.ngjuh-rating-table { width: 100%; max-width: 560px; margin: 20px 0; }
.ngjuh-rating-table td { padding: 10px 0; border-bottom: 1px solid var(--card-border); color: var(--text); }
.ngjuh-rating-table td:first-child { font-weight: 600; width: 45%; }
.ngjuh-rating-table td:last-child { color: var(--accent2); font-weight: 700; }

/* ─── Author section ─────────────────────────────────────────────────────── */
.ngjuh-author-section {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 14px; padding: 28px; margin: 48px 0;
  display: flex; gap: 24px; align-items: center;
}
@media (max-width:600px) { .ngjuh-author-section { flex-direction: column; text-align: center; } }
.ngjuh-author-avatar {
  width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: #000; font-weight: 800;
}
.ngjuh-author-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
.ngjuh-author-role { color: var(--accent); font-weight: 600; font-size: .9rem; }
.ngjuh-author-info p { font-size: .9rem; color: rgba(236,240,241,.7); margin-top: 6px; }

/* ─── Responsible gaming warning ─────────────────────────────────────────── */
.ngjuh-rg-warning {
  background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.3);
  border-radius: 10px; padding: 20px; margin: 20px 0;
}
.ngjuh-rg-warning h4 { color: #ef4444; margin-bottom: 8px; }

/* ─── Stars ──────────────────────────────────────────────────────────────── */
.ngjuh-stars { color: var(--accent); font-size: 1.3rem; letter-spacing: 2px; }
.ngjuh-update-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 20px; font-size: .74rem; color: rgba(255,255,255,.5); border: 1px solid #333; background: rgba(0,0,0,.3); }
.ngjuh-update-dot { width: 7px; height: 7px; background: #4caf50; border-radius: 50%; }

/* ─── Footer ──────────────────────────────────────────────────────────────── */
.ngjuh-footer { background: rgba(var(--bg-rgb,0,10,6),.95); border-top: 2px solid var(--card-border); padding: 48px 20px 24px; margin-top: 60px; }
.ngjuh-footer-inner { max-width: 1400px; margin: 0 auto; }
.ngjuh-footer-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 36px; margin-bottom: 36px; }
.ngjuh-footer-section h4 { color: var(--accent); margin-bottom: 14px; font-size: 1rem; }
.ngjuh-footer-section ul { list-style: none; }
.ngjuh-footer-section li { margin-bottom: 8px; }
.ngjuh-footer-section a { color: rgba(236,240,241,.7); text-decoration: none; font-size: .9rem; transition: .2s; }
.ngjuh-footer-section a:hover { color: var(--accent); }
.ngjuh-footer-payments { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.ngjuh-payment-badge { padding: 6px 12px; background: var(--card-bg); border: 1px solid var(--card-border); border-radius: 6px; font-size: .82rem; color: var(--text); }
.ngjuh-footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--card-border); color: rgba(236,240,241,.5); font-size: .85rem; }
