

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, Arial, sans-serif;
  background: radial-gradient(circle at top, #111 0%, #000 70%);
  color: #fff;
}

.nx-022 {
  max-width: 420px;
  margin: 0 auto;
  padding: 40px 16px;
}

.nx-014 {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
  text-shadow: 0 0 25px rgba(255,170,0,.35);
}

.nx-021 {
  background: linear-gradient(180deg, #1a1a1a, #0f0f0f);
  border-radius: 22px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 30px 90px rgba(0,0,0,.9);
}

.nx-007 {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 16px;
}

.nx-008 {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(255,170,0,.8) 30%,
    rgba(255,90,0,.9) 50%,
    rgba(255,170,0,.8) 70%,
    transparent 100%
  );
  mask: radial-gradient(circle, transparent 62%, black 63%);
  animation: spinFast 6s linear infinite;
  opacity: .6;
}

.nx-009 {
  inset: 10px;
  animation: spinSlow 14s linear infinite reverse;
  opacity: .35;
}

.nx-012 {
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255,200,120,.45),
    rgba(255,120,0,.2),
    transparent 70%
  );
  box-shadow:
    0 0 35px rgba(255,160,0,.7),
    0 0 90px rgba(255,100,0,.5);
  animation: pulse 4s ease-in-out infinite;
}

.nx-011 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

h1 {
  margin: 12px 0 4px;
  font-size: 22px;
}

.nx-073 {
  opacity: .7;
  margin-bottom: 12px;
}

.nx-034 {
  font-size: 14px;
  line-height: 1.6;
  opacity: .85;
  margin-bottom: 18px;
}

.nx-049 {
  font-size: 12px;
  opacity: .5;
  margin: 12px 0;
}

.nx-015 {
  display: block;
  padding: 14px;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;
  transition: .25s;
}

.nx-017 {
  background: linear-gradient(135deg, #ffb300, #ff9800);
  color: #000;
}

.nx-017:hover {
  box-shadow: 0 0 35px rgba(255,170,0,.7);
  transform: translateY(-2px);
}

.nx-018 {
  background: #1e88e5;
  color: #fff;
}

.nx-018:hover {
  background: #2196f3;
  transform: translateY(-2px);
}

.nx-023 {
  margin-top: 48px;
  text-align: left;
}

.nx-023 h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.nx-023 p {
  font-size: 14px;
  line-height: 1.6;
  opacity: .75;
  margin-bottom: 28px;
}

.nx-013 {
  margin-top: 48px;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255,180,0,0.08),
    rgba(255,180,0,0.02)
  );
  text-align: center;
}

.nx-016 {
  font-size: 16px;
  padding: 16px;
}

.nx-042 {
  margin-top: 24px;
}

.nx-045 {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nx-046 {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nx-046:hover {
  color: #ffb300;
}

.nx-044 {
  font-size: 20px;
  transition: transform .25s ease;
}

.nx-043 {
  display: none;
  padding-bottom: 16px;
}

.nx-043 p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  opacity: .75;
}

.nx-045.active .nx-043 {
  display: block;
  animation: faqFade .25s ease;
}

.nx-045.active .nx-044 {
  transform: rotate(45deg);
}

.nx-047 {
  margin-top: 64px;
  padding: 24px 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.02),
    rgba(0,0,0,0)
  );
}

.nx-047 a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin: 0 6px;
  transition: color .2s ease;
}

.nx-047 a:hover {
  color: #ffb300;
}

@keyframes spinFast {
  to { transform: rotate(360deg); }
}

@keyframes spinSlow {
  to { transform: rotate(-360deg); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.06); opacity: 1; }
  100% { transform: scale(1); opacity: .7; }
}

