/* src/http/okquizzy/shared/styles/components.css */
.quiz-card {
  display: flex;
  align-items: center;
  position: relative;
  background: #333;
  backdrop-filter: blur(5px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: var(--color-text);
  height: 148px;
  transition: var(--transition);
}
@media (min-width: 768px) {
  .quiz-card {
    height: 180px;
  }
}
.quiz-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}
.quiz-card__image-container {
  position: relative;
  width: 140px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.quiz-card__image {
  width: 134px;
  height: 134px;
  object-fit: cover;
  border-radius: 12px;
  transform: rotate(23deg);
  box-shadow: 2px 5px 40px 10px rgba(224, 0, 149, 0.3);
  position: relative;
  top: 24px;
  right: 24px;
}
@media (min-width: 768px) {
  .quiz-card__image {
    width: 108px;
    height: 108px;
    top: 0;
  }
}
.quiz-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--spacing-sm);
  position: relative;
  margin-top: 4px;
}
@media (min-width: 768px) {
  .quiz-card__content {
    padding-left: 0;
  }
}
.quiz-card__header {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.quiz-card__badge {
  flex-shrink: 0;
  padding: 1px 8px 2px;
  background: #e00095;
  border-radius: 30px;
  font-size: 10px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
  position: absolute;
  top: 8px;
  right: 12px;
}
.quiz-card__title {
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 8px 0;
  color: var(--color-text);
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.quiz-card__meta {
  font-size: 12px;
  color: var(--color-text);
  margin: 0;
  line-height: 18px;
}
.quiz-card__completed-badge {
  position: absolute;
  bottom: 10px;
  left: 12px;
  padding: 1px 8px 2px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 30px;
  font-size: 10px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 1;
}
@media (max-width: 400px) {
  .quiz-card__completed-badge {
    left: 6px;
    bottom: 6px;
    font-size: 8px;
  }
}
.quizzes-section {
  max-width: var(--section-max-width);
  margin: var(--spacing-xl) auto 0;
}
.quizzes-section__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}
@media (max-width: 768px) {
  .quizzes-section__title {
    font-size: 16px;
  }
}
.quiz-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-sm);
}
@media (min-width: 768px) {
  .quiz-list {
    grid-template-columns: repeat(auto-fit, minmax(min(303px, 100%), 303px));
  }
}

/* src/http/okquizzy/shared/styles/shared.css */

/* src/http/okquizzy/pages/quiz/quiz.css */
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
.quiz-intro {
  position: relative;
  min-height: 530px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #897c95;
  padding: 20px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
.quiz-intro-background {
  position: absolute;
  inset: -20px;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(224, 0, 149, 0) 0%,
      rgba(224, 0, 149, 0.6) 100%),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0.5) 100%),
    var(--quiz-bg-image) lightgray 50% / cover no-repeat;
  filter: blur(10px);
}
.quiz-intro-card-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  transform: rotate(15deg);
}
.quiz-intro-card {
  width: 175px;
  height: 167px;
  border-radius: 12px;
  box-shadow: 0 0 50px 5px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}
