@charset "UTF-8";

:root {
  --dtk-bg: #fff7fb;
  --dtk-bg-deep: #eef6ff;
  --dtk-surface: rgba(255, 255, 255, 0.84);
  --dtk-surface-strong: rgba(255, 255, 255, 0.96);
  --dtk-surface-dark: rgba(50, 34, 89, 0.82);
  --dtk-ink: #211932;
  --dtk-muted: #645c7b;
  --dtk-soft: #8c83a8;
  --dtk-line: rgba(84, 61, 153, 0.12);
  --dtk-line-strong: rgba(84, 61, 153, 0.24);
  --dtk-accent: #ff5d7a;
  --dtk-accent-strong: #ff8d4d;
  --dtk-accent-soft: rgba(255, 93, 122, 0.12);
  --dtk-gold: #ffcb63;
  --dtk-gold-soft: rgba(255, 203, 99, 0.16);
  --dtk-shadow: 0 22px 48px rgba(87, 63, 153, 0.11);
  --dtk-shadow-strong: 0 28px 72px rgba(63, 45, 122, 0.2);
  --dtk-radius-xl: 28px;
  --dtk-radius-lg: 22px;
  --dtk-radius-md: 18px;
  --dtk-radius-sm: 14px;
  --dtk-radius-xs: 10px;
  --dtk-gap: 16px;
  --dtk-headline: "Avenir Next", "Segoe UI", "Hiragino Sans", "Yu Gothic", sans-serif;
  --dtk-sans: "Avenir Next", "Hiragino Sans", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #30205d;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  isolation: isolate;
  color: var(--dtk-ink);
  font-family: var(--dtk-sans);
  background:
    radial-gradient(circle at top left, rgba(255, 93, 122, 0.18), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(123, 101, 255, 0.18), transparent 24%),
    radial-gradient(circle at 60% 100%, rgba(38, 208, 206, 0.15), transparent 30%),
    linear-gradient(180deg, #fff8fc 0%, #fff9ef 34%, var(--dtk-bg-deep) 100%);
}

body.has-age-gate {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  pointer-events: none;
  filter: blur(10px);
}

body::before {
  inset: 9% auto auto -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 93, 122, 0.18), rgba(255, 93, 122, 0));
}

body::after {
  inset: auto -70px 12% auto;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 101, 255, 0.16), rgba(123, 101, 255, 0));
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

body.has-age-gate .site-shell {
  filter: blur(18px) saturate(0.92);
  transform: scale(1.01);
  transform-origin: center top;
  pointer-events: none;
  user-select: none;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 14px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--dtk-ink);
  box-shadow: var(--dtk-shadow);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 12px));
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.skip-link:focus-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(10px);
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 24px 16px;
  background:
    linear-gradient(180deg, rgba(38, 24, 77, 0.48), rgba(29, 18, 55, 0.68)),
    radial-gradient(circle at top, rgba(255, 93, 122, 0.12), transparent 36%);
}

.age-gate__panel {
  width: min(560px, 100%);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 253, 0.92)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 80px rgba(36, 24, 76, 0.32);
  backdrop-filter: blur(22px) saturate(130%);
  -webkit-backdrop-filter: blur(22px) saturate(130%);
}

.age-gate__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.age-gate__logo {
  width: 72px;
  height: 72px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(85, 50, 130, 0.18));
}

.age-gate__eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dtk-soft);
}

.age-gate__title {
  margin: 0;
  font-size: clamp(28px, 5vw, 38px);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.age-gate__description {
  margin: 14px 0 0;
  color: var(--dtk-muted);
  font-size: 15px;
  line-height: 1.8;
}

.age-gate__list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.age-gate__list li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border-radius: 18px;
  background: rgba(255, 93, 122, 0.08);
  color: var(--dtk-ink);
  line-height: 1.6;
}

.age-gate__list li::before {
  content: "•";
  position: absolute;
  inset: 13px auto auto 19px;
  color: var(--dtk-accent);
  font-size: 24px;
  line-height: 1;
}

.age-gate__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.age-gate__form {
  margin: 0;
}

.age-gate__button {
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.age-gate__button:hover {
  transform: translateY(-1px);
}

.age-gate__button--primary {
  color: #fff;
  background: linear-gradient(135deg, #ff7c68, #ff5d7a 56%, #8d6bff 100%);
  box-shadow: 0 16px 34px rgba(255, 93, 122, 0.28);
}

.age-gate__button--secondary {
  color: var(--dtk-ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(84, 61, 153, 0.16);
}

.age-gate__note {
  margin: 18px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--dtk-muted);
}

.age-gate__note a {
  text-decoration-color: rgba(33, 25, 50, 0.28);
  text-underline-offset: 3px;
}

.dtk-icon {
  width: 14px;
  height: 14px;
  display: block;
  flex: 0 0 auto;
}

.dtk-front,
.dtk-single,
.dtk-page {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 0;
}

.site-header__bar {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-top: env(safe-area-inset-top);
  background: linear-gradient(180deg, rgba(48, 32, 93, 0.94), rgba(55, 37, 101, 0.82));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 34px rgba(24, 14, 58, 0.18);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}

.site-header__inner {
  min-height: 58px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px 10px;
  width: min(1180px, 100%);
  margin-inline: auto;
  max-width: 100%;
  min-width: 0;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  min-width: 0;
}

.site-logo__image {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(31, 18, 73, 0.22));
}

.site-logo__mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #ff8d4d, #ff5d7a 58%, #7b65ff 100%);
  box-shadow: 0 14px 28px rgba(255, 93, 122, 0.28);
}

.site-logo__mark .dtk-icon {
  width: 12px;
  height: 12px;
}

.site-logo__text {
  display: grid;
  gap: 2px;
}

.site-logo__text strong {
  font-size: 18px;
  letter-spacing: 0.08em;
}

.site-logo__text small {
  display: none;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  gap: 6px;
  min-width: 0;
}

.site-nav--header {
  width: 100%;
  max-width: 100%;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 2px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.site-nav--header::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  flex: 0 0 auto;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav--header a {
  min-height: 28px;
  padding: 0 10px;
  font-size: 11px;
}

.site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.age-gate__button:focus-visible,
.age-gate__note a:focus-visible {
  outline: 2px solid rgba(141, 107, 255, 0.52);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .age-gate {
    padding: 18px 14px;
  }

  .age-gate__panel {
    padding: 22px 18px 18px;
    border-radius: 26px;
  }

  .age-gate__brand {
    gap: 12px;
    margin-bottom: 14px;
  }

  .age-gate__logo {
    width: 58px;
    height: 58px;
  }

  .age-gate__actions {
    grid-template-columns: 1fr;
  }
}

#main-content {
  scroll-margin-top: 88px;
}

.dtk-section[id],
.dtk-content-page [id],
.dtk-article-page [id] {
  scroll-margin-top: 96px;
}