@keyframes faqFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.nx-041 {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.nx-038 {
  background: linear-gradient(180deg, #151515, #0f0f0f);
  border-radius: 16px;
  padding: 16px;
}

.nx-040 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 12px;
  opacity: .6;
  margin-bottom: 8px;
}

.nx-040 span:last-child {
  text-align: right;
}

.nx-039 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.nx-039 img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.nx-072 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.nx-069 {
  background: linear-gradient(180deg, #151515, #0f0f0f);
  border-radius: 16px;
  padding: 20px 12px;
  text-align: center;
}

.nx-071 {
  font-size: 24px;
  font-weight: 800;
  color: #ffb300;
  margin-bottom: 4px;
  transition: transform .3s ease;
}

.nx-070 {
  font-size: 13px;
  opacity: .65;
}

.nx-069.animate .nx-071 {
  transform: scale(1.05);
}

.nx-089 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.nx-085 {
  background: linear-gradient(180deg, #151515, #0f0f0f);
  border-radius: 16px;
  padding: 20px 16px;
}

.nx-086 {
  font-size: 22px;
  margin-bottom: 8px;
}

.nx-088 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.nx-087 {
  font-size: 13px;
  line-height: 1.6;
  opacity: .7;
}

.nx-067 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.nx-065 {
  background: linear-gradient(180deg, #151515, #0f0f0f);
  border-radius: 16px;
  padding: 20px 16px;
}

.nx-066 {
  font-size: 14px;
  line-height: 1.6;
  opacity: .85;
  margin-bottom: 12px;
}

.nx-064 {
  font-size: 13px;
  opacity: .6;
}

.nx-051 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.nx-050 {
  background: linear-gradient(180deg, #151515, #0f0f0f);
  border-radius: 16px;
  padding: 20px 16px;
}

.nx-052 {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffb300;
  color: #000;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.nx-054 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.nx-053 {
  font-size: 13px;
  line-height: 1.6;
  opacity: .7;
}

.nx-004 {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.nx-004.hidden {
  display: none;
}

.nx-002 {
  background: linear-gradient(180deg, #1a1a1a, #0f0f0f);
  border-radius: 20px;
  padding: 32px 24px;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,.9);
}

.nx-006 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 12px;
  color: #ffb300;
}

.nx-005 {
  font-size: 14px;
  line-height: 1.6;
  opacity: .8;
  margin-bottom: 20px;
}

.nx-002 .nx-015 {
  width: 100%;
}

.nx-004 {
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

.nx-004.show {
  opacity: 1;
  visibility: visible;
}

.nx-002 {
  transform: scale(0.92);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}

.nx-004.show .nx-002 {
  transform: scale(1);
  opacity: 1;
}

.nx-003 {
  font-size: 11px;
  line-height: 1.5;
  opacity: .55;
  margin-top: 16px;
}

.nx-003 a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-bottom: 1px dotted rgba(255,255,255,0.3);
  transition: color .2s ease, border-color .2s ease;
}

.nx-003 a:hover {
  color: #ffb300;
  border-bottom-color: #ffb300;
}

.nx-072 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.nx-069 {
  background: linear-gradient(180deg, #151515, #0f0f0f);
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.6);
  position: relative;
  overflow: hidden;
}

.nx-069::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255,180,0,0.08),
    transparent 70%
  );
  pointer-events: none;
}

.nx-071 {
  font-size: 28px;
  font-weight: 800;
  color: #ffb300;
  margin-bottom: 6px;
}

.nx-070 {
  font-size: 13px;
  opacity: .6;
}

canvas {
  margin-top: 20px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );
  border-radius: 14px;
  padding: 12px;
}

@media (max-width: 480px) {
  .nx-072 {
    grid-template-columns: 1fr;
  }
}

.nx-061 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}

.nx-055 {
  display: block;
  background: linear-gradient(180deg, #151515, #0f0f0f);
  border-radius: 18px;
  padding: 20px;
  text-decoration: none;
  color: #fff;
  transition: .25s;
  box-shadow: 0 15px 40px rgba(0,0,0,.6);
}

.nx-055:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.8);
}

.nx-060 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffb300;
}

.nx-059 {
  font-size: 14px;
  line-height: 1.5;
  opacity: .75;
}

@media (max-width: 480px) {
  .nx-061 {
    grid-template-columns: 1fr;
  }
}
.nx-048 {
  color: #ffb300;
  text-decoration: none;
  font-size: 13px;
  opacity: .8;
}

.nx-048:hover {
  opacity: 1;
}

.nx-026 {
  margin-top: 48px;
}

.nx-033 {
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: .25s;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.02),
    rgba(255,255,255,0.01)
  );
}

.nx-033:hover {
  border-color: #ffb300;
  box-shadow: 0 0 30px rgba(255,180,0,.25);
}

.nx-033.dragover {
  border-color: #ff9800;
  background: rgba(255,180,0,0.06);
}

.nx-084 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.nx-083 {
  font-size: 14px;
  opacity: .7;
  margin-bottom: 6px;
}

.nx-082 {
  font-size: 12px;
  opacity: .5;
}

.nx-081 {
  margin-top: 10px;
  font-size: 13px;
  color: #ffb300;
}

.nx-032 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.nx-031 {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #121212;
  color: #fff;
  cursor: pointer;
  transition: .25s;
}

