body {
  margin: 0;
  font-family: "Segoe UI Symbol", "Arial Unicode MS", sans-serif;
  background-color: #0E121A;
  color: white;
}

.container {
  padding: 32px;
}

.logo-header {
  margin-bottom: 24px;
}

.logo {
  width: 160px;
  height: auto;
}

.card {
  background-color: #0B2447;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.card-md {
  max-width: 720px;
}

.card-lg {
  max-width: 960px;
}

.progress-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background-color: white;
  border-radius: 3px;
  position: relative;
  margin-top: 9px;
}

.progress-fill {
  height: 100%;
  background-color: #D6A84D;
  border-radius: 3px;
}

.title {
  font-size: 24px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.title-logo {
  width: 20px;
  height: 20px;
}

.description {
  font-size: 16px;
  color: #D1D5DB;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.card-md .description {
  max-width: 580px;
}

.card-lg .description {
  max-width: 720px;
}

.score-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

.score-btn {
  background-color: white;
  color: black;
  border: none;
  font-weight: 500;
  padding: 12px 0;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.score-btn.active {
  background-color: #D6A84D;
}

.labels {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #9CA3AF;
  margin-bottom: 40px;
}

.nav-buttons {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  min-width: 152px;
}

.btn-primary {
  background-color: #D6A84D;
  color: white;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background-color: #c4952c;
}

.btn-primary.disabled {
  opacity: 70%;
  cursor: wait;
}

.btn-secondary {
  border: 1px solid white;
  background: transparent;
  color: white;
}

.disclaimer,
.disclaimer a {
  margin-top: 20px;
  font-size: 12px;
  color: #9CA3AF;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.form input {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: none;
  font-size: 14px;
  color: black;
}

.form button {
  margin-top: 8px;
}

.validation-error {
  color: #c60000;
  margin-bottom: 20px;
}

.hidden {
  display: none;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

.slider-wrapper {
  position: relative;
  margin-bottom: 24px;
}

.tooltip {
  position: absolute;
  top: -28px;
  background-color: #D6A84D;
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 14px;
  transition: left 0.1s ease-out;
}

.slider {
  width: 100%;
  accent-color: #D6A84D;
}

.slider-labels,
.slider-hint {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 4px;
}

.slider-hint {
  color: #AAB0BA;
  font-size: 11px;
}

.textarea {
  width: calc(100% - 32px);
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  color: black;
  resize: none;
  margin-bottom: 24px;
  border: none;
}

.answers {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 40px;
}

.answer-btn {
  width: 64px;
  height: 64px;
  border: 4px solid white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: bold;
  background: transparent;
  color: white;
  cursor: pointer;
  transition: 0.2s;
}

.answer-btn:hover, .answer-btn.active {
  background: white;
  color: black;
}

.table-wrapper {
  max-height: 320px;
  overflow-y: auto;
  margin-bottom: 24px;
  border-top: 1px solid white;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
}

thead th {
  font-size: 14px;
  border-bottom: 1px solid white;
  padding: 10px 0;
  position: sticky;
  top: 0;
  background-color: #0B2447;
}

tbody td {
  padding: 6px 12px;
  font-size: 14px;
}

tbody td:last-child {
  font-weight: bold;
}

.note {
  font-size: 13px;
  color: #9CA3AF;
  margin-bottom: 24px;
}

@media only screen and (max-width: 600px) {
  .container {
    padding: 0;
  }

  .logo-header {
    padding: 20px 30px;
    margin-bottom: 0;
  }

  .logo {
    width: 120px;
  }

  .card {
    padding: 24px;
  }
  
  .card, .card-md, .card-lg {
    max-width: 400px;
  }
  
  .nav-buttons {
    gap: 12px;
  }

  .btn {
    flex: 1;
    padding: 10px;
    min-width: initial;
  }

  .mobile-only {
    display: block;
  }

  .desktop-only {
    display: none;
  }
}