.dtk-front,
.dtk-single,
.dtk-page {
  display: grid;
  gap: 22px;
  width: min(100%, 1240px);
  margin-top: 18px;
  margin-inline: auto;
  margin-bottom: 64px;
  padding-inline: 14px;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.dtk-hero,
.dtk-overview,
.finder-layout,
.dtk-stat-grid,
.dtk-card-grid,
.actress-profile__grid,
.product-feature,
.product-card-grid {
  display: grid;
  gap: var(--dtk-gap);
}

.dtk-front > *,
.dtk-single > *,
.dtk-page > *,
.dtk-hero > *,
.dtk-overview > *,
.finder-layout > *,
.dtk-stat-grid > *,
.dtk-card-grid > *,
.product-card-grid > *,
.actress-profile__grid > * {
  min-width: 0;
  max-width: 100%;
}

.dtk-hero__copy,
.dtk-hero__panel,
.dtk-overview-card,
.front-search-form,
.finder-summary,
.actress-hero,
.profile-panel,
.product-card,
.actress-card {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 252, 0.82) 52%, rgba(240, 247, 255, 0.84));
  border: 1px solid rgba(120, 92, 214, 0.14);
  border-radius: var(--dtk-radius-xl);
  box-shadow: var(--dtk-shadow);
  backdrop-filter: blur(18px);
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.dtk-hero__copy,
.dtk-hero__panel,
.dtk-overview-card,
.front-search-form,
.finder-summary,
.actress-hero,
.profile-panel {
  padding: 20px;
}

.dtk-kicker {
  margin: 0;
  color: #ff577f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dtk-hero__title,
.actress-hero__title,
.dtk-section__heading h2,
.dtk-overview-card h2 {
  margin: 0;
  font-family: var(--dtk-headline);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.dtk-hero__title {
  font-size: clamp(34px, 11vw, 58px);
}

.dtk-hero__title--compact {
  font-size: clamp(20px, 5.8vw, 34px);
  line-height: 1.18;
}

.actress-hero__title,
.dtk-section__heading h2,
.dtk-overview-card h2 {
  font-size: clamp(26px, 7vw, 40px);
}

.actress-hero__aliases {
  margin: 0.55rem 0 0;
  color: rgba(75, 66, 107, 0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

.dtk-hero__brand {
  width: min(100%, 580px);
  border-radius: 18px;
  border: 1px solid rgba(120, 92, 214, 0.12);
  box-shadow: 0 18px 34px rgba(85, 64, 145, 0.12);
}

.dtk-hero__visual {
  display: grid;
  place-items: start;
}

.dtk-hero__visual .dtk-hero__brand {
  width: 100%;
  max-width: 100%;
}

.dtk-hero--front {
  gap: 0;
  width: 100%;
  margin-inline: 0;
  margin-top: 0;
  justify-items: stretch;
}

.dtk-hero--front .dtk-hero__visual {
  width: 100%;
  justify-self: stretch;
}

.dtk-hero--front .dtk-hero__brand {
  display: block;
  width: 100%;
  border-radius: 0;
  border-inline: 0;
  box-shadow: none;
}

.dtk-hero--front .dtk-hero__copy {
  margin-inline: 0;
  width: 100%;
  justify-self: stretch;
}

.dtk-hero__copy--front {
  padding-block: 30px;
  gap: 18px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 244, 249, 0.88) 46%, rgba(236, 246, 255, 0.9)),
    radial-gradient(circle at top right, rgba(255, 203, 99, 0.12), rgba(255, 203, 99, 0));
}

.dtk-hero__copy--front::before {
  inset: auto -34px -54px auto;
  width: 160px;
  height: 160px;
}

.dtk-hero__copy--front::after {
  inset: 18px auto auto -26px;
  width: 88px;
  height: 88px;
}

.dtk-hero__copy--front .dtk-hero__lead {
  max-width: 860px;
}

.dtk-hero__subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  align-items: center;
}

.dtk-hero__subnav a {
  color: rgba(72, 60, 108, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.dtk-hero__subnav a:hover {
  color: #4b2ec2;
}

.dtk-hero__copy {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(255, 243, 249, 0.9) 48%, rgba(235, 246, 255, 0.9)),
    radial-gradient(circle at top right, rgba(255, 203, 99, 0.18), rgba(255, 203, 99, 0));
}

.dtk-hero__copy::before {
  content: "";
  position: absolute;
  inset: auto -60px -70px auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 101, 255, 0.18), rgba(123, 101, 255, 0));
}

.dtk-hero__copy::after {
  content: "";
  position: absolute;
  inset: 24px auto auto -34px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 203, 99, 0.18), rgba(255, 203, 99, 0));
}

.dtk-hero__copy > * {
  position: relative;
  z-index: 1;
}

.dtk-hero__tagline {
  margin: 0;
  font-size: clamp(19px, 5.2vw, 30px);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.dtk-hero__lead,
.actress-hero__lead,
.dtk-overview-card p,
.finder-summary__empty,
.profile-panel,
.profile-specs dd,
.dtk-section__meta,
.entry-content,
.finder-summary__steps {
  color: var(--dtk-muted);
}

.dtk-hero__lead,
.actress-hero__lead,
.dtk-overview-card p,
.finder-summary__steps,
.finder-summary__empty,
.entry-content {
  margin: 0;
  line-height: 1.82;
}

.dtk-button,
.front-search-form__submit,
.front-search-form__reset,
.dtk-social-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.dtk-social-link {
  min-width: 0;
}

.dtk-social-link__label {
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dtk-button:hover,
.front-search-form__submit:hover,
.front-search-form__reset:hover,
.dtk-social-link:hover,
.actress-card:hover,
.product-card:hover,
.dtk-route-item:hover {
  transform: translateY(-2px);
}

.dtk-button--primary,
.front-search-form__submit {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, #ff5d7a 0%, #ff8d4d 48%, #7b65ff 100%);
  box-shadow: 0 16px 28px rgba(123, 101, 255, 0.24);
}

.dtk-button--ghost,
.front-search-form__reset {
  color: var(--dtk-ink);
  border-color: rgba(120, 92, 214, 0.14);
  background: rgba(255, 255, 255, 0.82);
}

.dtk-button--success {
  color: #155f3b;
  border-color: rgba(40, 167, 108, 0.18);
  background: linear-gradient(135deg, rgba(177, 255, 210, 0.92), rgba(226, 255, 241, 0.94));
}

.dtk-button .dtk-icon,
.front-search-form__submit .dtk-icon,
.front-search-form__reset .dtk-icon {
  width: 12px;
  height: 12px;
}

.dtk-hero__actions,
.front-search-form__actions,
.profile-social-links {
  display: grid;
  gap: 10px;
}

.dtk-hero__actions .dtk-button,
.front-search-form__actions > *,
.profile-social-links--watch .dtk-button {
  width: 100%;
}

.dtk-hero__panel {
  display: grid;
  gap: 18px;
  background:
    linear-gradient(165deg, rgba(242, 237, 255, 0.92), rgba(255, 248, 239, 0.9) 52%, rgba(236, 250, 248, 0.88));
}

.dtk-hero__panel--stats {
  gap: 0;
}

.dtk-stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.dtk-stat-card {
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(247, 242, 255, 0.9));
  border: 1px solid rgba(120, 92, 214, 0.12);
}

.dtk-stat-card strong {
  font-size: clamp(18px, 4vw, 26px);
  line-height: 1.2;
}

.dtk-stat-card span:last-child {
  font-size: 11px;
  line-height: 1.45;
  color: var(--dtk-muted);
}

.dtk-stat-card__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ff577f;
  background: linear-gradient(135deg, rgba(255, 93, 122, 0.12), rgba(255, 203, 99, 0.18));
}

.dtk-stat-card__icon .dtk-icon {
  width: 12px;
  height: 12px;
}

.dtk-hero-note {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--dtk-line);
}

