@font-face {
  font-family: 'Pally';
  src: url('/assets/fonts/Pally-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pally';
  src: url('/assets/fonts/Pally-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pally';
  src: url('/assets/fonts/Pally-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: #cbfd56 #f0f0f0;
  scroll-behavior: smooth;
}

*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: #f0f0f0;
}

*::-webkit-scrollbar-thumb {
  background: #cbfd56;
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #b8e84d;
}

body {
  font-family: 'Pally', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #111;
  background: #fff;
}

.font-regular { font-weight: 400; }
.font-medium  { font-weight: 500; }
.font-bold    { font-weight: 700; }

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

html.no-tap-highlight,
html.no-tap-highlight * {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}


.age-gate {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
  padding: 20px 24px 12px;
}

body.age-gate-page {
  background: #1f01b9;
}

html:has(body.age-gate-page) {
  background: #1f01b9;
}

.age-gate-page .site-footer {
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 24px calc(6px + env(safe-area-inset-bottom));
  text-align: center;
}

.age-gate__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 12px;
}

.age-gate__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.age-gate__brand-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.age-gate__brand-icon {
  height: 24px;
  width: auto;
}

.age-gate__brand-logo {
  height: 26px;
  width: auto;
}

.age-gate__desc {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.5;
}

.age-gate__middle {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.age-gate__visual {
  position: relative;
  width: 220px;
  height: 320px;
  margin: 4px 0;
}

.age-gate__teaser {
  position: absolute;
  width: 160px;
  height: 240px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  border: none;
}

.age-gate__teaser--1 {
  top: 0;
  left: 0;
  transform: rotate(-5deg);
}

.age-gate__teaser--2 {
  top: 70px;
  left: 50px;
  transform: rotate(5deg);
}

.age-gate__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  padding: 13px 20px;
  border-radius: 10px 0 10px 0;
  font-size: 15px;
  font-family: 'Pally', Arial, sans-serif;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.age-gate__btn--outline {
  background: #cbfd56;
  color: #000;
  border: 2px solid transparent;
}

.age-gate__btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}

.age-gate__btn--outline:hover,
.age-gate__btn--outline:active,
.age-gate__btn--outline:focus-visible {
  background: transparent;
  border: 2px solid #cbfd56;
  color: #cbfd56;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 280px;
}

@media (min-width: 769px) {
  .age-gate__middle {
    display: contents;
  }

  .age-gate {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
    height: 100vh;
    min-height: 0;
    padding: 0;
    gap: 0;
  }

  .age-gate__visual {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 100%;
    height: 100%;
    margin: 0;
    overflow: hidden;
    border-radius: 0 32px 32px 0;
  }

  .age-gate__teaser {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    animation: age-gate-fade 6s infinite;
  }

  .age-gate__teaser--1 {
    animation-delay: 0s;
  }

  .age-gate__teaser--2 {
    animation-delay: 3s;
  }

  .age-gate__intro {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    padding: 60px 80px 0;
  }

  .age-gate__brand-icon-wrap {
    width: 56px;
    height: 56px;
  }

  .age-gate__brand-icon {
    height: 28px;
  }

  .age-gate__brand-logo {
    height: 32px;
  }

  .age-gate__desc {
    max-width: 380px;
    font-size: 17px;
  }

  .age-gate__actions {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    padding: 0 80px;
    max-width: none;
    flex-direction: row;
  }

  .age-gate__btn {
    max-width: 220px;
    padding: 16px 24px;
    font-size: 16px;
  }

  .age-gate__btn--ghost {
    background: #000;
    color: #fff;
    text-decoration: none;
  }

  .age-gate__btn--ghost:hover,
  .age-gate__btn--ghost:active,
  .age-gate__btn--ghost:focus-visible {
    background: transparent;
    border: 2px solid #000;
    color: #fff;
  }

  .age-gate-page .site-footer {
    position: fixed;
    left: auto;
    right: 80px;
    top: auto;
    bottom: 40px;
    transform: none;
    width: auto;
    padding: 0;
  }
}

@keyframes age-gate-fade {
  0% { opacity: 1; }
  45% { opacity: 1; }
  55% { opacity: 0; }
  100% { opacity: 0; }
}
.site-header {
  background: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #eee;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}

.icon-circle svg {
  width: 24px;
  height: 24px;
}

.icon-circle:hover,
.icon-circle:focus-visible,
.icon-circle.is-active {
  border-color: #cbfd56;
}

.site-header__profile-toggle,
.site-header__help-mobile {
  display: none;
}

.bottom-nav {
  display: none;
}

@media (max-width: 768px) {
  .site-header {
    padding: 16px 20px;
    justify-content: space-between;
  }

  .site-header__brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .site-header__profile-toggle,
  .site-header__help-mobile {
    display: flex;
  }

  body {
    padding-bottom: 84px;
  }

  .bottom-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    padding: 10px 12px 14px;
    z-index: 30;
  }

  .bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #fff;
    flex: 1;
  }

  .bottom-nav svg {
    width: 24px;
    height: 24px;
  }

  .bottom-nav span {
    font-family: 'Pally', Arial, sans-serif;
    font-size: 11px;
  }

  .bottom-nav a.is-active svg {
    fill: #cbfd56;
    stroke: #cbfd56;
  }

  .bottom-nav a.is-active span {
    color: #cbfd56;
  }

  .bottom-nav__avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    background: #f2f2f2;
    border: 2px solid #cbfd56;
  }

  .bottom-nav__avatar.js-auth-trigger img {
    border-color: #ddd;
    padding: 4px;
    box-sizing: border-box;
  }

  .feed-tabs {
    top: 73px;
  }
}

