.np-game-picker-wrap {
  width: 100%;
  margin: 24px 0 48px;
}

.np-game-picker-card {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
  box-sizing: border-box;
}

.np-game-picker-wrap *,
.np-game-picker-wrap *::before,
.np-game-picker-wrap *::after {
  box-sizing: border-box;
}

.np-game-picker-header {
  margin-bottom: 28px;
}

.np-game-picker-eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: #64748b;
  letter-spacing: 0.02em;
}

.np-game-picker-title {
  margin: 0 0 14px;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
}

.np-game-picker-desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
}

.np-game-picker-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.np-question-block {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 24px;
}

.np-question-block h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.4;
  color: #0f172a;
}

.np-option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.np-option-btn,
.np-submit-btn,
.np-reset-btn {
  appearance: none;
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.np-option-btn {
  background: #16213e;
  color: #ffffff;
}

.np-option-btn:hover {
  background: #223056;
  transform: translateY(-1px);
}

.np-option-btn.is-selected {
  background: #f59e0b;
  color: #ffffff;
}

.np-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.np-submit-btn {
  background: #2563eb;
  color: #ffffff;
}

.np-submit-btn:hover {
  background: #1d4ed8;
}

.np-reset-btn {
  background: #e2e8f0;
  color: #0f172a;
}

.np-reset-btn:hover {
  background: #cbd5e1;
}

.np-result-wrap {
  margin-top: 30px;
  padding: 26px;
  background: #f8fafc;
  border: 1px solid #dbe3ee;
  border-radius: 22px;
}

.np-result-wrap h2 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: #0f172a;
}

.np-result-empty {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
}

.np-result-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px;
  margin-top: 14px;
}

.np-result-card:first-child {
  margin-top: 0;
}

.np-result-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.35;
  color: #0f172a;
}

.np-result-card p {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

.np-result-score {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #2563eb;
}

@media (max-width: 1024px) {
  .np-game-picker-title {
    font-size: 38px;
  }

  .np-game-picker-card {
    padding: 28px;
  }
}

@media (max-width: 768px) {
  .np-game-picker-wrap {
    margin: 16px 0 32px;
  }

  .np-game-picker-card {
    padding: 20px;
    border-radius: 20px;
  }

  .np-game-picker-title {
    font-size: 32px;
  }

  .np-game-picker-desc {
    font-size: 16px;
  }

  .np-question-block {
    padding: 18px;
    border-radius: 18px;
  }

  .np-question-block h3 {
    font-size: 18px;
  }

  .np-option-grid {
    gap: 8px;
  }

  .np-option-btn,
  .np-submit-btn,
  .np-reset-btn {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
  }

  .np-action-row {
    flex-direction: column;
  }

  .np-result-wrap {
    padding: 20px;
    border-radius: 18px;
  }

  .np-result-wrap h2 {
    font-size: 24px;
  }

  .np-result-card {
    padding: 16px;
    border-radius: 16px;
  }

  .np-result-card h3 {
    font-size: 20px;
  }
}