:root {
  --vkei-ink: #f5f2ff;
  --vkei-muted: #c9c3d9;
  --vkei-pink: #ff3b8d;
  --vkei-hot: #b00020;
  --vkei-gold: #d8c7ff;
  --vkei-purple: #8a2be2;
  --vkei-panel: rgba(20, 9, 28, 0.92);
  --vkei-line: rgba(245, 242, 255, 0.2);
  --vkei-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--vkei-ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 59, 141, 0.18), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(138, 43, 226, 0.18), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(176, 0, 32, 0.14), transparent 34%),
    #030305;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  overflow-x: hidden;
}

.vkei-page {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 30px 0 58px;
}

.vkei-home-hero,
.vkei-hero,
.vkei-quiz-shell,
.vkei-result-card,
.vkei-about-card {
  border: 1px solid var(--vkei-line);
  box-shadow: var(--vkei-shadow);
}

.vkei-home-hero {
  display: grid;
  gap: 22px;
  padding: 18px;
  border-radius: 32px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 5, 12, 0.98), rgba(32, 6, 44, 0.9)),
    radial-gradient(circle at 70% 20%, rgba(255, 59, 141, 0.42), transparent 42%);
}

.vkei-home-visual {
  margin: 0;
}

.vkei-home-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
}

.vkei-home-copy {
  padding: 4px clamp(4px, 2vw, 18px) 14px;
}

.vkei-page-home .vkei-home-copy {
  display: grid;
  gap: 16px;
}

.vkei-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(11, 8, 15, 0.98), rgba(42, 7, 46, 0.92)),
    radial-gradient(circle at 70% 20%, rgba(255, 63, 148, 0.4), transparent 42%);
  color: #fff;
  overflow: hidden;
}

.vkei-hero::before,
.vkei-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.vkei-hero::before {
  inset: -80px auto auto -70px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 63, 148, 0.55), transparent 68%);
}

.vkei-hero::after {
  right: -52px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border: 1px dashed rgba(255, 211, 90, 0.55);
}

.vkei-hero-copy,
.vkei-hero-visual {
  position: relative;
  z-index: 1;
}

.vkei-kicker {
  margin: 0 0 12px;
  color: #f2ddff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.vkei-hero h1,
.vkei-section-heading h2,
.vkei-quiz h2 {
  margin: 0;
  letter-spacing: 0;
}

.vkei-hero h1 {
  font-size: clamp(2.35rem, 6vw, 4.6rem);
  line-height: 1.02;
  text-shadow: 0 0 22px rgba(255, 63, 148, 0.58);
}

.vkei-home-copy h1 {
  margin: 0;
  font-size: clamp(1.95rem, 5.4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(138, 43, 226, 0.82), 0 0 32px rgba(255, 59, 141, 0.46);
}

.vkei-lead {
  max-width: 42em;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
  line-height: 1.9;
}

.vkei-hero-actions,
.vkei-share-row,
.vkei-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.vkei-hero-actions {
  margin-top: 4px;
}

.vkei-primary-button,
.vkei-secondary-button,
.vkei-share-row button,
.vkei-result-actions button,
.vkei-result-actions a,
.vkei-option {
  border: 0;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.vkei-primary-button,
.vkei-secondary-button,
.vkei-result-actions button,
.vkei-result-actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}

.vkei-primary-button {
  padding: 0 28px;
  color: #fff;
  background: linear-gradient(135deg, #8a2be2, #b00020 58%, #ff3b8d);
  box-shadow: 0 14px 30px rgba(255, 59, 141, 0.28);
}

.vkei-page-home .vkei-primary-button {
  width: 100%;
  min-height: 58px;
  font-size: 1.08rem;
}

.vkei-secondary-button {
  padding: 0 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
}

.vkei-profile-lead {
  max-width: 42em;
  margin: 14px 0 0;
  color: var(--vkei-muted);
  line-height: 1.85;
  font-weight: 700;
}

.vkei-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.vkei-profile-grid label {
  display: grid;
  gap: 8px;
  color: #f5f2ff;
  font-weight: 900;
}

.vkei-profile-grid input {
  width: 100%;
  min-height: 52px;
  border: 2px solid rgba(245, 242, 255, 0.18);
  border-radius: 16px;
  padding: 0 14px;
  color: #170b1e;
  background: #fff;
  font: inherit;
  font-size: 16px;
}

.vkei-profile-grid input:focus {
  outline: 3px solid rgba(255, 63, 148, 0.2);
  border-color: var(--vkei-pink);
}

.vkei-profile-step .vkei-secondary-button {
  color: #f5f2ff;
  border-color: rgba(245, 242, 255, 0.32);
  background: rgba(255, 255, 255, 0.1);
}

.vkei-profile-step .vkei-hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 560px;
}

.vkei-profile-step .vkei-primary-button,
.vkei-profile-step .vkei-secondary-button {
  width: 100%;
  min-height: 52px;
  padding-inline: 12px;
  font-size: 0.96rem;
}

.vkei-quiz-shell .vkei-note,
.vkei-about-card .vkei-note {
  color: var(--vkei-muted);
}

.vkei-share-row {
  margin-top: 18px;
}

.vkei-share-row-outside {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 520px);
  margin: 16px auto 0;
}

.vkei-share-row button {
  min-width: 78px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-weight: 800;
}

.vkei-share-row-outside button {
  width: 100%;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.24);
}