.feed {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  max-width: 480px;
  margin: 0 auto;
}

.content-card {
  display: flex;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.content-card__media {
  width: 62%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  flex-shrink: 0;
}

.content-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
}

.content-card__info svg {
  width: 22px;
  height: 22px;
  color: #111;
}

.content-card__title {
  font-size: 14px;
  color: #111;
  line-height: 1.4;
}

.site-footer {
  padding: 20px 24px;
  text-align: center;
}

@media (min-width: 769px) {
  .site-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: right;
    padding: 20px 40px;
  }
}

.home-layout {
  display: flex;
  align-items: flex-start;
  max-width: 1400px;
  margin: 0 auto;
}

.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 260px;
  background: #fff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 100;
  padding: 20px 16px;
  gap: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 16px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.side-nav.is-open {
  transform: translateX(0);
}

.side-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 90;
}

.side-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.side-nav__profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.side-nav__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.side-nav__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.side-nav__links a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 10px;
  border-radius: 10px;
  color: #111;
}

.side-nav__links a svg {
  width: 22px;
  height: 22px;
}

.side-nav__links a:hover,
.side-nav__links a.is-active {
  background: #f5f5f5;
}

.subscription-panel {
  display: none;
}

.feed-main {
  width: 100%;
  padding: 16px;
}

.feed-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid #eee;
  margin-bottom: 16px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 5;
}

.feed-tab {
  background: none;
  border: none;
  padding: 12px 4px;
  font-family: 'Pally', Arial, sans-serif;
  font-size: 15px;
  color: #888;
  cursor: pointer;
  border-bottom: 2px solid transparent;
}

.feed-tab.is-active {
  color: #111;
  border-bottom-color: #cbfd56;
}

.sort-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.feed-filters {
  display: none;
  gap: 10px;
  margin-bottom: 16px;
}

.filter-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f2f2f2;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Pally', Arial, sans-serif;
  font-size: 13px;
  color: #444;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.filter-pill svg {
  width: 16px;
  height: 16px;
}

.filter-pill.is-active {
  background: #cbfd56;
  color: #000;
}

.post-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
}

.post-grid.is-media-view {
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: none;
  margin: 0;
}

.post-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
}

.post-grid.is-media-view .post-card {
  border-radius: 0;
}

.post-card img,
.post-card mux-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-card__locked-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2a2a2a, #111);
}

