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

:root {
  --np-bg: #141212;
  --np-header: #000000;
  --np-footer: #000000;
  --np-btn-light: #e6e6e6;
  --np-btn-red: #d30000;
  --np-text: #e0e0e0;
  --np-text-muted: #a0a0a0;
  --np-white: #ffffff;
  --np-card-bg: #1c1a1a;
  --np-border: #2a2727;
  --np-accent: #d30000;
  --np-gold: #ffd700;
}

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

html{scroll-behavior:smooth;font-size:16px}

body{
  background-color:var(--np-bg);
  color:var(--np-text);
  font-family:Arial,Helvetica,sans-serif;
  line-height:1.6;
  min-height:100vh;
  overflow-x:hidden;
}

a{color:var(--np-btn-light);text-decoration:none;transition:color .3s ease}
a:hover{color:var(--np-btn-red)}

img{max-width:100%;height:auto}

.np7x_wrapper{width:100%;min-height:100vh;display:flex;flex-direction:column}
.np7x_container{width:100%;max-width:1200px;margin:0 auto;padding:0 16px}


.np7x_header{
  background:var(--np-header);
  position:sticky;top:0;z-index:1000;
  border-bottom:1px solid var(--np-border);
  padding:10px 0;
}
.np7x_header-inner{
  display:grid;
  grid-template-columns:auto 1fr auto auto;
  align-items:center;
  gap:16px;
}
.np7x_logo img{height:42px;width:auto;display:block}
.np7x_nav{display:flex;gap:20px;justify-content:center}
.np7x_nav a{color:var(--np-text);font-size:14px;font-weight:500;padding:6px 0;position:relative;transition:color .3s}
.np7x_nav a::after{content:'';position:absolute;bottom:0;left:0;width:0;height:2px;background:var(--np-btn-red);transition:width .3s}
.np7x_nav a:hover{color:var(--np-white)}
.np7x_nav a:hover::after{width:100%}

.np7x_online{
  display:flex;align-items:center;gap:6px;
  font-size:13px;color:var(--np-text-muted);
  white-space:nowrap;
}
.np7x_online-dot{
  width:8px;height:8px;border-radius:50%;
  background:#00e676;
  animation:np7x_pulse 2s infinite;
}
@keyframes np7x_pulse{0%,100%{opacity:1}50%{opacity:.4}}

