* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Chivo Mono', monospace;
  background-color: #0a0c12;
  color: #f3f3f3;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  background: none;
  cursor: pointer;
}

input, textarea, select {
  font-family: inherit;
  background: none;
  color: inherit;
}

.nefx-wall {
  position: relative;
  width: 100%;
  z-index: 999;
}

.nefx-topline {
  background: #1f132a;
  color: #ffffff;
  font-size: 0.85rem;
  text-align: center;
  padding: 0.7rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: top 0.4s ease;
}

.nefx-navshell {
  padding: 1.4rem;
  margin-top: 2.2rem;
  background: #ffffff;
  transition: all 0.4s ease;
}

@media (max-width: 375px) {
  .nefx-navshell {
    padding-top: 3rem;
  }
}

.nefx-centronav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.nefx-navflex {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nefx-navflex a {
  font-family: 'Chivo Mono', monospace;
  color: #0a0c12;
  font-weight: 500;
  font-size: 1rem;
}

.nefx-burgicon {
  display: none;
  font-size: 1.8rem;
  color: #0a0c12;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nefx-navflex {
    display: none;
    flex-direction: column;
    gap: 1.2rem;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 1rem;
  }

  .nefx-navflex.nefx-showed {
    display: flex;
  }

  .nefx-burgicon {
    display: block;
  }
}