.nx-031:hover,
.nx-031.active {
  border-color: #ffb300;
  box-shadow: 0 0 20px rgba(255,180,0,.3);
}

.nx-027:disabled {
  opacity: .4;
  pointer-events: none;
}

.nx-028 {
  margin-top: 24px;
}

.nx-030 {
  font-size: 14px;
  opacity: .8;
  margin-bottom: 10px;
}

.nx-024 {
  height: 10px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  overflow: hidden;
}

.nx-025 {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ffb300, #ff9800);
  transition: width .6s ease;
}

.nx-029 {
  margin-top: 24px;
  text-align: center;
}
.nx-027 {
  width: 100%;
}

.nx-036 {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.nx-036 span {
  position: absolute;
  bottom: -120px;
  font-size: 96px;
  opacity: 0.06;
  animation: floatEmoji linear infinite;
}

.nx-036 span:nth-child(1) { left: 5%;  animation-duration: 40s; }
.nx-036 span:nth-child(2) { left: 15%; animation-duration: 55s; }
.nx-036 span:nth-child(3) { left: 30%; animation-duration: 45s; }
.nx-036 span:nth-child(4) { left: 45%; animation-duration: 60s; }
.nx-036 span:nth-child(5) { left: 60%; animation-duration: 50s; }
.nx-036 span:nth-child(6) { left: 70%; animation-duration: 42s; }
.nx-036 span:nth-child(7) { left: 85%; animation-duration: 58s; }
.nx-036 span:nth-child(8) { left: 95%; animation-duration: 47s; }

@keyframes floatEmoji {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-120vh) rotate(360deg);
  }
}

body > *:not(.nx-036) {
  position: relative;
  z-index: 1;
}

.nx-037 {
  margin-top: 16px;
  text-align: center;
  font-size: 13px;
  opacity: .7;
}

.nx-037 label {
  cursor: pointer;
}

.nx-037 input {
  margin-right: 6px;
}

.nx-018 {
  background: #1e88e5;              
  color: #ffffff;                   
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15);
}

.nx-018:hover {
  background: #1565c0;              
}

.nx-018:focus-visible {
  outline: 2px solid #ffb300;
  outline-offset: 2px;
}

.nx-074 {
  background: linear-gradient(180deg, #1a1a1a, #0f0f0f);
  border-radius: 24px;
  padding: 28px;
  margin-top: 28px;
  box-shadow: 0 30px 90px rgba(0,0,0,.7);
}

.nx-074.highlight {
  border: 1px solid rgba(255,179,0,.4);
}

.nx-078 {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.nx-079 h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.nx-079 p {
  font-size: 14px;
  opacity: .75;
  max-width: 520px;
}

.nx-080 {
  text-align: right;
  font-size: 14px;
  opacity: .85;
}

.nx-080 span {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #FFB300;
}

.nx-076 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 24px 0;
}

.nx-076 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nx-076 li {
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  opacity: .85;
}

.nx-076 li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FFB300;
}

.nx-077 {
  text-align: right;
}

@media (max-width: 640px) {
  .nx-078 {
    grid-template-columns: 1fr;
  }

  .nx-080 {
    text-align: left;
    margin-top: 8px;
  }

  .nx-076 {
    grid-template-columns: 1fr;
  }

  .nx-077 {
    text-align: left;
  }
}

.nx-075 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  margin-top: 8px;

  font-size: 16px;
  font-weight: 600;
  padding: 16px 18px;
  text-align: center;
  border-radius: 16px;
}

.nx-075:hover {
  transform: translateY(-2px);
}

.nx-075::before {
  line-height: 1;
}

.nx-056 {
  margin-top: 64px;
}

.nx-057 {
  background: linear-gradient(
    180deg,
    rgba(255,179,0,0.08),
    rgba(255,179,0,0.03)
  );
  border-radius: 22px;
  padding: 32px;
  text-align: center;
}

.nx-057 h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.nx-057 p {
  font-size: 14px;
  opacity: .75;
  max-width: 620px;
  margin: 0 auto 24px;
}

.nx-058 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.nx-062 {
  display: grid;
  place-items: center;
}

.nx-062 svg {
  width: 24px;
  height: 24px;
  transform: translateY(-10px); 
}
.nx-020 {
  display: flex;
  align-items: center;      
  justify-content: center;  
  margin-top: 14px;
  padding: 16px;
  background: linear-gradient(180deg, #151515, #0f0f0f);
  border-radius: 14px;
}
.nx-020 {
  padding-top: 8px;
  padding-bottom: 20px;
}
.nx-020 .nx-015 {
  opacity: 0.85;
}