.vkei-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.7;
}

.vkei-hero-visual {
  margin: 0;
}

.vkei-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.36);
}

.vkei-quiz,
.vkei-result,
.vkei-profile-step,
.vkei-analyzing,
.vkei-type-section,
.vkei-about,
.vkei-related {
  margin-top: 32px;
}

.vkei-quiz-shell,
.vkei-result-card,
.vkei-about-card {
  border-radius: 30px;
  background: var(--vkei-panel);
}

.vkei-quiz-shell {
  padding: 28px;
}

.vkei-quiz-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.vkei-text-button {
  border: 0;
  color: var(--vkei-purple);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.vkei-progress {
  height: 10px;
  margin: 10px 0 26px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(245, 242, 255, 0.14);
}

.vkei-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--vkei-pink), var(--vkei-gold));
  transition: width 0.25s ease;
}

.vkei-quiz h2 {
  font-size: clamp(1.55rem, 4.5vw, 2.35rem);
  line-height: 1.45;
}

.vkei-options {
  display: grid;
  gap: 13px;
  margin-top: 24px;
}

.vkei-option {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 2px solid rgba(245, 242, 255, 0.18);
  border-radius: 20px;
  color: var(--vkei-ink);
  background: rgba(255, 255, 255, 0.08);
  text-align: left;
  font-weight: 900;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.vkei-option:hover {
  transform: translateY(-2px);
  border-color: var(--vkei-pink);
  box-shadow: 0 12px 24px rgba(255, 63, 148, 0.14);
}

.vkei-option span:first-child {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--vkei-hot), var(--vkei-purple));
}

.vkei-result-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(20, 13, 28, 0.96), rgba(9, 7, 12, 0.98));
}

.vkei-result-head {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(245, 242, 255, 0.18);
  border-radius: 26px;
  color: #f5f2ff;
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 59, 141, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(8, 8, 10, 0.98), rgba(18, 9, 26, 0.98));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.vkei-result-code {
  margin: 0;
  color: #fff;
  font-size: clamp(2.25rem, 8vw, 5.1rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.86),
    0 0 18px rgba(138, 43, 226, 0.9),
    0 0 34px rgba(255, 59, 141, 0.65);
}

.vkei-result-code-small {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 59, 141, 0.34);
  border-radius: 999px;
  color: #f2ddff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.14em;
  text-shadow: none;
}

.vkei-result-head h1 {
  margin: 0;
  color: #ff5ba1;
  font-size: clamp(2.2rem, 5.6vw, 4.2rem);
  line-height: 1.13;
  text-shadow: 0 0 18px rgba(255, 59, 141, 0.42);
}

.vkei-result-head .vkei-note {
  margin-top: 10px;
  color: #eee8ff;
}

.vkei-result-catch {
  margin: 12px 0 0;
  color: #fff;
  font-weight: 900;
  font-size: clamp(1.05rem, 3.5vw, 1.45rem);
}

.vkei-axis-meaning {
  margin: 10px 0 0;
  color: #c9c3d9;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.6;
}

.vkei-result-image {
  width: 88px;
  height: 88px;
  object-fit: contain;
  flex: 0 0 auto;
  padding: 2px;
  border: none;
  border-radius: 8px;
  background: #fff;
  box-shadow: none;
}