.nefx-welcomezone {
  position: relative;
  height: 100vh;
  background: url('promo-bg.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.nefx-fogback {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.nefx-glarelayer {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 70%);
  z-index: 2;
}

.nefx-centertext {
  position: relative;
  z-index: 3;
  max-width: 800px;
  color: #fff;
  padding: 2rem;
}

.nefx-headhero {
  font-family: 'Tilt Prism', cursive;
  font-size: 3rem;
  margin-bottom: 1.2rem;
}

.nefx-subtag {
  font-size: 1.1rem;
  font-family: 'Chivo Mono', monospace;
  margin-bottom: 1rem;
}

.nefx-hintnote {
  font-size: 0.75rem;
  opacity: 0.8;
}

.nefAboutShell {
  background: #191522;
  color: #f0eef4;
  padding: 5rem 1.5rem;
}

.nefContainBox {
  max-width: 850px;
  margin: 0 auto;
}

.nefHeadLine {
  font-family: 'Tilt Prism', cursive;
  font-size: 2.5rem;
  color: #f34965;
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

@media (max-width: 768px) {
  .nefHeadLine {
    font-size: 1.5rem;
  }
}

.nefAboutText {
  font-size: 1.05rem;
  font-family: 'Chivo Mono', monospace;
  line-height: 1.8;
  text-align: center;
  font-weight: 400;
}

.nefPerkTiles {
  background: linear-gradient(145deg, #1e152e, #291f3f);
  color: #ffffff;
  padding: 5rem 1.5rem;
}

.nefTileBox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.nefPerkCard {
  background: #291d3c;
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.nefPerkCard:hover {
  transform: translateY(-5px);
}

.nefPerkCard i {
  font-size: 2rem;
  color: #f34965;
  margin-bottom: 1rem;
}

.nefPerkCard h3 {
  margin-bottom: 0.5rem;
  font-family: 'Tilt Prism', cursive;
  font-size: 1.3rem;
}

.nefPlayBlock {
  background: #0a0c12;
  padding: 5rem 1.5rem;
  text-align: center;
}

.nefPlayWrap {
  max-width: 480px;
  margin: 0 auto;
}

.nefGameBox {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 0, 153, 0.15);
  transition: transform 0.3s ease;
}

.nefGameBox:hover {
  transform: scale(1.03);
}

.nefGameBox img {
  width: 100%;
  height: auto;
  display: block;
}

.nefGameOverlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.nefGameContent {
  color: #ffffff;
  text-align: center;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nefGameContent h3 {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: 'Tilt Prism', cursive;
}

.nefPlayBtn {
  background: linear-gradient(135deg, #aa2aff, #f34965);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  transition: background 0.3s;
}

.nefPlayBtn:hover {
  background: linear-gradient(135deg, #f34965, #aa2aff);
}


.nefTestiZone {
  background: #1a1524;
  padding: 5rem 1.5rem;
  color: #ffffff;
  text-align: center;
}

.nefTestiWrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.nefTestiCard {
  background: #2a2038;
  border-left: 4px solid #f34965;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: left;
  font-family: 'Chivo Mono', monospace;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.nefTestiCard p {
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.nefTestiCard span {
  font-size: 0.85rem;
  color: #f1c4ff;
}

.nefFaqWrap {
  background: #141018;
  padding: 5rem 1.5rem;
  color: #fff;
}

.nefFaqGrid {
  max-width: 850px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.nefFaqGrid details {
  background: #20182d;
  padding: 1rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.nefFaqGrid details[open] {
  background: #291e3b;
}

.nefFaqGrid summary {
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.nefFaqGrid p {
  font-size: 0.95rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}

.nefKontactZone {
  background: #0f0d14;
  padding: 5rem 1.5rem;
  color: #fff;
}

.nefKontactWrap {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
}

.nefContactDetails {
  text-align: center;
}

.nefSectionTitle {
  font-size: 2rem;
  font-family: 'Tilt Prism', cursive;
  color: #f34965;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

@media (max-width: 768px) {
  .nefSectionTitle {
    font-size: 1.5rem;
  }
}

.nefDataList {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-family: 'Chivo Mono', monospace;
  font-size: 1rem;
  align-items: center;
}

.nefDataList i {
  color: #aa2aff;
  margin-right: 0.5rem;
}

.nefContactForm {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: 'Chivo Mono', monospace;
}

.nefContactForm input,
.nefContactForm textarea {
  padding: 1rem;
  border-radius: 1rem;
  background: #1b1724;
  color: #fff;
  font-size: 1rem;
}

.nefCheckWrap {
  font-size: 0.9rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nefSendBtn {
  margin-top: 1rem;
  padding: 1rem;
  font-size: 1rem;
  background: linear-gradient(135deg, #aa2aff, #f34965);
  color: #fff;
  border-radius: 40px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s;
}

.nefSendBtn:hover {
  transform: scale(1.05);
}

.nefThankPopup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.nefPopupInner {
  background: #fff;
  color: #0a0c12;
  max-width: 400px;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
}

.nefPopupInner button {
  margin-top: 1.2rem;
  background: #aa2aff;
  color: #fff;
  border: none;
  padding: 0.7rem 1.6rem;
  border-radius: 40px;
  cursor: pointer;
  font-weight: bold;
}

.nefPopupInner button:hover {
  background: #f34965;
}

.nefDisclaimBlock {
  background: #130f18;
  color: #f3f3f3;
  padding: 5rem 1.5rem;
  font-family: 'Chivo Mono', monospace;
  text-align: center;
}

.nefDisclaimInner {
  max-width: 850px;
  margin: 0 auto;
}

.nefDisclaimTitle {
  font-size: 2rem;
  color: #f34965;
  font-family: 'Tilt Prism', cursive;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
}

.nefDisclaimInner p {
  font-size: 1rem;
  line-height: 1.8;
  color: #d9d4e5;
  margin-bottom: 2.5rem;
}

.nefDisclaimLinks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.nefDisclaimLinks img {
  max-height: 60px;
  filter: grayscale(0.3);
  transition: filter 0.3s, transform 0.3s;
}

.nefDisclaimLinks img:hover {
  filter: grayscale(0);
  transform: scale(1.05);
}

.nefFootShell {
  background: #0a0810;
  color: #e8e5f0;
  font-family: 'Chivo Mono', monospace;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

.nefFootTop {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 2rem;
  text-align: left;
}

.nefFootLeft p {
  max-width: 420px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.nefFootRight {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.nefFootRight a {
  color: #aa2aff;
  text-decoration: none;
  transition: color 0.3s;
}

.nefFootRight a:hover {
  color: #f34965;
}

.nefFootBottom {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.nefIcon18 {
  font-family: 'Tilt Prism', cursive;
  font-size: 2rem;
  color: #f34965;
  border: 2px solid #f34965;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.npxGateOverlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 20, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.npxGateInner {
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  color: #1a0b2d;
  font-family: 'Chivo Mono', monospace;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
}

.npxGateInner h2 {
  font-family: 'Tilt Prism', cursive;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #f34965;
}

.npxGateInner p {
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.npxGateInner button {
  background: #aa2aff;
  color: #fff;
  border: none;
  padding: 0.8rem 1.6rem;
  font-weight: bold;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.3s;
}

.npxGateInner button:hover {
  background: #f34965;
}

.npxCookieBanner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #1b1524;
  color: #f0eef4;
  z-index: 9998;
  padding: 1rem 1.5rem;
  display: none;
  font-family: 'Chivo Mono', monospace;
}

.npxCookieContent {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.npxCookieContent p {
  flex: 1 1 auto;
  font-size: 0.95rem;
}

.npxCookieContent button {
  background: #f34965;
  color: #fff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.npxCookieContent button:hover {
  background: #aa2aff;
}

@media (max-width: 600px) {
  .npxCookieContent {
    flex-direction: column;
    align-items: flex-start;
  }

  .npxCookieContent button {
    width: 100%;
    margin-top: 0.6rem;
  }
}
