/* ==================================================
   A2 UI BASELINE CSS
   以当前可接受样式为基线做整理：保持原方向，只做可验证的小步优化。
   ================================================== */

/* ==================================================
   BUTTON STYLES
   ================================================== */

button,
.download-button,
#copyButton,
.btn-group .btn,
.member-exclusive-content .login-button,
.member-exclusive-content-placeholder .login-button,
.non-member-image-content .login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    opacity 0.18s ease;
}

.download-button,
#copyButton,
.btn-group .btn,
.member-exclusive-content .login-button,
.member-exclusive-content-placeholder .login-button,
.non-member-image-content .login-button {
  box-sizing: border-box;
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  background: #2f9e44;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: none;
}

.download-button:hover {
  background: #2c9440;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.download-button:active {
  background: #27853a;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

#copyButton {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  min-height: 40px;
  margin: 14px auto;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9px;
  background: #3d7bdd;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  box-shadow: none;
}

#copyButton:hover {
  background: #376fca;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

#copyButton:active {
  background: #3263b4;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}

.btn-group .btn {
  min-width: 96px;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #2b7fd8;
  box-shadow: none;
}

.btn-group .btn:hover {
  background: #2977ca;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

@media (max-width: 480px) {
  .btn-group {
    gap: 8px;
  }

  .btn-group .btn,
  #copyButton {
    width: 100%;
  }

  .btn-group .btn {
    min-width: 0;
  }
}

.member-exclusive-content-placeholder .login-button {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #3c7fbd;
}

.member-exclusive-content-placeholder .login-button:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background-color: #356fa5;
}

.member-exclusive-content .login-button,
.non-member-image-content .login-button {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: #9b78d6;
  color: #fff !important;
}

.member-exclusive-content .login-button:hover,
.non-member-image-content .login-button:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background-color: #8c69c6;
  color: #fff !important;
}

.member-exclusive-content .login-button:active,
.non-member-image-content .login-button:active {
  background-color: #7f5fb3;
  color: #fff !important;
}

.member-exclusive-content .login-button {
  margin-top: 15px;
}

/* ==================================================
   WIDGETS & LAYOUT
   ================================================== */