.dtk-hero-note__label {
  margin: 0;
  color: var(--dtk-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dtk-hero-note__text {
  margin: 0;
  line-height: 1.72;
}

.dtk-overview-card {
  display: grid;
  gap: 12px;
}

.dtk-overview-card:nth-child(2) {
  background:
    linear-gradient(155deg, rgba(255, 250, 241, 0.94), rgba(255, 244, 251, 0.88) 46%, rgba(234, 246, 255, 0.86));
}

.dtk-route-list {
  display: grid;
  gap: 10px;
}

.dtk-route-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(120, 92, 214, 0.12);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.86), rgba(250, 245, 255, 0.86));
  box-shadow: 0 14px 24px rgba(123, 101, 255, 0.08);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.dtk-route-item__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #ff577f;
  background: linear-gradient(135deg, rgba(255, 93, 122, 0.12), rgba(123, 101, 255, 0.18));
}

.dtk-stat-card:nth-child(2) .dtk-stat-card__icon,
.dtk-route-item:nth-child(2) .dtk-route-item__icon {
  color: #6d5efc;
  background: linear-gradient(135deg, rgba(123, 101, 255, 0.14), rgba(56, 197, 214, 0.18));
}

.dtk-stat-card:nth-child(3) .dtk-stat-card__icon,
.dtk-route-item:nth-child(3) .dtk-route-item__icon {
  color: #13a9a8;
  background: linear-gradient(135deg, rgba(56, 197, 214, 0.14), rgba(255, 203, 99, 0.2));
}

.dtk-route-item__icon .dtk-icon {
  width: 13px;
  height: 13px;
}

.dtk-route-item span {
  display: grid;
  gap: 3px;
}

.dtk-route-item strong {
  font-size: 14px;
}

.dtk-route-item small {
  color: var(--dtk-muted);
  font-size: 12px;
  line-height: 1.45;
}

.dtk-section {
  display: grid;
  gap: 14px;
}

.dtk-content-page,
.dtk-page-hero,
.dtk-topic-grid,
.dtk-topic-card {
  display: grid;
  gap: 14px;
}

.dtk-page-hero,
.dtk-topic-card {
  padding: 18px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 252, 0.82) 52%, rgba(240, 247, 255, 0.84));
  border: 1px solid rgba(120, 92, 214, 0.14);
  border-radius: var(--dtk-radius-xl);
  box-shadow: var(--dtk-shadow);
  backdrop-filter: blur(18px);
}

.dtk-page-hero__lead,
.dtk-page-section__lead,
.dtk-topic-card p {
  margin: 0;
  color: var(--dtk-muted);
  line-height: 1.82;
  font-size: 14px;
}

.dtk-local-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dtk-local-nav--mypage {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}

.dtk-local-nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(120, 92, 214, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--dtk-ink);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.dtk-local-nav__link:hover {
  background: rgba(255, 255, 255, 0.96);
}

.dtk-local-nav--mypage .dtk-local-nav__link {
  justify-content: center;
  min-height: 38px;
  padding: 8px 12px;
  text-align: center;
  white-space: normal;
}

.dtk-lp-shell {
  display: grid;
  gap: 16px;
}

.dtk-category-intro {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--dtk-radius-xl);
  border: 1px solid rgba(120, 92, 214, 0.1);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(248, 242, 255, 0.88) 50%, rgba(240, 247, 255, 0.86));
}

.dtk-lp-shell--feature .dtk-category-intro {
  background: linear-gradient(155deg, rgba(255, 250, 241, 0.96), rgba(255, 247, 252, 0.9) 50%, rgba(243, 247, 255, 0.86));
}

.dtk-category-intro--compact {
  gap: 12px;
}

.dtk-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dtk-category-pill {
  min-width: 0;
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(120, 92, 214, 0.1);
  background: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  color: var(--dtk-ink);
}

.dtk-category-pill__title {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.dtk-category-pill__desc {
  color: var(--dtk-soft);
  font-size: 11px;
  line-height: 1.5;
}

.dtk-backtrack-card {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(120, 92, 214, 0.12);
  background: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  color: var(--dtk-ink);
}

.dtk-backtrack-card strong {
  font-size: 14px;
  line-height: 1.4;
}

.dtk-backtrack-card span:last-child {
  color: var(--dtk-soft);
  font-size: 11px;
  line-height: 1.55;
}

.dtk-topic-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.28;
}

.dtk-topic-card__icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #ff577f;
  background: linear-gradient(135deg, rgba(255, 93, 122, 0.12), rgba(123, 101, 255, 0.18));
}

.dtk-topic-card__icon .dtk-icon {
  width: 13px;
  height: 13px;
}

.dtk-check-list--panel {
  padding: 18px 18px 18px 2.1em;
  border-radius: var(--dtk-radius-xl);
  border: 1px solid rgba(120, 92, 214, 0.14);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(247, 242, 255, 0.86));
  box-shadow: var(--dtk-shadow);
}

.dtk-drafts {
  align-content: start;
}

.dtk-drafts__title {
  margin: 0;
  font-family: var(--dtk-headline);
  font-size: clamp(24px, 7.5vw, 42px);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.dtk-drafts__panel,
.dtk-draft-card,
.dtk-empty-state--drafts {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 252, 0.82) 52%, rgba(240, 247, 255, 0.84));
  border: 1px solid rgba(120, 92, 214, 0.14);
  border-radius: var(--dtk-radius-xl);
  box-shadow: var(--dtk-shadow);
  backdrop-filter: blur(18px);
}

.dtk-drafts__panel,
.dtk-empty-state--drafts {
  padding: 20px;
}

.dtk-drafts__panel,
.dtk-drafts__intro,
.dtk-drafts__summary,
.dtk-draft-group,
.dtk-draft-grid,
.dtk-draft-card,
.dtk-draft-card__top,
.dtk-draft-card__actions {
  display: grid;
  gap: 14px;
}

.dtk-drafts__summary {
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 93, 122, 0.1), rgba(123, 101, 255, 0.12), rgba(56, 197, 214, 0.12));
  border: 1px solid rgba(120, 92, 214, 0.12);
}

.dtk-drafts__summary strong {
  font-size: clamp(26px, 8vw, 40px);
  line-height: 1;
}

.dtk-drafts__summary span,
.dtk-drafts__summary small,
.dtk-draft-card__note,
.dtk-empty-state--drafts p {
  color: var(--dtk-muted);
}

.dtk-drafts__status {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid transparent;
  line-height: 1.7;
}

.dtk-drafts__status--success {
  color: #155f3b;
  border-color: rgba(40, 167, 108, 0.16);
  background: linear-gradient(135deg, rgba(197, 255, 222, 0.84), rgba(240, 255, 247, 0.92));
}

.dtk-drafts__status--error {
  color: #8b2d3d;
  border-color: rgba(255, 93, 122, 0.16);
  background: linear-gradient(135deg, rgba(255, 223, 229, 0.88), rgba(255, 244, 246, 0.94));
}

.dtk-drafts__quick-actions,
.dtk-draft-card__actions {
  display: grid;
  gap: 10px;
}

.dtk-draft-card__archive-form {
  display: contents;
}

.dtk-draft-card {
  padding: 18px;
}

