:root {
  --bg: #050816;
  --bg-soft: rgba(11, 16, 34, 0.92);
  --card: rgba(10, 15, 30, 0.82);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f7ff;
  --muted: rgba(232, 237, 255, 0.72);
  --accent: #ff6a3d;
  --accent-strong: #ff3f24;
  --accent-soft: rgba(255, 106, 61, 0.16);
  --blue: #70b7ff;
  --gold: #ffcf70;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.4);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Space Grotesk", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 96, 53, 0.2), transparent 25%),
    radial-gradient(circle at bottom right, rgba(112, 183, 255, 0.16), transparent 24%),
    linear-gradient(180deg, #0a0d17 0%, #04060d 100%);
  color: var(--text);
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

.page-shell {
  position: relative;
  width: min(1200px, calc(100% - 24px));
  margin: 0 auto;
  padding: 18px 0 36px;
  overflow: hidden;
}

.ambient {
  position: absolute;
  inset: auto auto 0 0;
  border-radius: 50%;
  filter: blur(28px);
  pointer-events: none;
}

.ambient-a {
  width: 240px;
  height: 240px;
  top: 80px;
  right: -70px;
  background: rgba(255, 83, 56, 0.18);
}

.ambient-b {
  width: 180px;
  height: 180px;
  top: 440px;
  left: -70px;
  background: rgba(112, 183, 255, 0.14);
}

.topbar,
.feature-strip,
.section-head,
.pagination,
.stats-row,
.bottom-panel,
.content-grid,
.hero {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(8, 10, 18, 0.9);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  z-index: 8;
}

.icon-button,
.icon-circle {
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.icon-button {
  width: 48px;
  height: 48px;
  gap: 4px;
}

.icon-button span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
}

.icon-circle {
  width: 42px;
  height: 42px;
}

.icon-circle svg,
.modal-close svg,
.lang-dropdown svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-strong), #ffa95f);
  font-weight: 800;
  font-size: 1.2rem;
  color: #fff4eb;
}

.brand-text {
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.quick-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 86px;
  padding: 12px 8px 10px;
  border-radius: 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
  text-align: center;
}

.quick-icon-shell {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.quick-icon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quick-action-label {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  color: #eef2ff;
  letter-spacing: 0.01em;
}

.language-picker {
  position: relative;
  z-index: 12;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 78px;
  height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(25, 33, 57, 0.92), rgba(11, 17, 32, 0.92));
  border: 1px solid rgba(53, 148, 255, 0.9);
  color: #f3f7ff;
  box-shadow: inset 0 0 0 1px rgba(108, 183, 255, 0.08);
}

.language-trigger-code {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.language-trigger svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 168px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(8, 12, 24, 0.98);
  border: 1px solid var(--line-strong);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  z-index: 20;
}

.language-option {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  color: var(--text);
  text-align: left;
}

.language-option:hover,
.language-option.is-active {
  background: rgba(255, 255, 255, 0.08);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.feature-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(14, 18, 34, 0.84);
  border: 1px solid var(--line);
  color: var(--muted);
}

.feature-chip.is-active {
  background: linear-gradient(135deg, rgba(255, 106, 61, 0.18), rgba(255, 106, 61, 0.06));
  color: var(--text);
}

.feature-chip-tag {
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff7f1;
}

.feature-chip-tag-alt {
  background: var(--blue);
  color: #071222;
}

.feature-chip-tag-soft {
  background: var(--gold);
  color: #2f1b00;
}

.card {
  background: linear-gradient(180deg, rgba(12, 18, 35, 0.9), rgba(8, 12, 24, 0.9));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 28px;
  padding: 28px;
  margin-top: 16px;
  overflow: hidden;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #ffb392;
}

.hero h1,
.bottom-panel h3 {
  margin: 0;
  line-height: 1.05;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  max-width: 12ch;
}

.hero-text {
  max-width: 60ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cta-primary,
.cta-secondary {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
}

.cta-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff7f2;
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--line-strong);
}

.hero-visual {
  position: relative;
  min-height: 390px;
  width: 100%;
}