.quiz-intro-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 430px;
  width: 100%;
  padding: var(--spacing-lg);
}
.quiz-intro-title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  margin: 0 0 16px;
  color: #ffffff;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.quiz-intro-title--mobile {
  position: relative;
  z-index: 1;
  max-width: 430px;
  padding: 0 var(--spacing-lg);
  margin-bottom: 8px;
}
.quiz-intro-title--desktop {
  display: none;
}
@media (min-width: 769px) {
  .quiz-intro-title--mobile {
    display: none;
  }
  .quiz-intro-title--desktop {
    display: block;
  }
}
.quiz-intro-stats {
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 16px;
  z-index: 1;
}
.quiz-intro-stats--mobile {
  margin-top: 14px;
}
.quiz-intro-stats--desktop {
  display: none;
}
@media (min-width: 769px) {
  .quiz-intro-stats--mobile {
    display: none;
  }
  .quiz-intro-stats--desktop {
    display: block;
  }
}
.quiz-intro-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #ffffff;
  max-width: 300px;
  text-align: center;
}
.quiz-intro-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 16px;
  cursor: pointer;
  color: #ffffff;
  transition: var(--transition);
  z-index: 1;
}
.quiz-intro-cta:hover {
  transform: translateY(2px);
}
.quiz-intro-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
  border-radius: 8px;
}
.quiz-intro-cta-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}
.quiz-intro-cta-arrow {
  animation: bounceDown 1.5s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .quiz-intro-cta-arrow {
    animation: none;
  }
}
@media (min-width: 769px) {
  .quiz-intro {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
  }
  .quiz-intro-cta {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
  }
  .quiz-intro-cta:hover {
    transform: translateX(-50%) translateY(2px);
  }
  .quiz-intro-card-wrapper {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .quiz-intro-card {
    width: 300px;
    height: 286px;
  }
  .quiz-intro-content {
    max-width: 480px;
    padding: 0;
  }
  .quiz-intro-description {
    max-width: 400px;
  }
}
@media (max-width: 768px) {
  .quiz-intro-card {
    width: 150px;
    height: 143px;
  }
  .quiz-intro-card-wrapper {
    margin-bottom: 8px;
    margin-top: 34px;
  }
  .quiz-intro-content {
    padding: var(--spacing-md) var(--spacing-xs);
  }
}
@media (max-width: 768px) and (max-height: 740px) {
  .quiz-intro-description {
    font-size: 14px;
    max-height: 124px;
    overflow-y: auto;
  }
}
.quiz-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.quiz-page .quiz-container {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-md);
  padding-bottom: 0;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .quiz-page .quiz-container {
    padding: var(--spacing-xl) var(--spacing-md);
  }
}
.quiz-app,
.quiz-loading {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--spacing-lg) var(--spacing-md);
}
.quiz-header h2 {
  font-size: 28px;
  margin-bottom: var(--spacing-md);
  text-align: center;
}
.questions-scroll-container {
  padding-bottom: var(--spacing-lg);
}
.question-item {
  margin-bottom: 60px;
  padding: 0;
  scroll-margin-top: 80px;
}
.question-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 10px;
}
.question-divider .star {
  font-size: 14px;
  color: #e00095;
}
.question-counter {
  font-size: 14px;
  line-height: 24px;
}
.question-counter .current {
  color: #fff;
}
.question-counter .total {
  color: #666;
}
.question-content {
  margin-bottom: var(--spacing-xl);
}
.question-text {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {
  .question-text {
    font-size: 18px;
  }
}
.options {
  display: flex;
  flex-direction: column;
  gap: 17px;
  border: none;
  padding: 0;
  margin: 0;
}
.option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: #1a1a1a;
  border: 1px solid #666;
  border-radius: 60px;
  color: var(--color-text);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  min-height: 38px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.option:hover {
  border-color: #999;
}
.option.selected {
  border-color: #e00095;
  background: #e00095;
}
.option-text {
  display: block;
  pointer-events: none;
  flex: 1;
}
.option-checkmark {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-left: 8px;
}
.option-checkmark svg {
  width: 100%;
  height: 100%;
  color: #fff;
}
.option input[type=radio]:focus {
  outline: none;
  box-shadow: none;
}
.option {
  -webkit-tap-highlight-color: transparent;
  outline: none;
}
.option:focus-within:has(input:focus-visible) {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}
.quiz-submit-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0 var(--spacing-md);
  padding-top: 0;
  position: relative;
  top: -40px;
}
.ready-text {
  font-size: 14px;
  color: #808080;
  text-align: center;
  margin: 0;
}
.btn-submit {
  width: 100%;
  max-width: 375px;
  height: 48px;
  padding: 16px 40px;
}
.quiz-complete {
  text-align: center;
  padding: var(--spacing-xl);
}
.quiz-complete h2 {
  font-size: 32px;
  margin-bottom: var(--spacing-md);
  background:
    linear-gradient(
      135deg,
      var(--color-primary),
      var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.quiz-complete p {
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-lg);
}
.quiz-error {
  padding: var(--spacing-md);
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: var(--border-radius);
  color: #ff4444;
  margin-bottom: var(--spacing-md);
}
.quiz-loading {
  text-align: center;
  padding: var(--spacing-xl);
}
.quiz-loading h1 {
  font-size: 32px;
  margin-bottom: var(--spacing-md);
}
.quiz-loading p {
  color: var(--color-text-primary);
}
.calibration-screen {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      65.34% 59.22% at 50.13% 100%,
      #7a0151 0%,
      #1a1a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.calibration-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xl);
  padding: var(--spacing-lg);
  width: 100%;
  height: 100%;
}
.calibration-title {
  font-size: 18px;
  font-weight: 700;
  color: white;
  text-align: center;
  margin: 0;
}
.calibration-circle {
  position: relative;
  width: 190px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.progress-ring {
  position: absolute;
  top: 0;
  left: 0;
  overflow: visible;
}
.progress-ring-circle {
  transition: stroke-dashoffset 0.2s ease-out;
  filter: drop-shadow(0 0 8px rgba(255, 60, 190, 0.6)) drop-shadow(0 0 16px rgba(255, 60, 190, 0.4));
}
.percentage-text {
  position: absolute;
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-weight: 900;
  line-height: 1;
  animation: scaleInNumber 0.15s ease-out;
}
.percentage-number {
  font-size: 60px;
  background:
    linear-gradient(
      180deg,
      #ff3cbe 52.358%,
      #ff8fda 93.023%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.percentage-symbol {
  font-size: 16px;
  background:
    linear-gradient(
      180deg,
      #ff3cbe 52.358%,
      #ff8fda 93.023%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 2px;
}
@keyframes scaleInNumber {
  0% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .progress-ring-circle {
    filter: drop-shadow(0 0 8px rgba(255, 60, 190, 0.5));
  }
  .percentage-text {
    animation: none;
  }
}
.calibration-footer {
  margin-top: var(--spacing-xl);
}
.calibration-logo {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .question-item {
    padding: 0 var(--spacing-sm);
  }
  .btn-submit {
    width: 100%;
  }
}
.data-collection-screen {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      65.34% 59.22% at 50.13% 100%,
      #7a0151 0%,
      #1a1a1a 100%);
  z-index: 1001;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: var(--spacing-lg);
  overflow-y: auto;
}
.data-collection-container {
  max-width: 375px;
  width: 100%;
  text-align: center;
  margin: auto;
}
.data-collection-title {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text);
  margin: 0 0 8px;
  font-weight: 400;
}
.data-collection-subtitle {
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text);
  margin: 0 0 var(--spacing-xl);
}
.data-collection-screen-submit {
  width: 100%;
  max-width: 375px;
  height: 48px;
  padding: 16px 40px;
}
.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: var(--spacing-xl);
}
.form-field {
  text-align: left;
}
.field-label {
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text);
  margin-bottom: 8px;
  font-weight: 400;
}
.custom-dropdown {
  position: relative;
  width: 100%;
}
.dropdown-trigger {
  width: 100%;
  height: 50px;
  background: #1a1a1a;
  border: 1px solid #808080;
  border-radius: 25px;
  padding: 0 14px;
  font-size: 18px;
  line-height: 28px;
  color: #666;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dropdown-trigger.has-value {
  color: var(--color-text);
}
.dropdown-trigger:hover {
  border-color: #999;
}
.dropdown-trigger:focus {
  outline: none;
  border-color: #999;
}
.dropdown-text {
  flex: 1;
}
.dropdown-arrow {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  stroke-width: 2px;
  stroke: #ffffff;
}
.dropdown-arrow.open {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #1a1a1a;
  border: 1px solid #808080;
  border-radius: 25px;
  padding: 9px 0;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.dropdown-menu::-webkit-scrollbar {
  display: none;
}
.dropdown-menu {
  scrollbar-width: none;
}
.dropdown-option {
  width: 100%;
  background: none;
  border: none;
  padding: 11px 32px;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s ease;
}
.dropdown-option:hover,
.dropdown-option.focused {
  background: rgba(255, 255, 255, 0.05);
}
.dropdown-option:focus {
  outline: none;
}
.dropdown-option.selected {
  font-weight: 900;
}
.option-label {
  flex: 1;
}
.checkmark {
  flex-shrink: 0;
  margin-left: 12px;
}
.data-collection-screen .btn-primary:disabled {
  background: #666;
  color: #c0c0c0;
  opacity: 1;
  cursor: not-allowed;
}
.data-collection-screen .error-message {
  padding: var(--spacing-md);
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.3);
  border-radius: var(--border-radius);
  color: #ff4444;
  margin-bottom: var(--spacing-md);
  font-size: 14px;
  text-align: center;
}
.quiz-complete-screen {
  position: relative;
  min-height: 820px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #897c95;
  padding: 56px var(--spacing-lg);
}
.quiz-complete-background {
  position: absolute;
  inset: -30px;
  pointer-events: none;
}
.quiz-complete-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(15px);
}
.quiz-complete-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.quiz-complete-stars {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 322px;
  height: 89px;
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}
.quiz-complete-card-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  transform: rotate(0deg) scale(0.3);
  opacity: 0;
  pointer-events: none;
  bottom: 30px;
}
@media (max-width: 769px) {
  .quiz-complete-card-wrapper {
    bottom: 0;
  }
}
.quiz-complete-card {
  width: 230px;
  height: 230px;
  border-radius: 12px;
  box-shadow: 0 0 50px 5px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}