.dtk-draft-card__top {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.dtk-draft-card__top h3,
.dtk-empty-state--drafts h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.dtk-draft-card__note,
.dtk-empty-state--drafts p {
  margin: 0;
  line-height: 1.7;
}

.dtk-draft-card__textarea {
  width: 100%;
  min-height: 168px;
  resize: vertical;
  padding: 16px;
  border: 1px solid rgba(123, 101, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--dtk-ink);
  font-size: 15px;
  line-height: 1.72;
}

.dtk-draft-card__textarea:focus-visible {
  outline: none;
  border-color: rgba(123, 101, 255, 0.28);
  box-shadow: 0 0 0 4px rgba(123, 101, 255, 0.08);
}

.dtk-section__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
}

.dtk-section__meta {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(120, 92, 214, 0.1);
  font-size: 13px;
  line-height: 1.7;
}

.dtk-section__meta--plain {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--dtk-soft);
  font-size: 12px;
  line-height: 1.55;
}

.dtk-check-list {
  margin: 0;
  padding-left: 1.15em;
  display: grid;
  gap: 10px;
}

.dtk-check-list li {
  line-height: 1.72;
}

.finder-layout {
  align-items: start;
}

.front-search-form {
  display: grid;
  gap: 14px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 238, 0.9) 48%, rgba(244, 243, 255, 0.9));
}

.front-search-form--secondary {
  gap: 12px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(120, 92, 214, 0.08);
  background: rgba(255, 255, 255, 0.74);
}

.front-search-form__grid {
  display: grid;
  gap: 12px;
}

.front-search-form__sort {
  display: grid;
  gap: 12px;
  padding-top: 2px;
  border-top: 1px solid rgba(120, 92, 214, 0.1);
}

.front-search-form__section-title {
  margin: 0;
  color: var(--dtk-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.front-search-form__sort-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.front-search-form__row--range {
  gap: 0;
}

.front-range {
  display: grid;
  gap: 8px;
  padding: 10px 14px 10px;
  border: 1px solid rgba(123, 101, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.front-range__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.front-range__header .front-search-form__label {
  margin-bottom: 0;
}

.front-range__header strong {
  color: var(--dtk-ink);
  font-size: 13px;
}

.front-range__sliders {
  display: grid;
  gap: 6px;
}

.front-range__slider-stack {
  position: relative;
  height: 22px;
}

.front-range__track,
.front-range__track-fill {
  position: absolute;
  top: 50%;
  height: 6px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.front-range__track {
  inset-inline: 0;
  background: rgba(123, 101, 255, 0.1);
}

.front-range__track-fill {
  background: linear-gradient(135deg, rgba(255, 93, 122, 0.62) 0%, rgba(123, 101, 255, 0.58) 100%);
}

.front-range__input {
  width: 100%;
  margin: 0;
  position: absolute;
  inset: 0;
  appearance: none;
  background: transparent;
  pointer-events: none;
}

.front-range__input::-webkit-slider-runnable-track {
  height: 22px;
  background: transparent;
}

.front-range__input::-moz-range-track {
  height: 22px;
  background: transparent;
  border: 0;
}

.front-range__input::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 116, 140, 0.9) 0%, rgba(134, 115, 255, 0.88) 100%);
  box-shadow: 0 8px 18px rgba(123, 101, 255, 0.14);
  pointer-events: auto;
}

.front-range__input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 116, 140, 0.9) 0%, rgba(134, 115, 255, 0.88) 100%);
  box-shadow: 0 8px 18px rgba(123, 101, 255, 0.14);
  pointer-events: auto;
}

.front-range__input--max::-webkit-slider-thumb,
.front-range__input--max::-moz-range-thumb {
  box-shadow: 0 8px 18px rgba(255, 93, 122, 0.12);
}

.front-range__legend {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--dtk-soft);
  font-size: 11px;
  font-weight: 700;
  margin-top: -2px;
}

.front-search-form__label {
  display: block;
  margin-bottom: 6px;
  color: var(--dtk-ink);
  font-size: 13px;
  font-weight: 700;
}

.front-search-form__input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(123, 101, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--dtk-ink);
  font-size: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.front-search-form__input:focus-visible {
  outline: none;
  border-color: rgba(123, 101, 255, 0.3);
  box-shadow: 0 0 0 4px rgba(123, 101, 255, 0.1);
}

.front-search-form__select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--dtk-accent-strong) 50%),
    linear-gradient(135deg, var(--dtk-accent-strong) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px);
  background-size: 5px 5px;
  background-repeat: no-repeat;
}

.front-search-form__filters {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.front-search-option {
  min-width: 0;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(120, 92, 214, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--dtk-ink);
  font-size: 12px;
  font-weight: 700;
}

.front-search-option--parent {
  grid-column: 1 / -1;
  align-items: center;
  min-height: 50px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(255, 93, 122, 0.09), rgba(123, 101, 255, 0.1));
}

.front-search-option:hover {
  border-color: rgba(123, 101, 255, 0.22);
  transform: translateY(-1px);
}

.front-search-option:has(input:checked) {
  border-color: rgba(255, 93, 122, 0.3);
  background: linear-gradient(135deg, rgba(255, 93, 122, 0.12), rgba(56, 197, 214, 0.12));
  box-shadow: 0 10px 22px rgba(123, 101, 255, 0.08);
}

.front-search-option input {
  width: 14px;
  height: 14px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--dtk-accent);
}

.front-search-option input:disabled {
  opacity: 1;
}

.front-search-option--child:has(input:disabled) {
  opacity: 1;
}

.front-search-option__label {
  line-height: 1.2;
}

.front-search-option__text {
  display: grid;
  gap: 2px;
}