.post-card__unlock {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #cbfd56;
  color: #000;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .home-layout {
    display: grid;
    grid-template-columns: 240px 1fr 280px;
    gap: 24px;
    align-items: start;
    height: calc(100vh - 81px);
    overflow: hidden;
  }

  .side-nav {
    position: static;
    top: auto;
    left: auto;
    width: auto;
    height: 100%;
    transform: none;
    box-shadow: none;
    z-index: auto;
    display: flex;
    overflow-y: auto;
  }

  .side-nav-backdrop {
    display: none;
  }

  .subscription-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
  }

  .feed-main {
    padding: 16px 0;
    height: 100%;
    overflow-y: auto;
  }

  .subscription-panel {
    padding: 16px;
    border-left: 1px solid #eee;
    gap: 16px;
  }

  .subscription-tabs {
    position: relative;
    display: flex;
    gap: 8px;
    background: #f2f2f2;
    border-radius: 8px;
    padding: 4px;
  }

  .subscription-tabs__indicator {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    background: #cbfd56;
    border-radius: 6px;
    transition: left 0.3s ease, width 0.3s ease;
    z-index: 0;
  }

  .sub-tab {
    position: relative;
    z-index: 1;
    flex: 1;
    background: transparent;
    border: none;
    border-radius: 6px;
    padding: 10px 6px;
    font-family: 'Pally', Arial, sans-serif;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    transition: color 0.2s ease;
  }

  .sub-tab.is-active {
    color: #000;
  }

  .subscription-panel__pricing {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 16px;
  }
}

.subscription-tabs-wrap {
  transition: opacity 0.2s ease;
}

.subscription-tabs-wrap.is-fading {
  opacity: 0;
}

.single-post-unlock {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.single-post-unlock.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.subscription-tabs--single {
  background: #f2f2f2;
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 12px;
}

.subscription-tabs--single .sub-tab {
  width: 100%;
  background: #cbfd56;
  color: #000;
  border-radius: 6px;
  padding: 10px 6px;
  font-family: 'Pally', Arial, sans-serif;
  font-size: 13px;
  border: none;
}

.single-post-unlock__price {
  font-size: 20px;
  margin-bottom: 4px;
}

.single-post-unlock__upsell {
  margin-top: 12px;
  font-size: 12px;
  color: #888;
}

.single-post-unlock__upsell a {
  color: #111;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.legal-links a {
  font-size: 12px;
  color: #888;
}

.legal-links a:hover {
  color: #111;
  text-decoration: underline;
}

.post-card__lock {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-card__lock-price {
  background: #cbfd56;
  color: #000;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
}

.signup-wall {
  text-align: center;
  padding: 32px 16px;
  border-top: 1px solid #eee;
  margin-top: 16px;
}

.signup-wall .age-gate__btn {
  display: inline-flex;
  width: auto;
  margin-top: 12px;
}

.auth-sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 110;
}

.auth-sheet-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.auth-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px 24px 0 0;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  z-index: 120;
  padding: 40px 24px 36px;
}

.auth-sheet.is-open {
  transform: translateY(0);
}

.auth-sheet__close {
  position: absolute;
  top: -72px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #111;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.auth-sheet.is-open .auth-sheet__close {
  opacity: 1;
  pointer-events: auto;
}

.auth-sheet__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.auth-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 320px;
  padding: 14px 20px;
  border-radius: 10px 0 10px 0;
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
  font-size: 15px;
  cursor: pointer;
}

.auth-google-btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.login-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 32px 24px;
}

.login-page__icon {
  height: 48px;
  width: auto;
}

.login-page__actions {
  margin-top: 12px;
}

.is-disabled {
  opacity: 0.4;
}

.sort-dropdown {
  position: relative;
  margin-bottom: 12px;
  display: inline-block;
}

.sort-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f2f2f2;
  border: none;
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Pally', Arial, sans-serif;
  font-size: 13px;
  color: #444;
  cursor: pointer;
}

.sort-dropdown__toggle svg {
  width: 16px;
  height: 16px;
}

.sort-dropdown__chevron {
  margin-left: 2px;
}

.sort-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 6px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  list-style: none;
  min-width: 180px;
  z-index: 15;
  overflow: hidden;
}

.sort-dropdown__menu.is-open {
  display: block;
}

.sort-dropdown__menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  background: none;
  border: none;
  font-family: 'Pally', Arial, sans-serif;
  font-size: 14px;
  color: #111;
  cursor: pointer;
  text-align: left;
}

