* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #000000;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  background:
    radial-gradient(circle at top, rgba(0, 255, 136, 0.16), transparent 30%),
    linear-gradient(to bottom, #050505, #000000);
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 20px 60px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.logo {
  font-size: 38px;
  font-weight: 900;
  color: #00ff88;
  letter-spacing: 1px;
}

.nav-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  border-radius: 14px;
  padding: 14px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-green {
  background: #00ff88;
  color: #000000;
}

.btn-green:hover {
  background: #31ffaa;
}

.btn-dark {
  background: transparent;
  color: #00ff88;
  border: 1px solid #00ff88;
}

.btn-dark:hover {
  background: #00ff88;
  color: #000000;
}

.hero {
  text-align: center;
  padding: 30px 0 20px;
}

.badge {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid rgba(0, 255, 136, 0.35);
  border-radius: 999px;
  color: #7dffbf;
  background: rgba(0, 255, 136, 0.08);
  margin-bottom: 24px;
  font-size: 14px;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero h1 span {
  color: #00ff88;
}

.hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #a7a7a7;
  font-size: 19px;
  line-height: 1.6;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  margin-top: 24px;
}

.card {
  background: #0a0a0a;
  border: 1px solid #1f1f1f;
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.04);
}

.card-title {
  color: #8f8f8f;
  font-size: 13px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-value {
  font-size: 34px;
  font-weight: 900;
  color: #00ff88;
  margin-bottom: 10px;
}

.card-text {
  color: #b3b3b3;
  line-height: 1.6;
  font-size: 15px;
}

.panel-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.list {
  display: grid;
  gap: 14px;
}

.list-item {
  padding: 18px 20px;
  border-radius: 18px;
  background: #050505;
  border: 1px solid #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #d8d8d8;
}

.list-item b {
  color: #00ff88;
}

.form-box {
  max-width: 460px;
  margin: 80px auto 0;
}

.input {
  width: 100%;
  background: #050505;
  color: white;
  border: 1px solid #222222;
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 16px;
  margin-bottom: 14px;
  outline: none;
}

.input:focus {
  border-color: #00ff88;
}

.form-note {
  color: #8d8d8d;
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.6;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.stat-box {
  background: #0a0a0a;
  border: 1px solid #1f1f1f;
  border-radius: 24px;
  padding: 24px;
}

.stat-label {
  color: #8f8f8f;
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.stat-number {
  font-size: 36px;
  font-weight: 900;
  color: #00ff88;
}

.progress-wrap {
  margin-top: 24px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  color: #a5a5a5;
  margin-bottom: 10px;
  font-size: 14px;
}

.progress {
  height: 14px;
  background: #090909;
  border: 1px solid #1a1a1a;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 74%;
  background: linear-gradient(90deg, #00ff88, #5cffb1);
  box-shadow: 0 0 24px rgba(0, 255, 136, 0.3);
}

.wheel-box {
  text-align: center;
}

.wheel {
  width: 230px;
  height: 230px;
  margin: 10px auto 25px;
  border-radius: 50%;
  border: 8px solid #00ff88;
  box-shadow: 0 0 35px rgba(0, 255, 136, 0.25);
  background:
    conic-gradient(
      #00ff88 0deg 60deg,
      #111111 60deg 120deg,
      #19c96b 120deg 180deg,
      #111111 180deg 240deg,
      #00ff88 240deg 300deg,
      #111111 300deg 360deg
    );
  position: relative;
}

.wheel::after {
  content: "SPIN";
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #000000;
  border: 2px solid #00ff88;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ff88;
  font-weight: 900;
  letter-spacing: 1px;
}

.small-text {
  color: #9b9b9b;
  line-height: 1.6;
  font-size: 15px;
}

.history-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  background: #050505;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
}

.history-left {
  color: #d8d8d8;
}

.history-date {
  color: #7d7d7d;
  font-size: 13px;
  margin-top: 6px;
}

.history-points {
  color: #00ff88;
  font-size: 22px;
  font-weight: 900;
}

.footer-space {
  height: 40px;
}

@media (max-width: 900px) {
  .grid-3,
  .grid-2,
  .stats {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 17px;
  }
}.wheel-wrap {
  position: relative;
  width: 260px;
  margin: 20px auto 0;
}

.wheel-button {
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: block;
  margin: 0 auto;
}

.wheel-button:active {
  transform: scale(0.98);
}

.wheel {
  width: 230px;
  height: 230px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 8px solid #00ff88;
  box-shadow: 0 0 35px rgba(0, 255, 136, 0.25);
  background:
    conic-gradient(
      #00ff88 0deg 60deg,
      #111111 60deg 120deg,
      #19c96b 120deg 180deg,
      #111111 180deg 240deg,
      #00ff88 240deg 300deg,
      #111111 300deg 360deg
    );
  transition: transform 1s ease-out;
}

.wheel.spinning {
  transform: rotate(1080deg);
}

.wheel-center-text {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #000000;
  border: 2px solid #00ff88;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ff88;
  font-weight: 900;
  letter-spacing: 1px;
  pointer-events: none;
}

.spin-floating {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, 0);
  color: #00ff88;
  font-size: 34px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 0 16px rgba(0,255,136,0.45);
}

.spin-floating.show {
  animation: floatUp 1s ease-out forwards;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -10px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -90px);
  }
}.hero-points {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,255,136,0.28);
  background: rgba(0,255,136,0.08);
}