.front-search-option__text small {
  color: var(--dtk-soft);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.dtk-status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dtk-status-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(120, 92, 214, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.dtk-status-strip__label {
  color: var(--dtk-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.dtk-status-strip__item strong {
  font-size: 12px;
  line-height: 1;
  color: var(--dtk-ink);
}

.dtk-section--finder-secondary .dtk-section__heading {
  align-items: end;
}

.dtk-section__meta--finder {
  max-width: 560px;
}

.front-search-form__actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.front-search-form__submit {
  cursor: pointer;
}

.finder-summary {
  display: grid;
  gap: 14px;
  background:
    linear-gradient(165deg, rgba(246, 239, 255, 0.94), rgba(255, 250, 244, 0.9) 54%, rgba(235, 249, 255, 0.88));
}

.finder-summary h3 {
  margin: 0;
  font-size: 20px;
}

.finder-summary__steps {
  margin: 0;
  padding-left: 1.2em;
  display: grid;
  gap: 8px;
}

.dtk-filter-chips,
.actress-card__terms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dtk-filter-chip,
.actress-card__term,
.actress-card__badge {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(120, 92, 214, 0.08);
  font-size: 11px;
  font-weight: 700;
}

.dtk-filter-chip,
.actress-card__term {
  color: #5f4aa0;
  background: linear-gradient(135deg, rgba(123, 101, 255, 0.12), rgba(255, 203, 99, 0.18));
}

.actress-card__term--reason {
  color: #355a8a;
  background: linear-gradient(135deg, rgba(79, 165, 255, 0.12), rgba(123, 101, 255, 0.08));
}

a.actress-card__term {
  text-decoration: none;
}

.actress-card__term--award {
  gap: 6px;
  color: #7a4b00;
  border-color: rgba(212, 163, 44, 0.18);
  background: linear-gradient(135deg, rgba(255, 220, 128, 0.28), rgba(255, 244, 204, 0.86));
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.actress-card__term--award .dtk-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.actress-card__award-label {
  display: inline-flex;
  flex-wrap: wrap;
  column-gap: 4px;
  row-gap: 0;
  min-width: 0;
  line-height: 1.25;
}

.actress-card__award-year,
.actress-card__award-title {
  display: inline-block;
  word-break: keep-all;
  overflow-wrap: normal;
}

.actress-card--compact .actress-card__term--award {
  min-height: 24px;
  padding: 0 8px;
  font-size: 9.5px;
}

.actress-card--compact .actress-card__term--award .dtk-icon {
  width: 10px;
  height: 10px;
}

.actress-card__badge {
  color: #ff577f;
  background: linear-gradient(135deg, rgba(255, 93, 122, 0.12), rgba(255, 141, 77, 0.16));
}

.dtk-card-grid,
.product-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.dtk-card-grid--directory {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.actress-card {
  padding: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  border-color: rgba(120, 92, 214, 0.12);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(247, 243, 255, 0.78));
}

.actress-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.actress-card__title-link {
  color: inherit;
  text-decoration: none;
  display: block;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.actress-card__media,
.actress-hero__media,
.product-feature__media,
.product-card__media {
  display: block;
  position: relative;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.actress-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-feature__media img,
.product-card__media img {
  width: 100%;
  height: auto;
  display: block;
}

.actress-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.actress-card__media {
  aspect-ratio: 1 / 1.12;
}

.actress-card__media--empty,
.actress-hero__media-placeholder,
.product-feature__placeholder,
.product-card__placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--dtk-muted);
  font-size: 13px;
}

.actress-card__body {
  display: grid;
  gap: 7px;
  padding: 8px 2px 2px;
}

.actress-card__meta {
  min-height: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
}

.actress-card__meta::-webkit-scrollbar {
  display: none;
}

.actress-card__row {
  min-height: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.actress-card__title {
  margin: 0;
  color: var(--dtk-ink);
  font-size: 15px;
  line-height: 1.38;
}

.actress-card--compact {
  padding: 6px;
  border-radius: 10px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.28));
  box-shadow: none;
}

.actress-card--compact .actress-card__body {
  gap: 4px;
  padding: 8px 2px 2px;
}

.actress-card--compact .actress-card__title {
  font-size: 11.5px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.actress-card--compact .actress-card__title-link {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.actress-card__media-flag {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: 1;
}

.actress-card--compact .actress-card__badge {
  min-width: 20px;
  min-height: 20px;
  padding: 0;
  color: #ff577f;
  border-color: rgba(120, 92, 214, 0.08);
  background: linear-gradient(135deg, rgba(255, 93, 122, 0.12), rgba(255, 141, 77, 0.16));
}

.actress-card__badge--icon .dtk-icon {
  width: 10px;
  height: 10px;
}

.actress-card__icon-row {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  gap: 4px;
}

.actress-card__icon,
.dtk-social-link__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.actress-card__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: #6d5efc;
  border: 1px solid rgba(120, 92, 214, 0.12);
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.actress-card__icon .dtk-icon,
.dtk-social-link__icon .dtk-icon {
  width: 11px;
  height: 11px;
}

.actress-card__icon:hover {
  border-color: rgba(123, 41, 48, 0.26);
}

.dtk-social-link {
  min-width: 0;
  justify-content: flex-start;
  color: var(--dtk-ink);
  border-color: var(--dtk-line);
  background: rgba(255, 255, 255, 0.8);
}

.dtk-social-link__icon {
  width: 20px;
  height: 20px;
  color: var(--dtk-accent-strong);
  border: 1px solid var(--dtk-line);
  background: rgba(255, 255, 255, 0.94);
}

.dtk-social-link--x .dtk-social-link__icon,
.actress-card__icon--x {
  color: #111;
}

.dtk-social-link--instagram .dtk-social-link__icon,
.actress-card__icon--instagram {
  color: #c13584;
}

.dtk-social-link--youtube .dtk-social-link__icon,
.actress-card__icon--youtube {
  color: #ff0033;
}

.dtk-social-link--tiktok .dtk-social-link__icon,
.actress-card__icon--tiktok {
  color: #111;
}

.dtk-social-link--wikipedia .dtk-social-link__icon,
.actress-card__icon--wikipedia {
  color: #4c5f7a;
}

.actress-card__icon--x,
.actress-card__icon--tiktok {
  color: #111;
}

.actress-card__icon--instagram {
  color: #c13584;
}

.actress-card__icon--youtube {
  color: #ff0033;
}

.actress-card__icon--wikipedia {
  color: #4c5f7a;
}

.dtk-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.dtk-pagination .page-numbers {
  min-width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--dtk-ink);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(120, 92, 214, 0.12);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}

.dtk-pagination .current {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #ff5d7a, #7b65ff);
}

.dtk-pagination .prev,
.dtk-pagination .next {
  padding-inline: 14px;
  background: rgba(88, 66, 155, 0.1);
}

.dtk-pagination .page-numbers--dots {
  min-width: auto;
  padding: 0 4px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.actress-profile {
  display: grid;
  gap: 20px;
}

.actress-hero {
  display: grid;
  gap: 16px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(246, 240, 255, 0.88) 42%, rgba(255, 247, 238, 0.9));
}

.actress-hero__header,
.actress-hero__body {
  display: grid;
  align-content: start;
  gap: 12px;
}

.actress-hero__profile {
  display: grid;
  gap: 12px;
}

.profile-breadcrumb {
  margin: 0;
  color: var(--dtk-muted);
  font-size: 12px;
}

.profile-breadcrumb a {
  text-decoration: none;
}

.actress-hero__lead {
  font-size: 14px;
}

.actress-hero__media {
  width: min(100%, 270px);
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 243, 255, 0.92));
  box-shadow: 0 18px 34px rgba(75, 54, 136, 0.18);
}

.actress-card__terms--large {
  gap: 8px;
}

.actress-card__terms--awards {
  gap: 6px;
}

.actress-hero__facts {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.actress-hero__facts div {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--dtk-line);
  background: rgba(255, 255, 255, 0.72);
}

.actress-hero__facts dt {
  color: var(--dtk-soft);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.actress-hero__facts dd {
  margin: 0;
  color: var(--dtk-ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

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

.profile-social-links--hero .dtk-social-link {
  justify-content: flex-start;
}

.profile-social-links--watch {
  grid-template-columns: 1fr;
}

.actress-profile__grid {
  grid-template-columns: 1fr;
}

.profile-panel {
  display: grid;
  gap: 14px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(249, 243, 255, 0.86) 52%, rgba(242, 249, 255, 0.86));
}

.profile-panel h2 {
  margin: 0;
  font-size: 22px;
  font-family: var(--dtk-headline);
}

.profile-panel--wide {
  padding: 20px;
}

.profile-specs {
  margin: 0;
  display: grid;
  gap: 12px;
}

.profile-specs div {
  display: grid;
  gap: 4px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--dtk-line);
}

.profile-specs dt {
  color: var(--dtk-soft);
  font-size: 12px;
  font-weight: 700;
}

.profile-specs dd {
  margin: 0;
}

.profile-notes {
  display: grid;
  gap: 10px;
  padding-top: 2px;
  border-top: 1px solid var(--dtk-line);
}

.profile-notes p,
.profile-notes__link {
  margin: 0;
}

.entry-content p {
  margin: 0 0 12px;
}

.entry-content p:last-child {
  margin-bottom: 0;
}

.entry-content a,
.product-card__link,
.dtk-section__meta a {
  color: var(--dtk-accent-strong);
}

.product-feature {
  gap: 14px;
}

.product-feature__media {
  background: transparent;
}

.product-feature__body,
.product-card__body {
  display: grid;
  align-content: start;
  gap: 12px;
}

.product-feature__meta,
.product-card__meta,
.product-feature__stats {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--dtk-muted);
  font-size: 12px;
}

.product-feature__stats:empty {
  display: none;
}

.product-feature__title,
.product-card__title {
  margin: 0;
  line-height: 1.42;
}

.product-feature__title {
  font-size: clamp(22px, 6vw, 34px);
}

.product-card {
  padding: 10px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 240, 0.86) 50%, rgba(241, 247, 255, 0.84));
}

.product-card__media {
  background: transparent;
}

.product-card__title {
  font-size: 14px;
}

.product-card__link {
  text-decoration: none;
  font-weight: 700;
}

.dtk-empty-state {
  padding: 18px;
  border-radius: 18px;
  border: 1px dashed rgba(50, 24, 29, 0.2);
  background: rgba(255, 255, 255, 0.56);
  line-height: 1.72;
}

.site-footer {
  border-top: 1px solid rgba(123, 101, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.72));
}