.sort-dropdown__menu button:hover {
  background: #f5f5f5;
}

.sort-dropdown__menu button svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.members-login {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.members-login__visual {
  height: 50vh;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
}

.members-login__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.members-login__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  padding: 32px 24px;
}

.members-login__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.members-login__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.members-login__icon {
  height: 22px;
  width: auto;
}

.members-login__logo {
  height: 24px;
  width: auto;
}

.members-login p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 320px;
}

@media (min-width: 769px) {
  .members-login {
    flex-direction: row;
    height: 100vh;
  }

  .members-login__visual {
    order: 2;
    width: 50%;
    height: 100vh;
    border-radius: 32px 0 0 32px;
  }

  .members-login__content {
    order: 1;
    width: 50%;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 60px 80px;
  }

  .members-login__icon-wrap {
    width: 52px;
    height: 52px;
  }

  .members-login__icon {
    height: 26px;
  }

  .members-login__logo {
    height: 28px;
  }

  .members-login p {
    max-width: 380px;
    font-size: 17px;
  }

  .members-login-page .site-footer {
    position: fixed;
    left: 40px;
    right: auto;
    bottom: 24px;
    justify-content: flex-start;
    text-align: left;
    padding: 0;
  }
}

.app-notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  display: flex;
  align-items: center;
  gap: 10px;
  width: clamp(240px, 80vw, 420px);
  padding: 14px 18px;
  background: #14161a;
  color: #fff;
  border-radius: 10px 0 10px 0;
  font-family: 'Pally', Arial, sans-serif;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 300;
}

.app-notification.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.app-notification svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #cbfd56;
}

.sub-plan-detail {
  display: none;
}

.sub-plan-detail.is-active {
  display: block;
}

.sub-plan-detail__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.sub-plan-detail__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #333;
}

.sub-plan-detail__features svg {
  width: 16px;
  height: 16px;
  color: #cbfd56;
  flex-shrink: 0;
  margin-top: 1px;
}

.legal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.legal-topbar__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
}

.legal-topbar__hamburger svg {
  width: 22px;
  height: 22px;
}

.legal-toc-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 110;
}

.legal-toc-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.legal-layout {
  display: flex;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  gap: 32px;
  padding: 32px 24px;
}

.legal-toc-sidebar {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 24px;
}

.legal-toc {
  background: #f7f7f7;
  border-radius: 12px;
  padding: 20px 24px;
}

.legal-toc p {
  margin-top: 0 !important;
  color: #111 !important;
}

.legal-toc ol {
  margin-top: 10px;
  padding-left: 20px;
}

.legal-toc li {
  margin-top: 6px;
}

.legal-toc a {
  color: #444;
  font-size: 14px;
}

.legal-toc a:hover {
  color: #111;
  text-decoration: underline;
}

.legal-content {
  flex: 1;
  min-width: 0;
  cursor: default;
}

.legal-content p {
  margin-top: 12px;
  color: #555;
  line-height: 1.6;
}

.legal-page__updated {
  color: #999 !important;
  font-size: 13px;
  margin-top: 4px !important;
}

.legal-content section {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.legal-content section:first-of-type {
  border-top: none;
}

.legal-content h2 {
  font-size: 18px;
  color: #111;
}

.legal-content ul {
  margin-top: 10px;
  padding-left: 20px;
}

.legal-content ul li {
  color: #555;
  line-height: 1.6;
  margin-top: 6px;
}

.legal-content p a {
  color: #111;
  text-decoration: underline;
}

.legal-content p a:hover {
  color: #555;
}

.legal-page-body .site-footer {
  display: flex;
  justify-content: center;
  text-align: center;
}

@media (max-width: 900px) {
  .legal-topbar__hamburger,
  .legal-toc-backdrop {
    display: block;
  }

  .legal-toc-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 260px;
    background: #fff;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 120;
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
  }

  .legal-toc-sidebar.is-open {
    transform: translateX(0);
  }

  .legal-toc {
    background: none;
    padding: 0;
  }

  .legal-layout {
    padding: 20px 16px;
  }
}