.vkei-result-body {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.vkei-result-panel {
  padding: 22px;
  border: 1px solid rgba(245, 242, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.vkei-result-panel h3 {
  margin: 0 0 12px;
  color: #f2ddff;
  font-size: 1rem;
}

.vkei-result-panel p {
  margin: 0;
  color: #eee8ff;
  line-height: 1.85;
  font-weight: 700;
}

.vkei-small-note {
  color: var(--vkei-muted) !important;
  font-size: 0.82rem;
  font-weight: 700 !important;
}

.vkei-balance {
  display: grid;
  gap: 14px;
}

.vkei-axis {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(245, 242, 255, 0.14);
  border-left: 4px solid var(--axis-color);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
}

.vkei-axis-title,
.vkei-axis-main,
.vkei-axis-sub {
  margin: 0;
}

.vkei-axis-title {
  color: #c9c3d9;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.vkei-axis-main {
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--axis-color), rgba(255, 59, 141, 0.72));
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.vkei-axis-chart {
  display: grid;
  gap: 8px;
}

.vkei-axis-chart-labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--vkei-muted);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.3;
}

.vkei-axis-track {
  position: relative;
  height: 12px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(245, 242, 255, 0.18), rgba(245, 242, 255, 0.08)),
    linear-gradient(90deg, rgba(201, 195, 217, 0.28), var(--axis-color));
  box-shadow: inset 0 0 0 1px rgba(245, 242, 255, 0.14);
}

.vkei-axis-marker {
  position: absolute;
  top: 50%;
  left: var(--axis-position);
  width: 20px;
  height: 20px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--axis-color);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 8px 18px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
}

.vkei-axis-sub {
  color: var(--vkei-muted);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.7;
}

.vkei-result-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vkei-result-summary-card {
  display: grid;
  gap: 18px;
}

.vkei-summary-block {
  display: grid;
  gap: 9px;
}

.vkei-summary-block + .vkei-summary-block {
  padding-top: 16px;
  border-top: 1px solid rgba(245, 242, 255, 0.14);
}

.vkei-summary-block h4 {
  margin: 0;
  color: #f2ddff;
  font-size: 0.96rem;
}

.vkei-summary-block p {
  color: #eee8ff;
  font-weight: 700;
}

.vkei-summary-soft-note {
  padding: 15px;
  border-radius: 18px;
  background: rgba(255, 59, 141, 0.12);
}

.vkei-summary-soft-note h4 {
  color: #ffd8ed;
}

.vkei-summary-keywords {
  opacity: 0.9;
}

.vkei-summary-keywords h4 {
  color: #c9c3d9;
  font-size: 0.88rem;
}

.vkei-summary-keywords .vkei-result-tags li {
  min-height: 26px;
  padding: 5px 9px;
  color: #d9d0ed;
  background: rgba(245, 242, 255, 0.1);
  font-size: 0.76rem;
}

.vkei-chip-list,
.vkei-result-tags,
.vkei-type-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.vkei-chip-list li,
.vkei-result-tags li,
.vkei-type-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #f5f2ff;
  background: rgba(138, 43, 226, 0.22);
  font-size: 0.82rem;
  font-weight: 900;
}

.vkei-result-actions {
  justify-content: center;
  margin-top: 22px;
}

.vkei-result-actions button,
.vkei-result-actions a {
  min-width: 148px;
  padding: 0 18px;
  color: #fff;
  background: #1e1527;
}

.vkei-result-actions .vkei-copy-button,
.vkei-result-actions .vkei-retry-button,
.vkei-result-actions .vkei-top-button {
  color: #f5f2ff;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(245, 242, 255, 0.2);
}

.vkei-section-heading {
  margin-bottom: 16px;
}

.vkei-section-heading h2 {
  font-size: clamp(1.75rem, 5vw, 2.7rem);
}

.vkei-section-heading p {
  max-width: 46em;
  margin: 10px 0 0;
  color: var(--vkei-muted);
  line-height: 1.8;
}

.vkei-heading-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 10px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--vkei-purple), var(--vkei-pink));
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.vkei-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.vkei-type-card {
  min-height: 100%;
  padding: 18px;
  border: 1px solid rgba(245, 242, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.vkei-type-card h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
  line-height: 1.45;
}

.vkei-type-card p {
  margin: 0 0 12px;
  color: var(--vkei-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.vkei-about-card {
  padding: 24px;
}

.vkei-about-card h2 {
  margin: 0 0 12px;
  color: #f5f2ff;
}

.vkei-about-card p {
  margin: 0;
  color: var(--vkei-muted);
  line-height: 1.85;
}

.vkei-about-card h2:not(:first-child) {
  margin-top: 24px;
}

.vkei-about-card p + p,
.vkei-about-card .vkei-about-list + p {
  margin-top: 10px;
}

.vkei-about-list {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.vkei-about-list li {
  position: relative;
  padding-left: 1.15em;
  color: #eee8ff;
  line-height: 1.75;
  font-weight: 800;
}

.vkei-about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.45em;
  height: 0.45em;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--vkei-pink), var(--vkei-gold));
}

.vkei-related .tc-recommendation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vkei-related .tc-recommendation-card {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  color: #170b1e;
  background: #fff;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(67, 31, 82, 0.1);
}

.vkei-related .tc-recommendation-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
}