.hero-points-label {
  color: #b8ffd7;
  font-size: 13px;
  font-weight: 600;
}

.hero-points-value {
  color: #00ff88;
  font-size: 16px;
  font-weight: 800;
}

.wheel-wrap {
  position: relative;
  width: 260px;
  margin: 20px auto 0;
}

.wheel-button {
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: block;
  margin: 0 auto;
}

.wheel-button:active {
  transform: scale(0.98);
}

.wheel {
  width: 230px;
  height: 230px;
  margin: 0 auto;
  border-radius: 50%;
  border: 6px solid #00ff88;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.22);
  background: conic-gradient(
    #22ff88 0deg 72deg,
    #1a1a1a 72deg 144deg,
    #22ff88 144deg 216deg,
    #1a1a1a 216deg 288deg,
    #22ff88 288deg 360deg
  );
  transition: transform 1s ease-out;
  position: relative;
}

.wheel.spinning {
  transform: rotate(1080deg);
}

.wheel-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #111;
  border: 3px solid #00ff88;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ff88;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 0 18px rgba(0,255,136,0.2);
  pointer-events: none;
}

.spin-floating {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, 0);
  color: #00ff88;
  font-size: 34px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 0 16px rgba(0,255,136,0.45);
}

.spin-floating.show {
  animation: floatUp 1s ease-out forwards;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
  20% {
    opacity: 1;
    transform: translate(-50%, -10px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -90px);
  }
}
.wheel-wrap {
  position: relative;
  width: 280px;
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wheel-button {
  position: relative;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: block;
}

.wheel-button:active {
  transform: scale(0.985);
}

.wheel {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 6px solid #00ff88;
  background: conic-gradient(
    #1b1b1b 0deg 45deg,
    #2aff94 45deg 90deg,
    #1b1b1b 90deg 135deg,
    #2aff94 135deg 180deg,
    #1b1b1b 180deg 225deg,
    #2aff94 225deg 270deg,
    #1b1b1b 270deg 315deg,
    #2aff94 315deg 360deg
  );
  box-shadow:
    0 0 18px rgba(0,255,136,0.35),
    0 0 40px rgba(0,255,136,0.18);
  transition: transform 1.3s cubic-bezier(.17,.67,.2,1);
}

.wheel.spinning {
  transform: rotate(1440deg);
}

.wheel-center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #111;
  border: 3px solid #00ff88;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00ff88;
  font-weight: 900;
  letter-spacing: 1px;
  box-shadow: 0 0 16px rgba(0,255,136,0.22);
  pointer-events: none;
}

.wheel-pointer {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 18px solid #00ff88;
  filter: drop-shadow(0 0 8px rgba(0,255,136,0.4));
  pointer-events: none;
}

.spin-popup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  color: #00ff88;
  font-size: 34px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  text-shadow: 0 0 18px rgba(0,255,136,0.45);
  z-index: 5;
}

.spin-popup.show {
  animation: spinPop 0.9s ease-out forwards;
}

@keyframes spinPop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  25% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
  }
  60% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.35);
  }
}

.spin-burst {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 4;
}

.spin-burst.show {
  animation: burstAnim 0.7s ease-out forwards;
}

@keyframes burstAnim {
  0% {
    opacity: 0.9;
    box-shadow:
      0 0 0 0 rgba(0,255,136,0.9),
      0 0 0 0 rgba(0,255,136,0.7),
      0 0 0 0 rgba(0,255,136,0.5),
      0 0 0 0 rgba(0,255,136,0.35);
  }
  100% {
    opacity: 0;
    box-shadow:
      0 -55px 0 6px rgba(0,255,136,0),
      55px 0 0 4px rgba(0,255,136,0),
      0 55px 0 5px rgba(0,255,136,0),
      -55px 0 0 4px rgba(0,255,136,0),
      40px -40px 0 3px rgba(0,255,136,0),
      40px 40px 0 3px rgba(0,255,136,0),
      -40px 40px 0 3px rgba(0,255,136,0),
      -40px -40px 0 3px rgba(0,255,136,0);
  }
}