.cookie-banner {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 400;
  background: #14161a;
  color: #fff;
  padding: 16px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner--top {
  top: 0;
}

.cookie-banner--bottom {
  bottom: 0;
}

.cookie-banner p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-banner p a {
  color: #cbfd56;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__decline,
.cookie-banner__accept {
  border: none;
  border-radius: 10px 0 10px 0;
  padding: 10px 18px;
  font-family: 'Pally', Arial, sans-serif;
  font-size: 13px;
  cursor: pointer;
}

.cookie-banner__decline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner__accept {
  background: #cbfd56;
  color: #000;
}

.cookie-banner__manage {
  background: transparent;
  color: #cbfd56;
  border: 1px solid #cbfd56;
  border-radius: 10px 0 10px 0;
  padding: 10px 18px;
  font-family: 'Pally', Arial, sans-serif;
  font-size: 13px;
  cursor: pointer;
}

.cookie-prefs-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 410;
}

.cookie-prefs-backdrop.is-open {
  display: block;
}

.cookie-prefs-panel {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  width: 90%;
  max-width: 420px;
  z-index: 420;
}

.cookie-prefs-panel.is-open {
  display: block;
}

.cookie-prefs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.cookie-prefs-row:last-of-type {
  border-bottom: none;
}

.cookie-prefs-row__desc {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle__slider {
  position: absolute;
  inset: 0;
  background: #ddd;
  border-radius: 999px;
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.cookie-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.cookie-toggle input:checked + .cookie-toggle__slider {
  background: #cbfd56;
}

.cookie-toggle input:checked + .cookie-toggle__slider::before {
  transform: translateX(20px);
}

.cookie-toggle--locked .cookie-toggle__slider {
  cursor: not-allowed;
  opacity: 0.7;
}

.cookie-prefs-panel__save {
  width: 100%;
  margin-top: 20px;
  background: #14161a;
  color: #fff;
  border: none;
  border-radius: 10px 0 10px 0;
  padding: 14px;
  font-family: 'Pally', Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;
}

.notif-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.notif-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 14px 16px;
}

.notif-item__title {
  color: #111;
  font-size: 14px;
}

.notif-item__message {
  color: #555;
  font-size: 13px;
  margin-top: 4px;
}

.notif-item__time {
  color: #aaa;
  font-size: 11px;
  margin-top: 6px;
}

.post-card__actions {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.post-card__action-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.post-card__action-btn svg {
  width: 18px;
  height: 18px;
}

.post-card__like.is-active {
  color: #ff4d6d;
}

.post-card__like.is-active svg {
  fill: #ff4d6d;
}

.post-card__save.is-active {
  color: #cbfd56;
}

.post-card__save.is-active svg {
  fill: #cbfd56;
}

.profile-section {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
}

.profile-section:last-child {
  border-bottom: none;
}

.profile-edit-name {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  max-width: 400px;
}

.profile-edit-name .upload-form__input {
  flex: 1;
}

.profile-post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.profile-post-thumb {
  border-radius: 10px;
  overflow: hidden;
  background: #f2f2f2;
}

.profile-post-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.profile-post-thumb__video-badge {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #14161a;
  color: #cbfd56;
  font-size: 12px;
}

.profile-post-thumb__title {
  padding: 8px 10px;
  font-size: 12px;
  color: #444;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 12px;
}

.cart-item__thumb {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f2f2f2;
}

.cart-item__thumb img,
.cart-item__thumb .profile-post-thumb__video-badge,
.cart-item__thumb .post-card__locked-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__info {
  flex: 1;
  min-width: 0;
}

.cart-item__title {
  color: #111;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item__price {
  color: #111;
  font-size: 13px;
  margin-top: 2px;
}

.cart-item__remove {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  flex-shrink: 0;
}

.cart-item__remove svg {
  width: 20px;
  height: 20px;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  margin-bottom: 16px;
}

.nav-icon-wrap {
  position: relative;
  display: inline-flex;
}

.nav-icon-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e5384d;
  color: #fff;
  font-size: 10px;
  font-family: 'Pally', Arial, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 10px 0 10px 0;
  border: none;
  background: #14161a;
  color: #fff;
  font-family: 'Pally', Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 10px 0 10px 0;
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
  font-family: 'Pally', Arial, sans-serif;
  font-size: 14px;
  cursor: pointer;
}