.vkei-related .tc-recommendation-card span,
.vkei-related .tc-recommendation-card small {
  display: block;
  padding: 0 16px;
}

.vkei-related .tc-recommendation-card span {
  padding-top: 14px;
  font-weight: 900;
}

.vkei-related .tc-recommendation-card small {
  padding-top: 8px;
  padding-bottom: 16px;
  color: var(--vkei-muted);
  line-height: 1.6;
}

.vkei-related-compact {
  margin-top: 28px;
}

.vkei-related-compact .tc-recommendation-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin-inline: auto;
}

.vkei-related-compact .tc-recommendation-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  border-radius: 0;
}

.vkei-related-compact .tc-recommendation-card span {
  padding-top: 12px;
  font-size: 0.92rem;
}

.vkei-related-compact .tc-recommendation-card small {
  font-size: 0.78rem;
  line-height: 1.45;
}

.vkei-loader {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 6px solid #f1e5ff;
  border-top-color: var(--vkei-pink);
  border-right-color: var(--vkei-gold);
  animation: vkei-spin 0.9s linear infinite;
}

.vkei-analyzing .vkei-quiz-shell {
  text-align: center;
}

.vkei-analyzing h2 {
  margin: 0;
  font-size: clamp(1.55rem, 5vw, 2.2rem);
}

.vkei-analyzing p {
  margin: 12px 0 0;
  color: var(--vkei-muted);
  font-weight: 800;
}

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

@media (max-width: 860px) {
  .vkei-page {
    width: min(100% - 22px, 680px);
    padding-top: 18px;
  }

  .vkei-hero {
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 26px;
  }

  .vkei-hero-visual {
    order: -1;
  }

  .vkei-hero-visual img {
    border-radius: 18px;
  }

  .vkei-result-columns,
  .vkei-type-grid,
  .vkei-related .tc-recommendation-grid,
  .vkei-profile-grid {
    grid-template-columns: 1fr;
  }

  .vkei-related-compact .tc-recommendation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .vkei-page {
    width: 100%;
    padding: 10px 12px 44px;
  }

  .vkei-hero,
  .vkei-quiz-shell,
  .vkei-result-card,
  .vkei-about-card {
    border-radius: 22px;
  }

  .vkei-hero h1 {
    font-size: clamp(2.15rem, 14vw, 3.4rem);
  }

  .vkei-home-hero {
    padding: 12px;
    border-radius: 24px;
  }

  .vkei-home-copy {
    padding-inline: 0;
  }

  .vkei-home-copy h1 {
    font-size: clamp(1.78rem, 8.2vw, 2.16rem);
  }

  .vkei-hero-actions,
  .vkei-result-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .vkei-share-row-outside {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 4px;
  }

  .vkei-profile-step .vkei-hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vkei-primary-button,
  .vkei-secondary-button,
  .vkei-result-actions button,
  .vkei-result-actions a {
    width: 100%;
  }

  .vkei-share-row:not(.vkei-share-row-outside) button {
    width: 100%;
  }

  .vkei-quiz-shell,
  .vkei-result-card {
    padding: 18px;
  }

  .vkei-result-head {
    align-items: center;
    text-align: left;
  }

  .vkei-result-image {
    width: 72px;
    height: 72px;
  }

  .vkei-result-panel {
    padding: 18px;
  }

  .vkei-related-compact .tc-recommendation-card img {
    width: 100%;
    height: auto;
  }

  .vkei-related-compact .tc-recommendation-grid {
    gap: 10px;
  }

  .vkei-related-compact .tc-recommendation-card {
    border-radius: 16px;
  }

  .vkei-related-compact .tc-recommendation-card span,
  .vkei-related-compact .tc-recommendation-card small {
    padding-inline: 10px;
  }

  .vkei-related-compact .tc-recommendation-card span {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .vkei-related-compact .tc-recommendation-card small {
    padding-bottom: 12px;
    font-size: 0.72rem;
  }
}

@media (max-width: 360px) {
  .vkei-profile-step .vkei-hero-actions {
    grid-template-columns: 1fr;
  }
}