.np7x_header-btns{display:flex;gap:8px;align-items:center}
.np7x_btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:8px 20px;border-radius:6px;font-size:14px;font-weight:600;
  cursor:pointer;border:none;transition:all .3s ease;text-decoration:none;
  white-space:nowrap;
}
.np7x_btn--login{background:var(--np-btn-light);color:#000}
.np7x_btn--login:hover{background:#ccc;color:#000}
.np7x_btn--signup{background:var(--np-btn-red);color:var(--np-white)}
.np7x_btn--signup:hover{background:#b80000;color:var(--np-white)}


.np7x_burger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:6px;z-index:1001}
.np7x_burger span{width:24px;height:2px;background:var(--np-white);transition:all .3s}
.np7x_burger.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.np7x_burger.active span:nth-child(2){opacity:0}
.np7x_burger.active span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}


.np7x_hero{
  position:relative;
  min-height:380px;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
  margin:8px 16px;
  border-radius:12px;
}
.np7x_hero-bg{
  position:absolute;inset:0;
  background:url('/nomad-banner-light.png') center/cover no-repeat;
  filter:brightness(.5);
  z-index:0;
}
.np7x_hero-content{
  position:relative;z-index:1;
  text-align:center;
  padding:40px 20px;
}
.np7x_hero-content h2{
  font-size:36px;font-weight:700;color:var(--np-white);
  margin-bottom:12px;text-shadow:0 2px 8px rgba(0,0,0,.6);
}
.np7x_hero-content p{
  font-size:18px;color:var(--np-text);margin-bottom:24px;
  text-shadow:0 1px 4px rgba(0,0,0,.5);
}


.np7x_breadcrumbs{
  padding:12px 0;
  font-size:13px;
  color:var(--np-text-muted);
}
.np7x_breadcrumbs a{color:var(--np-text-muted)}
.np7x_breadcrumbs a:hover{color:var(--np-btn-red)}
.np7x_breadcrumbs span{margin:0 6px;color:var(--np-text-muted)}


.np7x_block{
  background:var(--np-card-bg);
  border:1px solid var(--np-border);
  border-radius:10px;
  padding:28px 24px;
  margin-bottom:20px;
}
.np7x_block-title{
  font-size:22px;font-weight:700;color:var(--np-white);
  margin-bottom:16px;
  padding-bottom:10px;
  border-bottom:2px solid var(--np-btn-red);
}


.np7x_toc{list-style:none;padding:0;counter-reset:toc-counter}
.np7x_toc li{counter-increment:toc-counter;padding:8px 0;border-bottom:1px solid var(--np-border)}
.np7x_toc li:last-child{border-bottom:none}
.np7x_toc li a{
  color:var(--np-btn-light);
  font-size:15px;
  display:flex;align-items:center;gap:8px;
  transition:color .3s,padding-left .3s;
}
.np7x_toc li a::before{content:counter(toc-counter) ".";color:var(--np-btn-red);font-weight:700;min-width:24px}
.np7x_toc li a:hover{color:var(--np-btn-red);padding-left:8px}


.np7x_jackpots-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.np7x_jackpot-card{
  background:linear-gradient(135deg,#1f1c1c 0%,#2a2525 100%);
  border:1px solid var(--np-border);
  border-radius:10px;
  padding:24px;
  text-align:center;
  transition:transform .3s,box-shadow .3s;
}
.np7x_jackpot-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(211,0,0,.15)}
.np7x_jackpot-label{font-size:13px;color:var(--np-text-muted);text-transform:uppercase;letter-spacing:1px;margin-bottom:8px}
.np7x_jackpot-amount{
  font-size:28px;font-weight:700;
  background:linear-gradient(90deg,var(--np-gold),#ffeb3b);
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  background-clip:text;
}


.np7x_mirrors-info{
  display:flex;justify-content:space-between;align-items:center;
  margin-bottom:16px;flex-wrap:wrap;gap:8px;
}
.np7x_mirrors-date{font-size:13px;color:var(--np-text-muted)}
.np7x_mirrors-status{font-size:13px;color:#00e676;font-weight:500}

.np7x_table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch}
.np7x_table{
  width:100%;border-collapse:collapse;
  text-align:left;
}
.np7x_table th{
  background:#1a1717;
  color:var(--np-white);
  font-size:13px;font-weight:600;
  text-transform:uppercase;letter-spacing:.5px;
  padding:12px 16px;
  border:1px solid var(--np-border);
}
.np7x_table td{
  padding:12px 16px;
  border:1px solid var(--np-border);
  font-size:14px;
  color:var(--np-text);
}
.np7x_table tr:hover td{background:#1f1c1c}
.np7x_status-active{color:#00e676;font-weight:600}


.np7x_winners-list{max-height:440px;overflow-y:auto;padding-right:8px}
.np7x_winners-list::-webkit-scrollbar{width:6px}
.np7x_winners-list::-webkit-scrollbar-track{background:var(--np-card-bg)}
.np7x_winners-list::-webkit-scrollbar-thumb{background:var(--np-border);border-radius:3px}

.np7x_winner-row{
  display:grid;
  grid-template-columns:32px 1fr 1fr auto;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border-bottom:1px solid var(--np-border);
  transition:background .2s;
}
.np7x_winner-row:hover{background:#1f1c1c}
.np7x_winner-rank{
  font-size:14px;font-weight:700;color:var(--np-text-muted);
  text-align:center;
}
.np7x_winner-rank.top3{color:var(--np-gold)}
.np7x_winner-name{font-size:14px;color:var(--np-white);font-weight:500}
.np7x_winner-game{font-size:13px;color:var(--np-text-muted)}
.np7x_winner-amount{font-size:14px;font-weight:700;color:#00e676;text-align:right;white-space:nowrap}


.np7x_bonuses-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.np7x_bonus-card{
  background:linear-gradient(145deg,#1c1a1a,#252222);
  border:1px solid var(--np-border);
  border-radius:12px;
  padding:28px 20px;
  text-align:center;
  transition:transform .3s,box-shadow .3s;
  position:relative;
  overflow:hidden;
}
.np7x_bonus-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--np-btn-red),var(--np-gold));
}
.np7x_bonus-card:hover{transform:translateY(-4px);box-shadow:0 8px 24px rgba(211,0,0,.12)}
.np7x_bonus-icon{font-size:40px;margin-bottom:12px;display:block}
.np7x_bonus-title{font-size:18px;font-weight:700;color:var(--np-white);margin-bottom:8px}
.np7x_bonus-desc{font-size:14px;color:var(--np-text-muted);margin-bottom:16px;line-height:1.5}
.np7x_bonus-value{
  font-size:22px;font-weight:700;
  color:var(--np-gold);
  margin-bottom:16px;
}



/* Desktop */
@media (min-width: 992px){
  .np7x_bonuses-slider{
    display:none !important;
  }
}

@media (max-width: 991px){

  .np7x_bonuses-slider{
    display:block;
  }

  .np7x_bonuses-grid{
    display:none;
  }

  .np7x_bonuses-slider .np7x_slider-track{
    display:flex;
    gap:16px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding:0 16px 12px;
  }

  .np7x_bonuses-slider .np7x_bonus-card{
    flex:0 0 calc(100% - 32px); /* ВАЖНО */
    scroll-snap-align:center;
  }

  .np7x_bonuses-slider .np7x_slider-track::-webkit-scrollbar{
    display:none;
  }
}





.np7x_slider-dots{
  display:flex;justify-content:center;gap:8px;margin-top:12px;
}
.np7x_slider-dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--np-border);cursor:pointer;
  transition:background .3s;
}
.np7x_slider-dot.active{background:var(--np-btn-red)}


.np7x_content-review{
  font-size:15px;line-height:1.7;color:var(--np-text);
}
.np7x_content-review h2{font-size:22px;color:var(--np-white);margin:24px 0 12px;font-weight:700}
.np7x_content-review h3{font-size:18px;color:var(--np-white);margin:20px 0 10px;font-weight:600}
.np7x_content-review h4{font-size:16px;color:var(--np-white);margin:16px 0 8px;font-weight:600}
.np7x_content-review p{margin-bottom:14px}
.np7x_content-review ul,.np7x_content-review ol{margin:12px 0;padding-left:24px}
.np7x_content-review li{margin-bottom:6px;color:var(--np-text)}
.np7x_content-review ul li{list-style:disc}
.np7x_content-review ol li{list-style:decimal}
.np7x_content-review table{
  width:100%;border-collapse:collapse;margin:16px 0;
  text-align:left;
}
.np7x_content-review table th{
  background:#1a1717;color:var(--np-white);
  padding:10px 14px;border:1px solid var(--np-border);
  font-weight:600;font-size:14px;
}
.np7x_content-review table td{
  padding:10px 14px;border:1px solid var(--np-border);
  font-size:14px;color:var(--np-text);
}
.np7x_content-review a{color:var(--np-btn-light);text-decoration:underline}
.np7x_content-review a:hover{color:var(--np-btn-red)}
.np7x_content-review img{border-radius:8px;margin:12px 0}
.np7x_content-review blockquote{
  border-left:3px solid var(--np-btn-red);
  padding:12px 16px;
  margin:16px 0;
  background:#1a1717;
  border-radius:0 8px 8px 0;
  font-style:italic;
  color:var(--np-text-muted);
}

.np7x_author-box{
  display:flex;align-items:center;gap:16px;
  background:#1a1717;
  border:1px solid var(--np-border);
  border-radius:10px;
  padding:16px 20px;
  margin-top:20px;
}
.np7x_author-avatar{
  width:56px;height:56px;border-radius:50%;
  background:var(--np-border);
  flex-shrink:0;overflow:hidden;
}
.np7x_author-avatar img{width:100%;height:100%;object-fit:cover}
.np7x_author-name{font-size:15px;font-weight:600;color:var(--np-white)}
.np7x_author-name a{color:var(--np-btn-light)}
.np7x_author-name a:hover{color:var(--np-btn-red)}
.np7x_author-desc{font-size:13px;color:var(--np-text-muted);margin-top:4px;line-height:1.4}


.np7x_faq-item{
  border:1px solid var(--np-border);
  border-radius:8px;
  margin-bottom:10px;
  overflow:hidden;
  transition:border-color .3s;
}
.np7x_faq-item:hover{border-color:var(--np-btn-red)}
.np7x_faq-question{
  background:#1a1717;
  padding:16px 20px;
  font-size:15px;font-weight:600;color:var(--np-white);
  cursor:pointer;
  display:flex;justify-content:space-between;align-items:center;
  transition:background .3s;
}
.np7x_faq-question:hover{background:#201e1e}
.np7x_faq-arrow{
  width:20px;height:20px;
  transition:transform .3s;
  fill:var(--np-text-muted);
  flex-shrink:0;
}
.np7x_faq-item.open .np7x_faq-arrow{transform:rotate(180deg)}
.np7x_faq-answer{
  padding:16px 20px;
  font-size:14px;color:var(--np-text);
  line-height:1.6;
  display:none;
  border-top:1px solid var(--np-border);
}
.np7x_faq-item.open .np7x_faq-answer{display:block}


.np7x_footer{
  background:var(--np-footer);
  border-top:1px solid var(--np-border);
  padding:40px 0 0;
  margin-top:auto;
}
.np7x_footer-grid{
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:32px;
  margin-bottom:28px;
}
.np7x_footer-logo img{height:55px}
.np7x_footer-links{
  display:flex;flex-wrap:wrap;gap:12px 24px;
}
.np7x_footer-links a{color:var(--np-text-muted);font-size:13px}
.np7x_footer-links a:hover{color:var(--np-white)}
.np7x_footer-divider{height:1px;background:var(--np-border);margin:0 0 24px}
.np7x_footer-payments,.np7x_footer-providers{margin-bottom:20px}
.np7x_footer-payments-label,.np7x_footer-providers-label{
  font-size:12px;text-transform:uppercase;letter-spacing:1px;
  color:var(--np-text-muted);margin-bottom:10px;
}
.np7x_footer-payments-icons,.np7x_footer-providers-icons{
  display:flex;flex-wrap:wrap;gap:12px;align-items:center;
}
.np7x_footer-payments-icons span,.np7x_footer-providers-icons span{
  background:#1c1a1a;
  border:1px solid var(--np-border);
  border-radius:6px;
  padding:6px 12px;
  font-size:12px;color:var(--np-text-muted);
  white-space:nowrap;
}
.np7x_footer-copy{
  text-align:center;
  padding:20px 0;
  border-top:1px solid var(--np-border);
  font-size:12px;color:var(--np-text-muted);
  line-height:1.5;
}
.np7x_footer-copy a{color:var(--np-text-muted)}


.np7x_widget{
  position:fixed;bottom:0;left:0;right:0;
  background:linear-gradient(90deg,#1a0000 0%,var(--np-btn-red) 50%,#1a0000 100%);
  padding:10px 16px;
  display:flex;align-items:center;justify-content:center;
  gap:16px;
  z-index:999;
  box-shadow:0 -4px 20px rgba(211,0,0,.3);
}
.np7x_widget-text{
  font-size:14px;font-weight:600;color:var(--np-white);
  text-shadow:0 1px 2px rgba(0,0,0,.3);
}
.np7x_widget-btn{
  background:var(--np-white);
  color:var(--np-btn-red);
  padding:8px 24px;
  border-radius:6px;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  transition:all .3s;
  white-space:nowrap;
}
.np7x_widget-btn:hover{background:var(--np-btn-light);color:var(--np-btn-red)}


@media(max-width:991px){
  .np7x_nav{display:none}
  .np7x_burger{display:flex}
  .np7x_header-inner{grid-template-columns:auto 1fr auto auto}
  .np7x_nav.active{
    display:flex;flex-direction:column;
    position:fixed;top:60px;left:0;right:0;bottom:0;
    background:var(--np-header);
    padding:24px;gap:12px;
    z-index:999;
    animation:np7x_slideDown .3s ease;
  }
  @keyframes np7x_slideDown{from{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:none}}
  .np7x_jackpots-grid{grid-template-columns:1fr}
  .np7x_bonuses-grid{display:none}
  .np7x_bonuses-slider{display:block}
  .np7x_winner-row{grid-template-columns:28px 1fr auto}
  .np7x_winner-game{display:none}
  .np7x_footer-grid{grid-template-columns:1fr}
  .np7x_hero-content h2{font-size:26px}
  .np7x_hero-content p{font-size:15px}
  .np7x_author-box{flex-direction:column;text-align:center}
}
@media(max-width:575px){
  .np7x_block{padding:20px 16px}
  .np7x_hero{min-height:260px;margin:8px}
  .np7x_btn{padding:6px 14px;font-size:13px}
  .np7x_widget{flex-direction:column;gap:8px;padding:8px 12px}
  .np7x_widget-text{font-size:13px;text-align:center}
}

.wp-block-group__inner-container{max-width:none}
.elementor-widget-wrap{display:flex}
.entry-content .alignfull{margin:0 calc(50% - 50vw);max-width:100vw}
.has-large-font-size{font-size:1.5em}
.wp-block-cover__inner-container{z-index:1}
.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute;overflow:hidden;height:1px;width:1px}
.np7x_k92x_unused{visibility:hidden;position:absolute;pointer-events:none}
.a8fj3_placeholder{display:none!important}
.x9m2v_grid-helper{opacity:0}
.wp-block-separator{border:none;border-bottom:2px solid #ccc}
.q7w4e_spacer{height:0;line-height:0;font-size:0}