.widgetsearch {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.popular-page {
  margin-top: 18px;
}

.popular-page__content {
  width: 100%;
}

.popular-page__main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.popular-page__header {
  padding: 18px 20px 0;
}

.popular-page__title {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.popular-page__subtitle {
  max-width: 720px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.75;
}

.popular-page__panel {
  padding: 0 20px 24px;
}

.popular-page__search {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.popular-page__search .search-form,
.popular-page__search form {
  width: 100%;
  max-width: 460px;
}

.popular-page__filters {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.popular-page__filter.is-active {
  background: #2f9e44;
  border-color: rgba(92, 197, 117, 0.32);
}

.popular-posts-panel {
  padding-top: 18px;
  border-top: 1px dashed rgba(255, 255, 255, 0.16);
}

.popular-posts-panel[hidden] {
  display: none !important;
}

.popular-posts-panel.is-active {
  display: block;
}

.popular-posts-panel__title {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.3;
}

.popular-posts-panel ol {
  margin: 0;
  padding-left: 24px;
}

.popular-posts-panel li + li {
  margin-top: 10px;
}

.popular-posts-panel a,
.popular-posts-panel a:visited {
  color: rgba(255, 255, 255, 0.84);
}

.popular-posts-panel a:hover {
  color: #ffd36e;
}

.popular-posts-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.custom-image {
  position: relative;
  display: inline-block;
  width: 100%;
}

.custom-image:nth-of-type(3) {
  margin-bottom: 20px;
}

.membership-promo-image {
  margin: 18px 0;
  text-align: center;
}

.membership-promo-image__link {
  display: inline-block;
  max-width: 100%;
}

.membership-promo-image__img {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
}

.home .content-wrap > .membership-promo-image {
  margin: 8px 0 18px;
}

.home .content-wrap > .membership-promo-image .membership-promo-image__img {
  border-radius: 0;
}

@media (min-width: 981px) {
  .home .content-wrap > .membership-promo-image {
    margin: 4px 0 20px;
  }

  .home .content-wrap > .membership-promo-image .membership-promo-image__link {
    display: block;
    width: 100%;
  }

  .home .content-wrap > .membership-promo-image .membership-promo-image__img {
    max-width: none;
    width: 100%;
    aspect-ratio: 1000 / 150;
    object-fit: cover;
    object-position: center;
  }
}

.custom-buttons-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
}

.single-quick-links {
  margin: 18px 0 16px;
}

.custom-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 96px;
  min-height: 94px;
  padding: 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: #f5b13c;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.18s ease;
}

.custom-button:hover {
  border-color: rgba(242, 148, 0, 0.28);
  background: rgba(242, 148, 0, 0.08);
  transform: translateY(-1px);
}

.custom-button img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.custom-button span {
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.35;
  word-break: keep-all;
}

@media (max-width: 480px) {
  .popular-page {
    margin-top: 14px;
  }

  .popular-page__header {
    padding: 14px 14px 0;
  }

  .popular-page__subtitle {
    font-size: 14px;
    line-height: 1.7;
  }

  .popular-page__panel {
    padding: 0 14px 20px;
  }

  .popular-page__search {
    margin-bottom: 16px;
  }

  .popular-page__filters {
    gap: 8px;
    margin-bottom: 16px;
  }

  .popular-page__filters .popular-page__filter {
    width: auto;
    min-width: 0;
    flex: 1 1 0;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

  .popular-posts-panel {
    padding-top: 16px;
  }

  .popular-posts-panel__title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .single #primary .entry-header {
    margin-bottom: 16px;
    padding-bottom: 12px;
  }

  .single h1.entry-title {
    font-size: 22px;
    line-height: 1.22;
  }

  .single .entry-meta {
    gap: 6px 8px;
    font-size: 13px;
  }

  .single .entry-meta .entry-category {
    font-size: 12px;
  }

  .single .entry-content {
    font-size: 16px;
    line-height: 1.88;
  }

  .single .entry-content > * + * {
    margin-top: 18px;
  }

  .single .entry-content p + p {
    margin-top: 16px;
  }

  .single .entry-content .centered-link {
    margin: 8px 0 2px;
    font-size: 14px;
  }

  .single-post-secondary > * + * {
    margin-top: 18px;
  }

  .single-post-secondary .random-posts h5 {
    font-size: 16px;
  }

  .single .single-bottom-ad {
    margin-top: 18px;
  }

  .single-quick-links {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    align-items: stretch;
  }

  .custom-button {
    width: auto;
    min-width: 0;
    min-height: 72px;
    padding: 8px 2px 6px;
    border-color: transparent;
    border-radius: 9px;
    background: transparent;
    box-shadow: none;
  }

  .custom-button img {
    width: 34px;
    height: 34px;
  }

  .custom-button span {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.22;
    letter-spacing: -0.01em;
  }

  .custom-button:hover {
    border-color: transparent;
    background: rgba(255, 255, 255, 0.02);
    transform: none;
  }
}

.single-post-divider {
  margin: 22px 0 18px;
  border-top: 1px dashed rgba(255, 255, 255, 0.22);
}

.single-post-share {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.single-post-share__button {
  margin: 0;
}

.single-post-share__hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  text-align: center;
}

.single-post-secondary {
  margin-top: 8px;
}

.single-post-secondary > * + * {
  margin-top: 22px;
}

.single-post-secondary .membership-promo-image {
  margin: 0;
}

.single-post-secondary .membership-promo-image__img {
  border-radius: 14px;
}

.single-post-secondary .random-posts {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.single-post-secondary .random-posts h5 {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 17px;
}

.single-post-secondary .centered-link {
  margin: 0;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.single .single-bottom-ad {
  margin-top: 22px;
}

.single #primary .entry-header {
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.single h1.entry-title {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.single .entry-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.single .entry-meta .entry-category {
  margin-right: 0;
  color: #ff6d6d;
  font-size: 13px;
  font-weight: 700;
}

.single .entry-meta .entry-date,
.single .entry-meta .entry-comment,
.single .entry-meta .entry-comment a,
.single .entry-meta .entry-comment a:visited {
  color: rgba(255, 255, 255, 0.62);
}

.single .entry-meta .sep {
  opacity: 0.45;
}

.single .entry-content {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.95;
}

.single .entry-content > * + * {
  margin-top: 20px;
}

.single .entry-content p {
  margin: 0;
}

.single .entry-content p + p {
  margin-top: 18px;
}

.single .entry-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 14px auto 0;
  border-radius: 10px;
}

.single .entry-content .centered-link {
  margin: 10px 0 4px;
  padding-left: 12px;
  color: #79d8dd;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.single .entry-content .centered-link::before {
  top: 3px;
  bottom: 3px;
}

.single .entry-content .video-download-wrapper,
.single .entry-content .flowplayer,
.single .entry-content .fv-player-shortcode,
.single .entry-content .wp-video {
  margin-top: 18px;
}

@media (min-width: 981px) {
  .single .sidebar .widget,
  .single .sidebar .widget ul > li {
    color: rgba(255, 255, 255, 0.68);
  }

  .single .sidebar .widget a,
  .single .sidebar .widget ul > li a,
  .single .sidebar .widget ul > li a:visited {
    color: rgba(255, 255, 255, 0.78);
  }

  .single .sidebar .widget a:hover,
  .single .sidebar .widget ul > li a:hover {
    color: rgba(255, 255, 255, 0.9);
  }
}

/* ==================================================
   MEMBER CONTENT & LINKS
   ================================================== */

.member-exclusive-content-placeholder {
  max-width: 760px;
  margin: 18px auto;
  padding: 16px 16px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.04);
  color: rgba(225, 240, 255, 0.9);
  text-align: center;
}

.member-exclusive-content {
  max-width: 760px;
  margin: 18px auto;
  padding: 18px 16px;
  border: 1px solid rgba(174, 117, 243, 0.3);
  border-radius: 10px;
  background-color: rgba(174, 117, 243, 0.06);
  box-shadow: none;
  font-family: Arial, sans-serif;
}

.member-exclusive-content .content-header {
  margin-bottom: 12px;
  text-align: center;
}

.member-exclusive-content .content-header h3 {
  color: #cda5ff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.member-exclusive-content .content-header p,
.member-exclusive-content .content-body {
  color: rgba(255, 250, 255, 0.92);
  font-size: 15px;
  text-align: center;
}

.member-exclusive-content .content-body p {
  margin-bottom: 16px;
  line-height: 1.65;
}

.member-exclusive-content .content-body p strong {
  color: #d8b8ff;
}

.member-exclusive-content .member-link,
.member-exclusive-content .login-link,
.member-exclusive-content .purchase-link {
  color: #8fd0ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.member-exclusive-content .member-link:hover,
.member-exclusive-content .login-link:hover,
.member-exclusive-content .purchase-link:hover {
  color: #b6e0ff;
}

.non-member-image-content.non-member-image-placeholder {
  max-width: 760px;
  margin: 18px auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(225, 240, 255, 0.9);
  text-align: center;
}

.non-member-image-content .content-header {
  margin-bottom: 8px;
  text-align: center;
}

.non-member-image-content .content-header h3 {
  color: #d3b1ff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}

.non-member-image-content .content-header p,
.non-member-image-content .content-body {
  color: rgba(255, 250, 255, 0.92);
  font-size: 15px;
  text-align: center;
}

.non-member-image-content .content-header p {
  margin: 0;
  line-height: 1.6;
}

.non-member-image-content .content-body {
  margin: 8px 0 0;
}

.non-member-image-content .content-body img {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
}

.non-member-image-content .login-link {
  color: #8fd0ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.non-member-image-content .login-link:hover {
  color: #b6e0ff;
}

@media (max-width: 480px) {
  .member-exclusive-content .content-header h3,
  .non-member-image-content .content-header h3 {
    font-size: 20px;
  }
}

.custom-link,
.custom-link span {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.custom-link {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.custom-link:hover {
  border-color: rgba(143, 208, 255, 0.28);
  background-color: rgba(143, 208, 255, 0.08);
  color: #cbe8ff;
}

/* ==================================================
   OTHER STYLES
   ================================================== */

.centered-link {
  position: relative;
  width: 100%;
  margin: 18px 0 10px;
  padding-left: 14px;
  color: #7cd4d7;
  font-size: 17px;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.centered-link a {
  color: inherit;
  text-decoration: inherit;
}

.centered-link::before {
  content: '';
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 3px;
  border-radius: 999px;
  background-color: rgba(124, 212, 215, 0.78);
}

.centered-link:hover {
  color: #a5e5e7;
  text-decoration: none;
}

.page-id-56510 #colophon {
  display: none;
}

/* ==================================================
   广告区域
   ================================================== */

#ad-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
  margin-top: 20px;
  overflow: hidden;
  box-sizing: border-box;
}

#ad-container iframe {
  width: 100%;
  max-width: 300px;
  height: 300px;
  border: 0;
  z-index: 0;
}

#ad-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
  padding: 0 4px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 8px;
}

#random-b-post-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  padding: 10px;
}

.random-b-post {
  position: relative;
  width: 90%;
  max-width: 600px;
  height: 300px;
  padding: 10px;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
  text-align: center;
  transition: border-color 0.24s ease, background-color 0.24s ease;
}

.random-b-post:hover {
  border-color: rgba(0, 0, 0, 0.12);
}

.random-b-post img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.random-b-post img:hover {
  transform: scale(1.02);
}

.random-b-post h4 {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.4;
}

.random-b-post h4 a {
  color: #3c7fbd;
  text-decoration: none;
}

.random-b-post h4 a:hover {
  color: #2f6ca3;
}

.b-post-header {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 9;
  padding: 5px 10px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 13px;
}

.b-post-header a {
  color: #fff;
}

.b-post-header a:hover {
  text-decoration: underline;
}

.random-b-post.loading-ad {
  display: flex;
  justify-content: center;
  align-items: center;
  background: repeating-linear-gradient(
    45deg,
    #f5f5f5,
    #f5f5f5 10px,
    #f0f0f0 10px,
    #f0f0f0 20px
  );
  color: #888;
  font-size: 16px;
}

/* ==================================================
   年龄验证页面
   ================================================== */

.age-gate__heading-title {
  color: rgba(20, 20, 20, 0.9);
}

.age-gate__headline {
  color: #c94b55;
}

/* ==================================================
   NOTICE BANNERS FOR SPECIFIC CATEGORIES
   ================================================== */

.custom-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 6px 0;
  padding: 8px 10px;
  border: 1px solid rgba(195, 92, 0, 0.28);
  border-radius: 8px;
  background-color: rgba(255, 170, 0, 0.06);
  color: rgba(255, 244, 224, 0.92);
  line-height: 1.65;
}

.custom-notice > span:first-child {
  flex: 0 0 auto;
  color: rgba(255, 184, 77, 0.9);
}

.custom-notice > span:last-child {
  min-width: 0;
  flex: 1 1 auto;
  color: rgba(255, 232, 204, 0.9);
  font-style: normal;
  font-size: 14px;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.custom-notice a {
  color: #ffbf5e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.custom-notice a:hover {
  color: #ffd18a;
}

@media (max-width: 480px) {
  .custom-notice {
    padding: 8px 9px;
    gap: 6px;
  }
}

/* ==================================================
   播放器下方间距为 0
   ================================================== */

body .flowplayer {
  margin: 0 auto 0 auto !important;
}

.entry-content > * + * {
  margin-top: 18px;
}

.entry-content p {
  margin: 0;
  line-height: 1.85;
}

.entry-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 12px auto 0;
  border-radius: 10px;
}

.entry-content .video-download-wrapper {
  margin-top: 14px;
}

/* ==================================================
   分页样式
   ================================================== */

.page-label {
  margin: 18px 0 10px;
  color: #f1d676;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.page-links .post-page-numbers {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.page-links a.page-nav-button,
.page-links .page-nav-button {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.page-links .current {
  border-color: rgba(76, 175, 80, 0.42);
  background-color: rgba(76, 175, 80, 0.18);
  color: #fff;
}

.page-links .page-nav-button.disabled {
  opacity: 0.48;
}

/* ==================================================
   随便看看：轻模块版
   不做大框套小框，仅用浅虚线分隔
   ================================================== */

.random-posts {
  margin: 18px 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.random-posts h5 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.random-posts > a {
  display: inline-block;
  margin-bottom: 10px;
  color: #66c7ff;
  font-size: 14px;
  text-decoration: underline;
}

.random-posts ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.random-posts li {
  margin: 0;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.6;
}

.random-posts li:last-child {
  border-bottom: 0;
}

.random-posts li a {
  color: #fff;
  text-decoration: none;
}

.random-posts li a:hover {
  color: #66c7ff;
  text-decoration: underline;
}

.category-banner-ad {
  margin: 10px 0 18px;
}

.category-banner-ad__link {
  display: block;
}

.category-banner-ad__image {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
}

/* ==================================================
   SENSITIVE CONTENT SHORTCODE
   ================================================== */

.sensitive-content-wrapper {
  margin: 18px 0;
}

.sensitive-content-warning {
  padding: 14px 14px 13px;
  border: 1px solid rgba(220, 99, 99, 0.28);
  border-radius: 10px;
  background: rgba(170, 38, 63, 0.08);
  color: rgba(255, 234, 239, 0.95);
}

.sensitive-content-title {
  margin: 0 0 12px;
  color: #ffd5db;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.sensitive-content-actions {
  justify-content: flex-start;
  margin-bottom: 0;
}

.sensitive-content-actions .btn {
  min-width: 110px;
}

.show-content-button.btn {
  background: #c45a6e;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.show-content-button.btn:hover {
  background: #b45063;
}

.hide-content-button.btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 245, 247, 0.94);
}

.hide-content-button.btn:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.sensitive-content[hidden] {
  display: none !important;
}

/* ==================================================
   RI BUTTONS SHORTCODE
   ================================================== */

.ri-button-wrap {
  display: inline-flex;
  max-width: 100%;
  margin: 8px 10px 8px 0;
  vertical-align: middle;
}

.ri-button {
  min-width: 104px;
  text-decoration: none;
  box-sizing: border-box;
}

.ri-button:hover {
  text-decoration: none;
}

.ri-button-primary {
  background: #2b7fd8;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.ri-button-primary:hover {
  background: #2977ca;
  color: #fff;
}

.ri-button-secondary {
  background: #4f8f5b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.ri-button-secondary:hover {
  background: #477f52;
  color: #fff;
}

.ri-button-success {
  background: #2f9e44;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.ri-button-success:hover {
  background: #2c9440;
  color: #fff;
}

.ri-button-warning {
  background: #c4822b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.ri-button-warning:hover {
  background: #b17324;
  color: #fff;
}

.ri-button-danger {
  background: #c45a6e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
}

.ri-button-danger:hover {
  background: #b45063;
  color: #fff;
}

.ri-button-ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.94);
}

.ri-button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

@media (max-width: 480px) {
  .ri-button-wrap {
    display: flex;
    width: 100%;
    margin-right: 0;
  }

  .ri-button {
    width: 100%;
  }
}

/* ==================================================
   MONTH NOTICE SHORTCODE
   ================================================== */

.month-notice {
  margin: 14px 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: #2b2b2b;
  color: #f1f1f1;
  font-size: 13px;
  line-height: 1.7;
}

.month-notice[hidden] {
  display: none !important;
}

.month-notice-inner {
  display: flex;
  gap: 12px;
}

.month-notice-dot {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  margin-top: 7px;
  border-radius: 999px;
  background: #fbbf24;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15);
}

.month-notice-body {
  flex: 1;
  min-width: 0;
}

.month-notice-text {
  margin-bottom: 10px;
}

.month-notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.month-notice-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8ab4f8, #a78bfa);
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.month-notice-link:hover {
  color: #121212;
  text-decoration: none;
  filter: brightness(1.02);
}

.month-notice-dismiss {
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ddd;
  font-size: 12px;
}

.month-notice-dismiss:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

@media (max-width: 480px) {
  .month-notice {
    padding: 12px;
  }

  .month-notice-inner {
    gap: 10px;
  }

  .month-notice-actions {
    gap: 10px;
  }

  .month-notice-link,
  .month-notice-dismiss {
    width: 100%;
  }
}

/* ==================================================
   VIDEO NOTICE / DOWNLOAD
   ================================================== */

.vip-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 1px 0 10px;
  font-size: 14px;
  line-height: 1.6;
}

.vip-notice__icon {
  flex: 0 0 auto;
}

.vip-notice__text {
  min-width: 0;
}

.vip-notice--active {
  color: #67c23a;
}

.vip-notice--upsell {
  color: #f56c6c;
}

.vip-notice__link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vip-notice__link:hover {
  color: inherit;
  opacity: 0.92;
}

.video-download-wrapper {
  margin-bottom: 10px;
}

/* ==================================================
   PROMO BANNERS
   ================================================== */

.category-banner-ad {
  margin: 20px 0;
  text-align: center;
}

.category-banner-ad__link {
  display: inline-block;
  max-width: 100%;
}

.category-banner-ad__image {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
}