.quiz-complete-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 375px;
  width: 100%;
  opacity: 0;
}
.quiz-complete-subtitle {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  color: #ffffff;
  margin: 0 0 8px;
}
.quiz-complete-title {
  font-size: 44px;
  font-weight: 900;
  line-height: normal;
  text-align: center;
  margin: 0 0 16px;
  max-width: 499px;
  background:
    linear-gradient(
      180deg,
      #ffffff 69.767%,
      #f17ec6 93.023%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.quiz-complete-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #ffffff;
  margin: 0 0 24px;
  max-width: 499px;
}
.quiz-complete-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px 24px;
  margin-bottom: 40px;
  border: 1px solid transparent;
  border-image:
    linear-gradient(
      90deg,
      rgba(255, 225, 241, 0) 0%,
      #ff38bc 50%,
      rgba(255, 225, 241, 0) 100%) 1;
  background:
    radial-gradient(
      45.88% 286.07% at 50% 133.61%,
      rgba(224, 0, 149, 0.5) 0%,
      rgba(0, 0, 0, 0.4) 49.52%,
      rgba(0, 0, 0, 0) 100%);
}
.stats-percentage {
  display: flex;
  align-items: baseline;
}
.stats-number {
  font-size: 30px;
  font-weight: 900;
  line-height: normal;
  background:
    linear-gradient(
      180deg,
      #ff3cbe 69.767%,
      #ff8fda 93.023%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats-percent {
  font-size: 16px;
  font-weight: 900;
  line-height: normal;
  background:
    linear-gradient(
      180deg,
      #ff3cbe 69.767%,
      #ff8fda 93.023%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats-text {
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  color: #ffffff;
  text-align: left;
  max-width: 140px;
  margin-left: 4px;
}
.quiz-complete-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.btn-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 280px;
  height: 48px;
  padding: 16px 40px;
}
.btn-share:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}
.quiz-complete-actions button {
  font-weight: 500;
  font-size: 16px;
}
.share-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #1a1a1a;
}
.btn-cta-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 48px;
  padding: 16px 40px;
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: #ffffff;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}
.btn-cta-outline:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
}
.btn-feedback-link {
  display: inline-flex;
  align-items: center;
  height: 24px;
  gap: 2px;
  color: #c0ccfb;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-feedback-link:hover {
  opacity: 0.8;
}
.btn-feedback-link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.6);
  outline-offset: 2px;
  border-radius: 4px;
}
.answer-below {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}
.answer-below p {
  margin: 0;
  font-size: 14px;
  color: white;
  text-align: center;
}
.you-might-like-section_container {
  padding: 0 var(--spacing-md);
}
@media (min-width: 769px) {
  .quiz-complete-content {
    max-width: 620px;
  }
  .quiz-complete-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .quiz-complete-screen {
    min-height: 620px;
  }
  .quiz-complete-stars {
    width: 280px;
    height: 77px;
    top: 20px;
  }
  .quiz-complete-card-wrapper {
    margin-top: 30px;
  }
  .quiz-complete-card {
    width: 170px;
    height: 170px;
  }
  .quiz-complete-title {
    font-size: 36px;
  }
  .btn-share,
  .btn-cta-outline {
    width: 100%;
    max-width: 280px;
  }
}
@media (min-width: 769px) {
  .btn-feedback-link {
    flex-basis: 100%;
    justify-content: center;
    height: 48px;
  }
}
@keyframes starsEnter {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-30px) scale(0.3);
  }
  70% {
    opacity: 1;
    transform: translateX(-50%) translateY(5px) scale(1.05);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}
@keyframes swirlEnter {
  0% {
    opacity: 0;
    transform: rotate(0deg) scale(0.3);
  }
  100% {
    opacity: 1;
    transform: rotate(15deg) scale(1);
  }
}
@keyframes contentFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.quiz-complete-stars.animate-in {
  animation: starsEnter 0.5s ease-out 0.2s forwards;
}
.quiz-complete-card-wrapper.animate-in {
  animation: swirlEnter 0.6s ease-out forwards;
}
.quiz-complete-content.animate-in {
  animation: contentFadeIn 0.5s ease-out 0.4s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .quiz-complete-stars,
  .quiz-complete-card-wrapper,
  .quiz-complete-content {
    opacity: 1 !important;
    animation: none !important;
  }
  .quiz-complete-stars {
    transform: translateX(-50%) !important;
  }
  .quiz-complete-card-wrapper {
    transform: rotate(15deg) !important;
  }
}