.hero-orb {
  position: absolute;
  width: 240px;
  height: 240px;
  right: 10px;
  top: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 73, 0.64), rgba(255, 122, 73, 0.02) 68%);
  filter: blur(8px);
}

.hero-screen {
  position: absolute;
  inset: 18px 0 0 auto;
  width: min(100%, 360px);
  height: 372px;
  min-height: 372px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 20% 20%, rgba(112, 183, 255, 0.42), transparent 28%),
    linear-gradient(135deg, rgba(14, 19, 39, 0.94), rgba(8, 12, 24, 0.98));
  border: 1px solid var(--line-strong);
  overflow: hidden;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

.hero-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  min-height: 100%;
  opacity: 0;
  transform: translateX(10%);
  transition:
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.hero-slide.is-prev {
  opacity: 0;
  transform: translateX(-10%);
  z-index: 1;
}

.hero-slide.is-next {
  opacity: 0;
  transform: translateX(10%);
  z-index: 1;
}

.hero-slide-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.hero-slide-kicker {
  margin: 0 0 6px;
  color: #ffb896;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-slide-title {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.screen-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-strong);
  font-weight: 700;
  white-space: nowrap;
}

.hero-slide-cover {
  position: relative;
  flex: 1;
  min-height: 220px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(11, 16, 31, 0.9);
  overflow: hidden;
}

.hero-slide-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%),
    radial-gradient(circle at 18% 16%, rgba(112, 183, 255, 0.32), transparent 24%),
    radial-gradient(circle at 72% 24%, rgba(255, 132, 94, 0.28), transparent 22%);
  pointer-events: none;
}

.cover-poster {
  position: relative;
  height: 100%;
  min-height: 180px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.cover-image,
.thumb-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cover-poster::before,
.cover-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
}

.cover-poster::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 20%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, transparent 48%, rgba(3, 6, 14, 0.34));
}

.cover-poster::after {
  inset: auto 20px 18px 20px;
  height: 66px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.46)),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 2px,
      transparent 2px,
      transparent 18px
    );
}

.cover-shine {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.28), transparent 16%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.12), transparent 22% 78%, rgba(255, 255, 255, 0.08));
}

.cover-a .cover-poster {
  background:
    radial-gradient(circle at 22% 20%, rgba(128, 171, 255, 0.5), transparent 22%),
    linear-gradient(135deg, rgba(56, 74, 112, 0.92), rgba(17, 22, 38, 0.96) 48%, rgba(36, 20, 34, 0.88));
}

.cover-b .cover-poster {
  background:
    radial-gradient(circle at 74% 18%, rgba(255, 194, 128, 0.42), transparent 20%),
    linear-gradient(135deg, rgba(58, 34, 64, 0.92), rgba(18, 21, 38, 0.96) 48%, rgba(17, 27, 49, 0.9));
}

.cover-c .cover-poster {
  background:
    radial-gradient(circle at 24% 22%, rgba(110, 230, 215, 0.32), transparent 20%),
    linear-gradient(135deg, rgba(18, 58, 68, 0.92), rgba(12, 19, 34, 0.96) 52%, rgba(30, 29, 61, 0.9));
}

.cover-d .cover-poster {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 128, 128, 0.34), transparent 18%),
    linear-gradient(135deg, rgba(73, 48, 89, 0.92), rgba(14, 18, 34, 0.96) 48%, rgba(22, 34, 58, 0.9));
}

.hero-dots {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 12px;
  display: flex;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  transition: transform 220ms ease, background-color 220ms ease;
}

.hero-dot.is-active {
  background: var(--accent);
  transform: scale(1.18);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.stat-item {
  padding: 18px;
  text-align: left;
  border-radius: 18px;
  background: rgba(10, 15, 30, 0.76);
  border: 1px solid var(--line);
}

.stat-label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.stat-value {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.section-title-badge {
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: white;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.lang-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.page-chip {
  min-width: 46px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
}

.lang-pill,
.page-chip {
  min-width: 46px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
}

.page-chip.is-current {
  background: linear-gradient(135deg, rgba(255, 106, 61, 0.24), rgba(255, 106, 61, 0.1));
  border-color: rgba(255, 106, 61, 0.38);
}

.page-chip-ellipsis {
  color: var(--muted);
}

.content-grid {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.video-card {
  overflow: hidden;
}

.thumb {
  position: relative;
  min-height: 280px;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
}

.thumb::before,
.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
}

.thumb::before {
  background:
    radial-gradient(circle at 74% 22%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42));
}

.thumb::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.42));
}