.site-footer__inner {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 22px 0 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: var(--dtk-muted);
}

.site-footer__inner p {
  margin: 0;
  line-height: 1.7;
}

.site-footer__credit {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 10px;
  flex: 0 0 auto;
}

.site-footer__credit a {
  display: inline-flex;
  align-items: center;
  width: 135px;
  min-width: 135px;
  flex: 0 0 auto;
  line-height: 0;
}

.site-footer__credit img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 135 / 17;
  max-width: none;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer__links a {
  text-decoration: none;
  font-size: 13px;
}

@media screen and (max-width: 639px) {
  .site-header {
    padding-top: 0;
  }

  .site-header__inner {
    padding: 10px 14px 9px;
  }

  .site-logo {
    gap: 8px;
  }

  .site-logo__mark {
    width: 30px;
    height: 30px;
  }

  .site-logo__text strong {
    font-size: 17px;
  }

  .site-nav--header {
    gap: 6px;
  }

  .site-nav--header a {
    min-height: 30px;
    padding: 0 9px;
    font-size: 10px;
  }

  .site-footer__credit {
    justify-content: flex-start;
  }

  .site-footer__credit img {
    width: 135px;
  }

  .dtk-page-hero,
  .dtk-topic-card,
  .dtk-overview-card,
  .front-search-form,
  .finder-summary,
  .actress-hero,
  .profile-panel,
  .profile-panel--wide {
    padding: 16px;
    border-radius: 22px;
  }

  .dtk-page-hero__lead,
  .dtk-page-section__lead,
  .dtk-topic-card p,
  .finder-summary__steps,
  .finder-summary__empty,
  .dtk-hero__lead,
  .actress-hero__lead {
    font-size: 14px;
    line-height: 1.72;
  }

  .dtk-lp-shell--feature .dtk-category-intro {
    gap: 10px;
    padding: 14px;
    border-radius: 20px;
  }

  .dtk-lp-shell--feature .dtk-category-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .dtk-lp-shell--feature .dtk-category-pill {
    gap: 3px;
    padding: 10px 11px;
    border-radius: 15px;
  }

  .dtk-lp-shell--feature .dtk-category-pill__title {
    font-size: 12px;
    line-height: 1.28;
  }

  .dtk-lp-shell--feature .dtk-category-pill__desc {
    font-size: 10px;
    line-height: 1.38;
  }

  .dtk-lp-shell--feature .dtk-backtrack-card {
    gap: 3px;
    padding: 12px 13px;
    border-radius: 16px;
  }

  .dtk-lp-shell--feature .dtk-backtrack-card strong {
    font-size: 13px;
    line-height: 1.35;
  }

  .dtk-lp-shell--feature .dtk-backtrack-card span:last-child {
    font-size: 10px;
    line-height: 1.4;
  }

  .dtk-topic-grid {
    gap: 12px;
  }

  .dtk-topic-card h3 {
    font-size: 17px;
  }

  .dtk-hero__copy--front {
    padding-block: 22px;
    gap: 14px;
  }

  .dtk-hero__subnav {
    gap: 8px 10px;
  }

  .dtk-hero__subnav a {
    font-size: 11px;
  }

  .dtk-check-list--panel {
    padding: 16px 16px 16px 2em;
  }

  .dtk-drafts__title {
    font-size: clamp(22px, 7vw, 30px);
  }

  .dtk-section__heading h2,
  .dtk-overview-card h2,
  .actress-hero__title {
    font-size: clamp(24px, 6.4vw, 32px);
  }
}

@media screen and (min-width: 640px) {
  .dtk-front,
  .dtk-single,
  .dtk-page {
    width: min(1180px, 100%);
  }

  .dtk-front,
  .dtk-single,
  .dtk-page {
    padding-inline: 18px;
  }

  .site-footer__inner {
    padding: 22px 18px 34px;
  }

  .site-logo__text small {
    display: block;
  }

  .site-nav--header a {
    min-height: 30px;
    padding: 0 11px;
    font-size: 12px;
  }

  .dtk-front,
  .dtk-single,
  .dtk-page {
    gap: 28px;
    margin-top: 28px;
  }

  .dtk-hero__copy,
  .dtk-hero__panel,
  .dtk-overview-card,
  .front-search-form,
  .finder-summary,
  .actress-hero,
  .profile-panel,
  .profile-panel--wide,
  .dtk-page-hero,
  .dtk-topic-card {
    padding: 24px;
  }

  .dtk-hero__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dtk-hero__copy--front {
    padding-block: 34px;
  }

  .dtk-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .front-search-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .front-search-form__filters {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dtk-card-grid,
  .product-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dtk-card-grid--directory {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .profile-social-links--watch {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (min-width: 820px) {
  .dtk-overview,
  .actress-profile__grid,
  .dtk-content-page .dtk-section__heading + .dtk-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dtk-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dtk-card-grid--directory {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .profile-specs div {
    grid-template-columns: 110px 1fr;
    gap: 12px;
  }
}

@media screen and (min-width: 960px) {
  .site-header__inner {
    min-height: 68px;
    flex-wrap: nowrap;
    gap: 16px;
  }

  .site-logo__image {
    width: 54px;
    height: 54px;
  }

  .site-logo__mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .site-logo__mark .dtk-icon {
    width: 14px;
    height: 14px;
  }

  .site-logo__text strong {
    font-size: 20px;
  }

  .site-nav--header {
    width: min(100%, 760px);
    padding-bottom: 0;
  }

  .site-nav {
    gap: 8px;
  }

  .site-nav a {
    min-height: 34px;
    padding: 0 13px;
    font-size: 13px;
  }

  .dtk-hero__brand {
    max-width: 640px;
  }

  .dtk-hero__copy--front .dtk-hero__lead {
    max-width: 760px;
  }

  .finder-layout {
    grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  }

  .actress-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    grid-template-areas:
      "header media"
      "body media";
    align-items: start;
  }

  .actress-hero__header {
    grid-area: header;
  }

  .actress-hero__body {
    grid-area: body;
  }

  .actress-hero__media {
    grid-area: media;
    width: 100%;
    max-width: none;
  }

  .product-feature {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
    align-items: start;
  }

  .dtk-card-grid--directory {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .actress-card {
    padding: 12px;
  }

  .actress-card__icon {
    width: 20px;
    height: 20px;
  }

  .actress-card__icon .dtk-icon,
  .dtk-social-link__icon .dtk-icon {
    width: 10px;
    height: 10px;
  }

  .profile-social-links--hero {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .site-footer__inner p {
    max-width: 44rem;
  }
}

@media screen and (min-width: 1180px) {
  .dtk-hero__copy,
  .dtk-hero__panel,
  .dtk-overview-card,
  .front-search-form,
  .finder-summary,
  .actress-hero,
  .profile-panel,
  .profile-panel--wide,
  .dtk-page-hero,
  .dtk-topic-card {
    padding: 28px;
  }

  .dtk-route-item {
    grid-template-columns: 40px 1fr;
  }

  .dtk-route-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .dtk-route-item__icon .dtk-icon {
    width: 16px;
    height: 16px;
  }
}
.dtk-contact-panel {
  gap: 18px;
}

.dtk-contact-form {
  display: grid;
  gap: 16px;
}

.dtk-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.dtk-contact-field {
  display: grid;
  gap: 8px;
}

.dtk-contact-field > span {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(44, 32, 88, 0.82);
}

.dtk-contact-field input,
.dtk-contact-field select,
.dtk-contact-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(76, 54, 148, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: #241f46;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  box-sizing: border-box;
}

.dtk-contact-field input:focus-visible,
.dtk-contact-field select:focus-visible,
.dtk-contact-field textarea:focus-visible,
.dtk-contact-check input:focus-visible,
.dtk-button:focus-visible,
.front-search-form__submit:focus-visible,
.front-search-form__reset:focus-visible,
.site-nav a:focus-visible,
.actress-card__link:focus-visible,
.actress-card__title-link:focus-visible,
.dtk-social-link:focus-visible,
.dtk-pagination .page-numbers:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(123, 101, 255, 0.14);
}

.dtk-contact-field textarea {
  resize: vertical;
  min-height: 180px;
}

.dtk-contact-field small,
.dtk-contact-error {
  color: #b63463;
  font-size: 0.8rem;
}

.dtk-contact-check {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(44, 32, 88, 0.78);
}

.dtk-contact-check input {
  margin-top: 3px;
}

.dtk-contact-actions {
  display: grid;
  gap: 10px;
}

.dtk-contact-note {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(44, 32, 88, 0.68);
}

.dtk-contact-flash {
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 0.9rem;
}

.dtk-contact-flash--success {
  background: rgba(64, 154, 104, 0.12);
  color: #1e6d49;
}

.dtk-contact-flash--error {
  background: rgba(182, 52, 99, 0.12);
  color: #9b1f4d;
}

.dtk-contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.profile-social-links--engagement {
  margin-top: 2px;
}

.actress-engagement-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.actress-engagement-stats__item {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(120, 92, 214, 0.12);
  text-align: center;
}

.actress-engagement-stats__item strong {
  font-size: 1rem;
  line-height: 1.1;
}

.actress-engagement-stats__item span:last-child {
  color: var(--dtk-muted);
  font-size: 0.76rem;
}

.profile-social-links--engagement .dtk-button {
  width: 100%;
}

.dtk-feature-card {
  display: grid;
  gap: 12px;
  align-content: start;
}

.dtk-feature-card__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.dtk-feature-card__title a {
  text-decoration: none;
}

.dtk-feature-card__lead {
  margin: 0;
  color: var(--dtk-muted);
  line-height: 1.8;
}

.dtk-admin-page {
  gap: 20px;
}

.dtk-admin-panel {
  gap: 18px;
}

.dtk-admin-table {
  display: grid;
  gap: 14px;
}

.dtk-admin-table__row {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(120, 92, 214, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.dtk-admin-table__row h3 {
  margin: 4px 0 0;
  font-size: 1.02rem;
}

.dtk-admin-table__row h3 a {
  text-decoration: none;
}

.dtk-activity-row .dtk-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--dtk-muted);
  font-size: 0.88rem;
}

.dtk-admin-search {
  display: grid;
  gap: 12px;
}

.dtk-admin-search__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.dtk-admin-search-results,
.dtk-admin-related-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dtk-admin-related-list {
  flex-direction: column;
}

.dtk-admin-table__row--stack {
  gap: 18px;
}

.dtk-admin-table__row--stack .dtk-contact-form {
  gap: 14px;
}

.dtk-admin-table__row--stack .dtk-contact-actions {
  justify-content: flex-start;
}

.dtk-status-strip--mypage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.dtk-status-strip--mypage .dtk-status-strip__item {
  min-height: 64px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 18px;
}

.dtk-status-strip--mypage .dtk-status-strip__item strong {
  font-size: 1rem;
  line-height: 1.2;
}

.dtk-page-hero--mypage {
  overflow: hidden;
  gap: 18px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.97), rgba(255, 245, 249, 0.92) 48%, rgba(235, 246, 255, 0.92)),
    radial-gradient(circle at top right, rgba(255, 203, 99, 0.16), rgba(255, 203, 99, 0));
}

.dtk-mypage-hero {
  display: grid;
  gap: 18px;
}

.dtk-mypage-hero__intro {
  display: grid;
  gap: 16px;
  align-content: start;
}

.dtk-stat-grid--mypage {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dtk-stat-card--mypage {
  min-height: 124px;
  align-content: start;
}

.dtk-calendar-heading {
  display: grid;
  gap: 10px;
}

.dtk-hero__actions--calendar {
  justify-self: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dtk-hero__actions--calendar .dtk-button {
  min-width: 0;
  padding-inline: 16px;
}

.dtk-mypage-hero__note {
  display: grid;
  gap: 4px;
  padding: 13px 16px;
  border-radius: 20px;
  border: 1px solid rgba(120, 92, 214, 0.12);
  background: rgba(255, 255, 255, 0.62);
}

.dtk-mypage-hero__note strong,
.dtk-mypage-spotlight__body h2,
.dtk-mypage-spotlight__empty strong {
  margin: 0;
  font-family: var(--dtk-headline);
  letter-spacing: -0.04em;
}

.dtk-mypage-hero__note p,
.dtk-mypage-spotlight__empty p,
.dtk-activity-row__copy {
  margin: 0;
  color: var(--dtk-muted);
  line-height: 1.72;
}

.dtk-mypage-spotlight {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(120, 92, 214, 0.14);
  background:
    linear-gradient(165deg, rgba(255, 246, 238, 0.98), rgba(255, 250, 245, 0.94) 40%, rgba(242, 245, 255, 0.9)),
    radial-gradient(circle at top right, rgba(255, 93, 122, 0.14), rgba(255, 93, 122, 0));
  box-shadow: var(--dtk-shadow);
}

.dtk-mypage-spotlight__link {
  display: grid;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.dtk-mypage-spotlight__media {
  overflow: hidden;
  aspect-ratio: 1 / 1.08;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 247, 255, 0.8));
}

.dtk-mypage-spotlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.dtk-mypage-spotlight__placeholder,
.dtk-mypage-spotlight__empty {
  min-height: 180px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
}

.dtk-mypage-spotlight__empty {
  gap: 8px;
  align-content: center;
  padding: 18px;
  border: 1px dashed rgba(120, 92, 214, 0.22);
}

.dtk-mypage-spotlight__body {
  display: grid;
  gap: 8px;
}

.dtk-mypage-spotlight__body h2 {
  font-size: clamp(24px, 6vw, 34px);
  line-height: 1.05;
}

.dtk-mypage-spotlight .actress-card__terms {
  gap: 6px;
}

.dtk-mypage-spotlight .actress-card__term {
  min-height: 24px;
  padding: 0 8px;
  font-size: 10px;
}

.dtk-mypage-card-grid {
  gap: 10px;
}

.dtk-mypage-card-grid .actress-card--compact {
  padding: 10px;
  border-radius: 20px;
  border-color: rgba(120, 92, 214, 0.12);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(247, 243, 255, 0.82));
  box-shadow: 0 16px 30px rgba(87, 63, 153, 0.08);
}

.dtk-mypage-card-grid .actress-card__media {
  overflow: hidden;
  aspect-ratio: 1 / 1.02;
  border-radius: 16px;
}

.dtk-mypage-card-grid .actress-card__body {
  gap: 8px;
  padding-top: 10px;
}

.dtk-mypage-card-grid .actress-card__title {
  font-size: 13px;
}

.dtk-push-calendar__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--dtk-muted);
  font-size: 11px;
  font-weight: 700;
}

.dtk-push-calendar__legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dtk-push-calendar__legend i {
  width: 14px;
  height: 14px;
  display: inline-block;
  border-radius: 5px;
  border: 1px solid rgba(120, 92, 214, 0.14);
  background: rgba(255, 255, 255, 0.9);
}

.dtk-push-calendar__legend i.is-today {
  border-color: rgba(120, 92, 214, 0.28);
  box-shadow: 0 0 0 1px rgba(120, 92, 214, 0.1) inset;
}

.dtk-push-calendar__legend i.is-active {
  background: rgba(120, 92, 214, 0.08);
}

.dtk-activity-row {
  position: relative;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
}

.dtk-activity-row__date {
  min-width: 76px;
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 12px 10px;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255, 93, 122, 0.12), rgba(123, 101, 255, 0.12));
}