.thumb-a {
  background:
    radial-gradient(circle at 72% 28%, rgba(255, 205, 133, 0.58), transparent 18%),
    linear-gradient(120deg, rgba(82, 34, 62, 0.85), rgba(208, 120, 96, 0.62)),
    linear-gradient(180deg, rgba(12, 17, 36, 0.5), rgba(12, 17, 36, 0.5));
}

.thumb-b {
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 177, 122, 0.42), transparent 18%),
    linear-gradient(120deg, rgba(22, 26, 40, 0.9), rgba(95, 80, 103, 0.72)),
    linear-gradient(180deg, rgba(14, 17, 28, 0.7), rgba(14, 17, 28, 0.7));
}

.thumb-c {
  background:
    radial-gradient(circle at 65% 20%, rgba(112, 183, 255, 0.45), transparent 18%),
    linear-gradient(120deg, rgba(14, 28, 53, 0.88), rgba(36, 63, 94, 0.72)),
    linear-gradient(180deg, rgba(14, 17, 28, 0.7), rgba(14, 17, 28, 0.7));
}

.quality-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(5, 9, 21, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.9rem;
  font-weight: 700;
}

.quality-badge-alt {
  color: #ffd7b8;
}

.video-copy {
  padding: 18px 18px 20px;
}

.video-copy h2 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.45;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 0;
  color: var(--muted);
}

.meta-sep {
  opacity: 0.7;
}

.bottom-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  margin-top: 20px;
}

.bottom-panel h3 {
  margin-top: 8px;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
}

.cta-small {
  min-width: 180px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 5, 12, 0.72);
  backdrop-filter: blur(16px);
}

.membership-modal {
  position: relative;
  width: min(560px, 100%);
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 61, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(11, 16, 31, 0.98), rgba(7, 10, 20, 0.98));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.modal-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 106, 61, 0.14);
  color: #ffba99;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.membership-modal h2 {
  margin: 16px 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
}

.modal-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.modal-perks {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.perk {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.perk-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 106, 61, 0.14);
  color: #ffd2bf;
  font-weight: 800;
}

[hidden] {
  display: none !important;
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 16px, 680px);
    padding-top: 8px;
  }

  .topbar {
    padding: 10px 12px;
  }

  .brand-text {
    font-size: 1.2rem;
  }

  .feature-strip,
  .stats-row {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .hero-visual {
    min-height: 360px;
    width: 100%;
  }

  .hero-screen {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: none;
    height: 340px;
    min-height: 340px;
    margin: 0 auto;
  }

  .section-head,
  .bottom-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-small {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 10px, 480px);
  }

  .topbar {
    gap: 8px;
  }

  .language-trigger {
    min-width: 64px;
    padding: 0 10px;
  }

  .quick-grid {
    gap: 8px;
  }

  .quick-action {
    min-height: 78px;
    padding: 10px 6px 8px;
    border-radius: 16px;
  }

  .quick-icon-shell {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }

  .quick-action-label {
    font-size: 0.7rem;
  }

  .hero,
  .membership-modal {
    padding: 18px;
  }

  .hero-slide {
    padding: 14px;
  }

  .hero-slide-cover {
    min-height: 192px;
    padding: 14px;
  }

  .hero-slide-title {
    font-size: 1.05rem;
  }

  .thumb {
    min-height: 220px;
  }

  .lang-pill,
  .page-chip {
    min-width: 42px;
    min-height: 42px;
    border-radius: 12px;
  }

  .modal-actions {
    flex-direction: column-reverse;
  }

  .modal-actions .cta-primary,
  .modal-actions .cta-secondary {
    width: 100%;
  }
}