.dtk-activity-row__date strong {
  font-size: 1.5rem;
  line-height: 1;
}

.dtk-activity-row__date span {
  color: var(--dtk-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.dtk-activity-row__body {
  display: grid;
  gap: 6px;
}

.dtk-push-calendar {
  display: grid;
  gap: 14px;
}

.dtk-push-calendar__toolbar {
  display: flex;
  justify-content: flex-end;
}

.dtk-push-calendar__weekdays,
.dtk-push-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.dtk-push-calendar__weekdays {
  color: var(--dtk-muted);
  font-size: 0.76rem;
  text-align: center;
}

.dtk-push-calendar__day {
  min-height: 76px;
  padding: 10px 8px;
  border-radius: 14px;
  border: 1px solid rgba(120, 92, 214, 0.12);
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  align-content: space-between;
  gap: 8px;
}

.dtk-push-calendar__day.is-outside {
  opacity: 0.38;
}

.dtk-push-calendar__day.is-today {
  border-color: rgba(120, 92, 214, 0.28);
  box-shadow: 0 0 0 1px rgba(120, 92, 214, 0.1) inset;
}

.dtk-push-calendar__day.is-active {
  background: rgba(120, 92, 214, 0.08);
}

.dtk-push-calendar__date {
  font-size: 0.88rem;
  font-weight: 600;
}

.dtk-push-calendar__count {
  justify-self: flex-start;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(120, 92, 214, 0.12);
  color: var(--dtk-ink);
  font-size: 0.76rem;
  font-weight: 600;
}

.dtk-check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--dtk-muted);
}

.dtk-article-page {
  display: grid;
  gap: 22px;
}

.entry-content > :first-child {
  margin-top: 0;
}

.entry-content > :last-child {
  margin-bottom: 0;
}

.entry-content h2,
.entry-content h3 {
  color: var(--dtk-ink);
  line-height: 1.4;
}

.entry-content h2 {
  margin: 28px 0 10px;
  font-size: 1.25rem;
}

.entry-content h3 {
  margin: 20px 0 8px;
  font-size: 1.05rem;
}

.entry-content p,
.entry-content ul {
  margin: 0 0 14px;
}

.entry-content ul {
  padding-left: 18px;
}

.entry-content li + li {
  margin-top: 6px;
}

@supports (-webkit-touch-callout: none) {
  @media (max-width: 820px) {
    .dtk-article-page .dtk-page-hero,
    .dtk-article-page .profile-panel,
    .dtk-article-page .dtk-topic-card,
    .dtk-article-page .dtk-backtrack-card,
    .dtk-article-page .dtk-category-pill {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(249, 243, 255, 0.96) 52%, rgba(242, 249, 255, 0.96));
    }
  }
}

@media (max-width: 720px) {
  .dtk-contact-form__grid {
    grid-template-columns: 1fr;
  }

  .dtk-admin-search__controls {
    grid-template-columns: 1fr;
  }

  .dtk-status-strip--mypage {
    grid-template-columns: 1fr;
  }

  .dtk-page-hero--mypage {
    padding: 14px;
    gap: 14px;
  }

  .dtk-mypage-hero,
  .dtk-mypage-hero__intro {
    gap: 12px;
  }

  .dtk-page-hero--mypage .dtk-page-hero__lead {
    font-size: 13px;
    line-height: 1.7;
  }

  .dtk-stat-grid--mypage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .dtk-stat-card--mypage {
    min-height: 0;
    gap: 6px;
    padding: 12px 10px;
    border-radius: 16px;
  }

  .dtk-stat-card--mypage strong {
    font-size: 1.85rem;
  }

  .dtk-stat-card--mypage span:last-child {
    font-size: 10px;
    line-height: 1.4;
  }

  .dtk-mypage-hero__note {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .dtk-mypage-spotlight {
    gap: 10px;
    padding: 14px;
    border-radius: 20px;
  }

  .dtk-mypage-spotlight__placeholder,
  .dtk-mypage-spotlight__empty {
    min-height: 116px;
    border-radius: 16px;
  }

  .dtk-mypage-spotlight__body {
    gap: 8px;
  }

  .dtk-mypage-spotlight__body h2 {
    font-size: 1.5rem;
  }

  .dtk-hero__actions--mypage {
    gap: 8px;
  }

  .dtk-hero__actions--calendar {
    width: fit-content;
    gap: 8px;
  }

  .dtk-push-calendar__toolbar {
    justify-content: flex-start;
  }

  .dtk-local-nav--mypage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dtk-push-calendar__weekdays,
  .dtk-push-calendar__grid {
    gap: 6px;
  }

  .dtk-push-calendar__day {
    min-height: 62px;
    padding: 8px 6px;
  }

  .dtk-push-calendar__date {
    font-size: 0.8rem;
  }

  .dtk-push-calendar__count {
    font-size: 0.7rem;
    padding: 2px 6px;
  }
}

@media (min-width: 900px) {
  .dtk-calendar-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    column-gap: 14px;
  }

  .dtk-mypage-hero {
    grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.92fr);
    align-items: start;
  }

  .dtk-activity-row {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .dtk-activity-row .dtk-card__meta {
    justify-content: flex-end;
  }
}
