:root {
  --bg: #080711;
  --bg-2: #0d0918;
  --surface: rgba(24, 18, 38, 0.8);
  --surface-solid: #151020;
  --surface-soft: #1d1630;
  --text: #fff9ec;
  --muted: #c4bccf;
  --muted-2: #91899f;
  --line: rgba(255, 255, 255, 0.085);
  --gold: #ffd76a;
  --orange: #ff9730;
  --pink: #ff64c8;
  --purple: #8d4cff;
  --cyan: #58dcff;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 15px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 14px 38px rgba(0, 0, 0, 0.22);
  --content: 1180px;
  --bg-deep: #05040b;
  --surface-strong: #151020;
  --gold-strong: #ffbd3d;
  --radius-xl: 32px;
  --shadow-lg: 0 28px 80px rgba(0, 0, 0, 0.36);
  --shadow-md: 0 16px 42px rgba(0, 0, 0, 0.24);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  touch-action: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
}
button {
  font: inherit;
}
h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
}
.navbar {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}
.logo {
  display: flex;
  align-items: center;
  width: 150px;
}
.logo img {
  width: 112px;
  height: auto;
}
.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 13px;
  font-size: 0.86rem;
  white-space: nowrap;
}
.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.nav-icon {
  font-size: 0.96rem;
}
.login-btn,
.gold-btn,
.ghost-btn,
.drawer-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 15px;
  font-weight: 850;
  transition: 0.2s ease;
}
.login-btn,
.gold-btn,
.drawer-login {
  color: #2c1732;
  background: linear-gradient(
    135deg,
    #ffe57d 0%,
    var(--gold) 42%,
    var(--orange) 100%
  );
  box-shadow: 0 10px 28px rgba(255, 158, 49, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.login-btn:hover,
.gold-btn:hover,
.drawer-login:hover {
  transform: translateY(-2px);
  filter: saturate(1.06);
}
.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  place-items: center;
}
.menu-btn span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: #fff;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  opacity: 0;
  visibility: hidden;
  background: rgba(3, 2, 8, 0.58);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: opacity 0.28s ease, visibility 0.28s ease;
  touch-action: none;
}
.mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 130;
  width: min(86vw, 420px);
  height: 100dvh;
  padding: 22px max(22px, env(safe-area-inset-right))
    calc(26px + env(safe-area-inset-bottom));
  transform: translateX(105%);
  background: radial-gradient(
      circle at 85% 8%,
      rgba(255, 93, 200, 0.16),
      transparent 18rem
    ),
    radial-gradient(circle at 10% 0, rgba(138, 70, 255, 0.2), transparent 22rem),
    linear-gradient(180deg, #100b1d 0%, #090711 100%);
  transition: transform 0.34s cubic-bezier(0.22, 0.8, 0.2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.46);
}
.mobile-panel.open {
  transform: translateX(0);
}
.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(680px, 100%);
  margin: 0 auto 34px;
}
.drawer-logo img {
  width: 132px;
}
.drawer-close {
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}
.drawer-nav {
  width: min(680px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 10px;
}
.drawer-nav a {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  min-height: 66px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}
.drawer-nav a::after {
  content: '›';
  color: var(--muted-2);
  font-size: 1.5rem;
}
.drawer-nav span {
  font-size: 1.15rem;
}
.drawer-nav b {
  font-size: 1rem;
}
.drawer-login {
  width: min(680px, 100%);
  margin: 22px auto 0;
}

main {
  overflow: hidden;
}
.page-hero {
  text-align: center;
}
.page-hero .container {
  max-width: 850px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid rgba(255, 207, 84, 0.28);
  border-radius: 999px;
  color: #ffe392;
  background: rgba(255, 207, 84, 0.08);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
h1 {
  margin: 20px 0 20px;
  font-size: clamp(2.7rem, 5.8vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
h2 {
  letter-spacing: -0.025em;
}
.gradient-text {
  background: linear-gradient(
    90deg,
    #fff1a9 0%,
    #ffb83b 34%,
    #ff61c8 67%,
    #63e4ff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  max-width: 760px;
  margin-inline: auto;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}
.hero-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0 48%,
    rgba(255, 255, 255, 0.025) 49%,
    transparent 50%
  );
  background-size: 22px 22px;
  opacity: 0.45;
}
.hero-copy {
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(190px, 1fr));
  max-width: 760px;
  margin: 30px auto 0;
}
.hero-buttons .gold-btn {
  width: 100%;
}

.content-panel,
.article-main,
.article-side,
.topics-latest {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(27, 20, 43, 0.82),
    rgba(13, 10, 23, 0.86)
  );
  box-shadow: var(--shadow-soft);
}
.content-panel h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.content-panel p {
  max-width: 900px;
  font-size: 1rem;
}
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  border: 1px solid rgba(255, 255, 255, 0.075);
}
.feature-item strong {
  display: block;
  margin-bottom: 9px;
  color: #ffe290;
}
.feature-item span {
  color: var(--muted);
  line-height: 1.55;
}

.home-latest-shell,
.home-recommend-shell {
  border: 1px solid var(--line);
  background: linear-gradient(
    145deg,
    rgba(27, 20, 43, 0.74),
    rgba(13, 10, 23, 0.82)
  );
  box-shadow: var(--shadow-soft);
}
.home-block-title,
.home-recommend-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home-block-title h2,
.home-recommend-title h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.home-block-line,
.home-recommend-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5px;
  width: 58px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--pink), var(--cyan));
}
.home-latest-panel,
.home-recommend-panel {
  border: 1px solid rgba(255, 255, 255, 0.065);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  transition: 0.22s ease;
}
.article-card img {
  width: 100%;
  object-fit: cover;
}
.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}
.card-body .tag {
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.card-body p {
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: auto;
  padding: 0 20px;
  border: 1px solid rgba(255, 229, 125, 0.62);
  border-radius: 10px;
  color: #241526;
  background: linear-gradient(
    135deg,
    #ffe57d 0%,
    var(--gold) 46%,
    var(--orange) 100%
  );
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}
.article-card:hover .read-more,
.article-card:focus-visible .read-more {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.04);
  box-shadow:
    0 14px 30px rgba(255, 151, 48, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}
.article-card:active .read-more {
  transform: translateY(0);
}
.card-date {
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  font-size: 0.8rem;
  font-weight: 650;
}

.topics-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 26px;
  align-items: start;
}
.topics-main {
  min-width: 0;
}
.topics-latest {
  position: sticky;
  top: 108px;
  padding: 22px;
}
.sidebar-title {
  margin: 0 0 18px;
  color: #ffe08b;
}
.latest-posts {
  display: grid;
  gap: 12px;
}
.latest-post-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: center;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.latest-post-item img {
  width: 78px;
  height: 58px;
  object-fit: cover;
  border-radius: 11px;
}
.latest-post-copy h4 {
  margin: 0 0 6px;
  color: #ffe39a;
  font-size: 0.88rem;
  line-height: 1.33;
}
.latest-post-copy span {
  color: var(--muted-2);
  font-size: 0.74rem;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 9px;
  flex-wrap: wrap;
}
.page-btn {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: #fff;
  background: rgba(255, 255, 255, 0.045);
}
.page-btn:hover,
.page-btn.active {
  color: #271329;
  background: linear-gradient(135deg, var(--gold), var(--orange));
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 26px;
  align-items: start;
}
.article-main h1 {
  max-width: 900px;
  font-size: clamp(2.5rem, 4.8vw, 4.4rem);
}
.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  color: var(--muted-2);
  font-size: 0.87rem;
}
.article-cover {
  width: 100%;
  margin: 30px 0 38px;
}
.article-main h2 {
  margin: 44px 0 14px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}
.article-main p,
.article-main li {
  font-size: 1.02rem;
}
.article-main ol {
  padding-left: 22px;
}
.article-side {
  position: sticky;
}
.article-side h3 {
  margin-bottom: 15px;
}
.toc a {
  display: block;
  padding: 12px 0;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}
.toc a:hover {
  color: #ffe08b;
}
.callout {
  margin: 30px 0;
  padding: 22px 24px;
  border: 1px solid rgba(138, 70, 255, 0.28);
  background: linear-gradient(
    135deg,
    rgba(138, 70, 255, 0.14),
    rgba(255, 93, 200, 0.08)
  );
}

.site-footer {
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
}
.footer-brand img {
  width: 130px;
  margin-bottom: 20px;
}
.footer-brand p {
  max-width: 350px;
  color: var(--muted);
  line-height: 1.72;
}
.footer-col h4 {
  margin-bottom: 15px;
  color: #ffe08b;
}
.footer-col a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.86rem;
}
.footer-badges {
  display: flex;
  gap: 8px;
}
.footer-badge {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

@media (max-width: 1120px) {
  .nav-links a {
    padding-inline: 8px;
    font-size: 0.8rem;
  }
  .navbar {
    grid-template-columns: 130px minmax(0, 1fr) auto;
    gap: 16px;
  }
}
@media (max-width: 920px) {
  .nav-links,
  .desktop-login {
    display: none;
  }
  .navbar {
    justify-content: space-between;
  }
  .topics-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }
  .topics-latest,
  .article-side {
    position: static;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .hero {
    padding-top: 24px;
  }
  .hero-shell {
    min-height: auto;
  }
  .hero-buttons {
    max-width: 420px;
  }
  .card-grid,
  .feature-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .article-mobile-toc {
    display: block;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.035);
  }
  .article-mobile-toc a {
    display: block;
    padding: 10px 0;
    color: var(--muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .article-side {
    display: none;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

[hidden] {
  display: none !important;
}

.mobile-partner-btn {
  display: none;
}
@media (max-width: 920px) {
  .mobile-partner-btn {
    font-weight: 800;
    color: #2c1732;
    background: linear-gradient(135deg, #ffe57d, #ffb13a);
    box-shadow: 0 8px 22px rgba(255, 170, 55, 0.25);
    margin-left: auto;
    margin-right: 14px;
  }
}

@media (max-width: 920px) {
  .site-header {
    min-height: 82px;
  }

  .navbar {
    min-height: 82px;
    display: grid;
    grid-template-columns: 118px minmax(118px, 1fr) 48px;
    align-items: center;
    gap: 12px;
  }

  .logo {
    width: 118px;
    min-width: 0;
  }

  .logo img {
    width: 106px;
    max-width: 100%;
  }

  .mobile-partner-btn {
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    align-self: center;
    width: min(100%, 168px);
    min-width: 0;
    height: 44px;
    margin: 0;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 0.86rem;
    line-height: 1;
    white-space: nowrap;
  }

  .menu-btn {
    display: grid;
    justify-self: end;
    width: 48px;
    height: 48px;
    margin: 0;
  }
}

@media (max-width: 700px) {

  .footer-col {
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .navbar {
    grid-template-columns: 92px minmax(102px, 1fr) 44px;
    gap: 8px;
  }

  .logo {
    width: 92px;
  }

  .logo img {
    width: 86px;
  }

  .mobile-partner-btn {
    width: min(100%, 132px);
    height: 40px;
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .menu-btn {
    width: 44px;
    height: 44px;
  }
}

@media (min-width: 921px) {
  .site-header .container {
    width: min(1420px, calc(100% - 40px));
  }

  .navbar {
    min-height: 88px;
    grid-template-columns: 130px minmax(0, 1fr) 168px;
    gap: 22px;
  }

  .logo {
    width: 130px;
  }

  .logo img {
    width: 114px;
    max-width: 100%;
  }

  .nav-links {
    min-width: 0;
    justify-content: center;
    gap: 4px;
  }

  .nav-links a {
    padding: 0 9px;
    font-size: 0.8rem;
  }

  .desktop-login {
    position: static;
    width: 168px;
    min-width: 168px;
    justify-self: end;
    margin: 0;
    padding: 0 16px;
    white-space: nowrap;
  }

  .hero {
    padding-top: 50px;
  }
}

@media (min-width: 921px) and (max-width: 1260px) {
  .site-header .container {
    width: min(1180px, calc(100% - 28px));
  }

  .navbar {
    grid-template-columns: 112px minmax(0, 1fr) 152px;
    gap: 12px;
  }

  .logo {
    width: 112px;
  }

  .logo img {
    width: 100px;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding: 0 6px;
    font-size: 0.72rem;
  }

  .desktop-login {
    width: 152px;
    min-width: 152px;
    padding: 0 10px;
    font-size: 0.82rem;
  }
}

@media (max-width: 700px) {
  .site-header {
    background: rgba(9, 7, 17, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .navbar {
    grid-template-columns: 92px minmax(0, 1fr) 44px;
  }

  .logo {
    min-width: 0;
  }

  .logo img {
    max-width: 100%;
    height: auto;
  }

  .mobile-partner-btn {
    position: static;
    justify-self: center;
    align-self: center;
    margin: 0;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 8px 22px rgba(255, 158, 49, 0.22);
  }

  .menu-btn {
    justify-self: end;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-btn span {
    width: 20px;
    height: 2px;
    margin: 3px auto;
  }
}

@media (max-width: 390px) {

  .navbar {
    grid-template-columns: 84px minmax(0, 1fr) 42px;
    gap: 8px;
    min-height: 68px;
  }

  .mobile-partner-btn {
    width: min(100%, 132px);
    border-radius: 13px;
  }

  .menu-btn {
    border-radius: 13px;
  }
}

@media (max-width: 700px) {
  .navbar {
    display: flex !important;
    justify-content: space-between;
  }
  .header-right,
  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
  }
  .mobile-partner-btn {
    order: 1;
    max-width: 128px;
  }
  .menu-btn {
    order: 2;
    margin-left: 0;
  }
}

html {
  background: var(--bg-deep);
}

body {
  color: var(--text);
  background: radial-gradient(
      circle at 4% -4%,
      rgba(141, 76, 255, 0.18),
      transparent 32rem
    ),
    radial-gradient(
      circle at 100% 8%,
      rgba(88, 220, 255, 0.08),
      transparent 27rem
    ),
    linear-gradient(180deg, #090713 0%, #0b0715 48%, #07060d 100%);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display',
    'SF Pro Text', 'Segoe UI', sans-serif;
  letter-spacing: -0.006em;
}

.container {
  width: min(var(--content), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 64px 0;
}

.site-header {
  background: rgba(8, 6, 15, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.navbar {
  min-height: 84px;
}

.nav-links a {
  color: #bfb7c8;
  font-weight: 720;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.login-btn,
.mobile-partner-btn,
.gold-btn,
.drawer-login {
  color: #27142c;
  background: linear-gradient(
    135deg,
    #ffe57f 0%,
    var(--gold) 38%,
    var(--orange) 100%
  );
  box-shadow: 0 10px 26px rgba(255, 151, 48, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero {
  padding: 44px 0 28px;
}

.hero-shell {
  min-height: 520px;
  padding: 72px 54px;
  border-radius: var(--radius-xl);
  border-color: rgba(255, 255, 255, 0.085);
  background: radial-gradient(
      circle at 83% 14%,
      rgba(255, 215, 106, 0.15),
      transparent 24rem
    ),
    radial-gradient(
      circle at 10% 12%,
      rgba(141, 76, 255, 0.24),
      transparent 28rem
    ),
    linear-gradient(145deg, rgba(29, 20, 49, 0.97), rgba(9, 7, 17, 0.97));
  box-shadow: var(--shadow-lg);
}

.hero-copy {
  max-width: 920px;
}

.hero h1 {
  margin: 20px 0 20px;
  line-height: 1;
  letter-spacing: -0.048em;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}

.hero-buttons {
  gap: 14px;
  margin-top: 30px;
}

.hero-buttons .gold-btn {
  min-height: 54px;
  border-radius: 17px;
  font-size: 1rem;
}

.content-panel,
.article-main,
.article-side,
.topics-latest,
.home-latest-shell,
.home-recommend-shell {
  border-color: var(--line);
  background: linear-gradient(
    145deg,
    rgba(28, 20, 44, 0.82),
    rgba(12, 9, 22, 0.88)
  );
  box-shadow: var(--shadow-md);
}

.content-panel {
  padding: 44px;
  border-radius: var(--radius-xl);
}

.content-panel h2 {
  margin: 16px 0 18px;
  line-height: 1.12;
}

.content-panel p {
  color: var(--muted);
  line-height: 1.82;
}

.feature-row {
  gap: 16px;
  margin-top: 30px;
}

.feature-item {
  min-height: 136px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.032);
}

.home-latest-section {
  padding-bottom: 18px;
}

.home-recommend-section {
  padding-top: 18px;
}

.home-latest-shell,
.home-recommend-shell {
  padding: 32px;
  border-radius: var(--radius-xl);
}

.home-latest-panel,
.home-recommend-panel {
  padding: 20px;
  border-radius: 24px;
  background: rgba(4, 3, 9, 0.3);
}

.home-block-title,
.home-recommend-title {
  min-height: 66px;
  margin-bottom: 18px;
}

.card-grid {
  gap: 20px;
}

.article-card {
  border-radius: 22px;
  background: linear-gradient(180deg, #181322 0%, #0b0911 100%);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.19);
}

.article-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 106, 0.3);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.article-card img {
  aspect-ratio: 16/9;
}

.card-body {
  padding: 22px;
}

.card-body h3 {
  margin: 10px 0 12px;
  color: #ffe5a1;
  font-size: 1.2rem;
  line-height: 1.4;
}

.card-body p {
  color: var(--muted);
  line-height: 1.65;
}

.card-date {
  color: var(--muted-2);
}

.page-hero {
  padding: 70px 0 28px;
}

.page-hero h1 {
  margin-bottom: 18px;
}

.topics-layout,
.article-layout {
  gap: 26px;
}

.topics-latest,
.article-side {
  padding: 23px;
  border-radius: 24px;
}

.latest-post-item {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.032);
}

.article-main {
  padding: 44px;
  border-radius: var(--radius-xl);
}

.article-main h1 {
  line-height: 1.04;
}

.article-main p,
.article-main li {
  color: var(--muted);
  line-height: 1.9;
}

.article-cover {
  border-radius: 22px;
}

.callout {
  border-radius: 19px;
}

.pagination {
  margin-top: 34px;
}

.page-btn {
  border-radius: 14px;
}

.site-footer {
  margin-top: 72px;
  background: rgba(5, 4, 10, 0.78);
}

.footer-grid {
  gap: 38px;
  padding: 52px 0 38px;
}

.footer-brand p,
.footer-col a {
  color: var(--muted);
}

.footer-bottom {
  color: var(--muted-2);
}

@media (max-width: 920px) {
  .container {
    width: min(var(--content), calc(100% - 28px));
  }

  .section {
    padding: 54px 0;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-shell {
    min-height: auto;
    padding: 58px 30px;
  }

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

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

@media (max-width: 700px) {
  .container {
    width: calc(100% - 24px);
  }

  .site-header {
    min-height: 68px;
  }

  .site-header .container {
    width: calc(100% - 20px);
  }

  .navbar {
    min-height: 68px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo {
    flex: 0 0 auto;
    width: 92px;
  }

  .logo img {
    width: 88px;
  }

  .mobile-partner-btn {
    width: auto;
    min-width: 0;
    height: 38px;
    margin-left: auto;
    padding: 0 12px;
    border-radius: 13px;
    font-size: 0.74rem;
    white-space: nowrap;
  }

  .menu-btn {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    margin: 0;
    border-radius: 13px;
  }

  .hero {
    padding: 22px 0 18px;
  }

  .hero-shell {
    padding: 48px 24px;
    border-radius: 26px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.65rem);
    line-height: 1.02;
  }

  .lead {
    font-size: 1rem;
    line-height: 1.72;
  }

  .hero-buttons {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 26px;
  }

  .hero-buttons .gold-btn {
    min-height: 54px;
    border-radius: 16px;
  }

  .section {
    padding: 46px 0;
  }

  .content-panel,
  .article-main {
    padding: 24px;
    border-radius: 24px;
  }

  .content-panel h2 {
    font-size: 2rem;
  }

  .home-latest-shell,
  .home-recommend-shell {
    padding: 16px;
    border-radius: 24px;
  }

  .home-latest-panel,
  .home-recommend-panel {
    padding: 11px;
    border-radius: 18px;
  }

  .home-block-title,
  .home-recommend-title {
    min-height: 56px;
  }

  .home-block-title h2,
  .home-recommend-title h2 {
    font-size: 1.65rem;
  }

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

  .article-card {
    border-radius: 20px;
  }

  .card-body {
    padding: 20px;
  }

  .page-hero {
    padding: 52px 0 22px;
  }

  .page-hero h1 {
    font-size: 2.6rem;
  }

  .topics-latest {
    padding: 20px;
  }

  .article-main h1 {
    font-size: 2.55rem;
  }

  .article-cover {
    margin: 26px 0 32px;
    border-radius: 18px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 18px;
    padding: 44px 0 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding-bottom: 24px;
  }
}

@media (max-width: 390px) {
  .site-header .container {
    width: calc(100% - 16px);
  }

  .logo {
    width: 84px;
  }

  .logo img {
    width: 80px;
  }

  .mobile-partner-btn {
    height: 36px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .menu-btn {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
  }

  .hero-shell {
    padding: 44px 20px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }

  .footer-grid {
    gap: 24px 14px;
  }
}

.article-content .content-link {
  color: inherit;
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 77, 148, 0.55);
  transition: color .2s ease, text-decoration-color .2s ease;
}

.article-content .content-link:hover,
.article-content .content-link:focus-visible {
  color: #ff4d94;
  text-decoration-color: currentColor;
}

.footer-responsible,
.footer-disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  padding-bottom: 22px;
}

.footer-responsible h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.footer-responsible p,
.footer-disclaimer p {
  margin: 0;
  max-width: 980px;
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.78;
}

.footer-disclaimer {
  padding-top: 18px;
  padding-bottom: 28px;
}

.footer-disclaimer p {
  font-size: 0.82rem;
}

.login-btn,
.mobile-partner-btn,
.drawer-login {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  animation: partnerGlow 2.4s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.login-btn::after,
.mobile-partner-btn::after,
.drawer-login::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -35%;
  left: -75%;
  width: 42%;
  height: 170%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.72),
    transparent
  );
  transform: skewX(-22deg);
  animation: partnerShine 3.1s ease-in-out infinite;
}

.login-btn:hover,
.mobile-partner-btn:hover,
.drawer-login:hover {
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 0 18px rgba(255, 199, 76, 0.62),
    0 0 42px rgba(255, 143, 34, 0.34),
    0 12px 30px rgba(255, 151, 48, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

@keyframes partnerGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(255, 199, 76, 0.28),
      0 0 22px rgba(255, 143, 34, 0.16),
      0 10px 26px rgba(255, 151, 48, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 211, 104, 0.68),
      0 0 46px rgba(255, 143, 34, 0.38),
      0 13px 34px rgba(255, 151, 48, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.82);
  }
}

@keyframes partnerShine {
  0%, 18% { left: -75%; }
  58%, 100% { left: 135%; }
}

@media (prefers-reduced-motion: reduce) {
  .login-btn,
  .mobile-partner-btn,
  .drawer-login,
  .login-btn::after,
  .mobile-partner-btn::after,
  .drawer-login::after {
    animation: none;
  }
}

.article-mobile-toc {
  display: block;
  margin: 30px 0 34px;
  padding: 28px;
  border: 1px solid rgba(255, 215, 106, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0, rgba(88, 220, 255, 0.08), transparent 18rem),
    linear-gradient(145deg, rgba(34, 25, 52, 0.94), rgba(13, 10, 23, 0.94));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}
.article-toc-heading {
  max-width: 760px;
  margin-bottom: 20px;
}
.article-toc-label {
  display: inline-block;
  margin-bottom: 8px;
  color: #ffcf65;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.article-toc-heading h3 {
  margin: 0 0 8px;
  font-size: 1.55rem;
}
.article-toc-heading p,
.article-side p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.article-toc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.article-toc-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 15px;
  color: #d7d0df;
  background: rgba(255,255,255,.035);
  font-size: .91rem;
  font-weight: 700;
  line-height: 1.35;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.article-toc-grid a span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 10px;
  color: #2b1630;
  background: linear-gradient(135deg, #ffe57f, #ffad36);
  font-size: .72rem;
  font-weight: 900;
}
.article-toc-grid a:hover,
.article-toc-grid a:focus-visible {
  transform: translateY(-2px);
  color: #fff;
  border-color: rgba(255, 215, 106, .28);
  background: rgba(255, 215, 106, .065);
}
.article-content h2 {
  scroll-margin-top: 110px;
}
.article-content h3 {
  margin: 26px 0 10px;
  color: #ffe5a1;
  font-size: 1.22rem;
}
.article-content ul,
.article-content ol {
  margin: 12px 0 22px;
}
.article-content li + li {
  margin-top: 7px;
}
.related-guides {
  margin: 34px 0;
  padding: 26px;
  border: 1px solid rgba(88, 220, 255, .18);
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(88,220,255,.07), rgba(141,76,255,.08));
}
.related-guides h2 {
  margin-top: 0;
}
.related-guides ul {
  margin-bottom: 0;
}
.side-guide-card .gold-btn {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
.side-text-link {
  display: block;
  margin-top: 17px;
  color: #ffd76a;
  font-weight: 800;
  text-align: center;
}
@media (max-width: 700px) {
  .article-mobile-toc {
    margin: 24px 0 28px;
    padding: 20px;
    border-radius: 20px;
  }
  .article-toc-heading h3 { font-size: 1.35rem; }
  .article-toc-grid { grid-template-columns: 1fr; gap: 8px; }
  .article-toc-grid a { min-height: 50px; padding: 10px 12px; }
}

.article-content strong {
  color: #ffd86f;
  font-weight: 850;
  text-shadow: 0 0 18px rgba(255, 196, 72, .12);
}
.article-content strong a { color: inherit; }
.latest-post-topic {
  display: block;
  margin-bottom: 5px;
  color: var(--pink) !important;
  font-size: .69rem !important;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.article-side {
  display: grid;
  gap: 22px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.article-latest-panel,
.article-related-panel {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: linear-gradient(160deg, rgba(38,22,45,.95), rgba(20,13,27,.96));
  box-shadow: 0 20px 45px rgba(0,0,0,.22);
}
.panel-heading { margin-bottom: 17px; }
.panel-heading .eyebrow { margin-bottom: 7px; }
.panel-heading h2 {
  margin: 0;
  font-size: 1.35rem;
}
.article-latest-posts { display: grid; gap: 10px; }
.article-side .latest-post-item {
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: rgba(255,255,255,.025);
}
.article-side .latest-post-item:hover {
  border-color: rgba(255,216,111,.18);
  background: rgba(255,216,111,.055);
}
.article-side .latest-post-item img {
  width: 82px;
  height: 68px;
  border-radius: 12px;
  object-fit: cover;
}
.article-side .latest-post-copy h4 {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: .9rem;
  line-height: 1.38;
}
.article-related-list { display: grid; gap: 14px; }
.article-related-card {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 18px;
  background: rgba(255,255,255,.026);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.article-related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255,216,111,.23);
  background: rgba(255,216,111,.045);
}
.article-related-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.article-related-copy { padding: 16px; }
.article-related-copy h3 {
  margin: 7px 0 8px;
  color: #fff;
  font-size: 1rem;
  line-height: 1.4;
}
.article-related-copy p {
  display: -webkit-box;
  overflow: hidden;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.article-related-copy .card-date { font-size: .74rem; }
.article-side.auto-posts-unavailable { display: none; }

@media (max-width: 920px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-side {
    display: flex;
    flex-direction: column;
    position: static;
    margin-top: 0;
  }
  .article-related-panel { order: 1; }
  .article-latest-panel { order: 2; }
  .article-latest-panel,
  .article-related-panel { padding: 22px; }
  .article-side .latest-posts { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 620px) {
  .article-main { padding: 24px 18px; }
  .article-side .latest-posts { grid-template-columns: 1fr; }
  .article-latest-panel,
  .article-related-panel { padding: 18px; border-radius: 20px; }
  .article-related-card { display: grid; grid-template-columns: 112px minmax(0,1fr); }
  .article-related-card img { height: 100%; min-height: 150px; aspect-ratio: auto; }
  .article-related-copy { padding: 14px; }
  .article-related-copy p { -webkit-line-clamp: 2; }
}

@media (max-width:768px){
footer, .footer, .site-footer{ text-align:center!important;}
footer .footer-column, footer .footer-links, footer .footer-content,
.footer-column,.footer-links,.footer-content{
text-align:center!important;
}
.footer-links{
display:flex!important;
flex-direction:column!important;
align-items:center!important;
gap:32px!important;
}
.footer-column{width:100%!important;}
.footer-column ul{padding-left:0!important;list-style:none!important;}
.footer-column li{margin:12px 0!important;}
.footer-column a{display:flex!important;justify-content:center!important;text-align:center!important;}
}

@media (max-width: 768px) {
  .site-footer .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: min(100% - 28px, 1180px) !important;
    margin-inline: auto !important;
    padding: 42px 0 34px !important;
    text-align: center !important;
  }

  .site-footer .footer-brand,
  .site-footer .footer-col,
  .site-footer .footer-col:last-child {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: none !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  .site-footer .footer-brand img {
    display: block !important;
    margin: 0 auto 20px !important;
  }

  .site-footer .footer-brand p {
    max-width: 620px !important;
    margin: 0 auto 18px !important;
    text-align: center !important;
  }

  .site-footer .footer-col h4 {
    text-align: center !important;
  }

  .site-footer .footer-col a {
    display: block !important;
    width: 100% !important;
    margin-inline: auto !important;
    padding: 8px 10px !important;
    text-align: center !important;
    overflow-wrap: anywhere !important;
  }

  .site-footer .footer-responsible,
  .site-footer .footer-disclaimer {
    width: min(100% - 28px, 1180px) !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  .site-footer .footer-bottom {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: min(100% - 28px, 1180px) !important;
    margin-inline: auto !important;
    padding: 20px 0 28px !important;
    text-align: center !important;
  }

  .site-footer .footer-bottom > span {
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .site-footer .footer-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin-top: 4px !important;
  }
}

.site-footer .footer-grid {
  align-items: start;
}
.site-footer .footer-accordion {
  overflow: hidden;
  border: 1px solid rgba(255, 213, 106, .18);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(30, 16, 52, .96), rgba(8, 6, 14, .98));
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
}
.site-footer .footer-accordion-toggle {
  border: 0;
  border-bottom: 1px solid transparent;
  background: linear-gradient(135deg, rgba(72, 30, 105, .92), rgba(34, 17, 68, .96));
  color: #ffe08b;
  font: inherit;
  font-size: 1.04rem;
  font-weight: 800;
  cursor: pointer;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-footer .footer-accordion-toggle:hover,
.site-footer .footer-accordion-toggle:focus-visible {
  background: linear-gradient(135deg, rgba(94, 42, 130, .98), rgba(45, 22, 86, .98));
  box-shadow: inset 0 0 24px rgba(255, 199, 76, .08);
  outline: none;
}
.site-footer .footer-accordion.is-open .footer-accordion-toggle {
  border-bottom-color: rgba(255, 213, 106, .13);
}
.site-footer .footer-accordion-icon {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  color: #ffb842;
  font-size: 1rem;
}
.site-footer .footer-accordion-chevron {
  width: 12px;
  height: 12px;
  margin-left: 16px;
  border-right: 3px solid #55cfff;
  border-bottom: 3px solid #55cfff;
  transition: transform .28s ease;
}
.site-footer .footer-accordion-content{
  max-height:500px;
  overflow:hidden;
  padding:14px 18px 18px;
  opacity:1;
  transition:max-height .35s ease,padding .35s ease,opacity .25s ease;
}
.site-footer .footer-accordion:not(.is-open) .footer-accordion-content{
  max-height:0;
  overflow:hidden;
  padding-top:0;
  padding-bottom:0;
  opacity:0;
}
.site-footer .footer-accordion-content > a {
  min-width: 0;
}
.site-footer .footer-accordion-content a {
  display: block;
  margin: 0;
  padding: 9px 6px;
  color: var(--muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
  transition: color .2s ease, transform .2s ease;
}
.site-footer .footer-accordion-content a:hover {
  color: #ffe08b;
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .site-footer .footer-grid {
    gap: 18px !important;
  }
  .site-footer .footer-accordion {
    width: 100% !important;
    text-align: left !important;
  }
  .site-footer .footer-accordion-content {
    padding: 12px 14px 16px;
  }
  .site-footer .footer-accordion-content a {
    display: block !important;
    width: 100% !important;
    padding: 10px 8px !important;
    text-align: center !important;
    transform: none !important;
  }
}

.footer-accordion-content{overflow:hidden;max-height:800px;transition:max-height .35s ease,padding .35s ease;}

html { scroll-behavior: smooth; }
body { overflow-x: clip; }
img { max-width: 100%; height: auto; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible {
  outline: 3px solid rgba(255, 216, 111, .9);
  outline-offset: 3px;
}
.article-card-unavailable {
  cursor: default;
  user-select: text;
}
.article-card-unavailable:hover {
  transform: none;
  box-shadow: inherit;
}
.article-card-unavailable .read-more {
  color: #241526;
  background: linear-gradient(
    135deg,
    #ffe57d 0%,
    var(--gold) 46%,
    var(--orange) 100%
  );
}
.page-btn[hidden] { display: none !important; }
.page-btn:disabled { cursor: not-allowed; opacity: .45; }
.article-content h2,
.article-content h3 { scroll-margin-top: 110px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

.site-footer .footer-accordion-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 66px;
  padding: 16px 54px 16px 20px;
  text-align: center !important;
}

.site-footer .footer-accordion-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  margin: 0;
  text-align: center;
  line-height: 1.35;
}

.site-footer .footer-accordion-chevron {
  position: absolute;
  top: 50%;
  right: 20px;
  flex: 0 0 auto;
  margin: 0;
  transform: translateY(-50%) rotate(45deg);
}

.site-footer .footer-accordion.is-open .footer-accordion-chevron {
  transform: translateY(-50%) rotate(225deg);
}

@media (max-width: 768px) {
  .site-footer .footer-accordion-toggle {
    min-height: 60px;
    padding: 14px 50px 14px 16px;
    text-align: center !important;
  }

  .site-footer .footer-accordion-chevron {
    right: 17px;
  }
}
/* OPTIMIZED_SITE_VISUALS_2026 */
:root{
  --content-max: 1180px;
  --article-reading-width: 780px;
  --surface-soft: rgba(255,255,255,.055);
  --surface-strong: rgba(255,255,255,.085);
  --line-soft: rgba(255,255,255,.11);
  --shadow-soft: 0 18px 48px rgba(0,0,0,.22);
}
html{scroll-behavior:smooth}
body{text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased}
img{height:auto}
.container{width:min(var(--content-max),calc(100% - 32px))}
.page-hero-enhanced{
  position:relative;
  overflow:hidden;
  padding:clamp(68px,8vw,112px) 0 clamp(58px,7vw,92px);
  isolation:isolate;
}
.page-hero-enhanced::before,
.page-hero-enhanced::after{
  content:"";
  position:absolute;
  border-radius:999px;
  pointer-events:none;
  z-index:-1;
  filter:blur(2px);
}
.page-hero-enhanced::before{
  width:420px;height:420px;right:-150px;top:-190px;
  background:radial-gradient(circle,rgba(255,203,72,.18),transparent 68%);
}
.page-hero-enhanced::after{
  width:520px;height:520px;left:-250px;bottom:-350px;
  background:radial-gradient(circle,rgba(125,89,255,.18),transparent 70%);
}
.page-hero-shell{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(190px,300px);
  align-items:center;
  gap:clamp(32px,7vw,88px);
  padding:clamp(26px,4vw,48px);
  border:1px solid var(--line-soft);
  border-radius:30px;
  background:linear-gradient(145deg,rgba(255,255,255,.085),rgba(255,255,255,.025));
  box-shadow:var(--shadow-soft);
  backdrop-filter:blur(16px);
}
.page-hero-copy{max-width:760px}
.page-hero-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:16px;
  padding:8px 13px;
  border:1px solid rgba(255,203,72,.28);
  border-radius:999px;
  background:rgba(255,203,72,.08);
  color:#ffe09a;
  font-size:.76rem;
  font-weight:800;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.page-hero-enhanced h1{
  margin:0;
  max-width:820px;
  font-size:clamp(2.1rem,5vw,4.35rem);
  line-height:1.04;
  letter-spacing:-.045em;
}
.page-hero-enhanced .lead{
  max-width:760px;
  margin:20px 0 0;
  font-size:clamp(1rem,1.7vw,1.18rem);
  line-height:1.78;
}
.page-hero-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}
.page-hero-points span{
  position:relative;
  padding:9px 13px 9px 30px;
  border:1px solid var(--line-soft);
  border-radius:999px;
  background:rgba(9,12,25,.34);
  color:rgba(255,255,255,.82);
  font-size:.85rem;
  font-weight:700;
}
.page-hero-points span::before{
  content:"✓";
  position:absolute;
  left:11px;
  color:#ffd166;
}
.page-hero-visual{
  display:grid;
  place-items:center;
  min-height:220px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:28px;
  background:
    linear-gradient(145deg,rgba(255,203,72,.13),rgba(123,92,255,.12)),
    rgba(255,255,255,.035);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.12);
}
.page-hero-icon{
  display:grid;
  place-items:center;
  width:132px;height:132px;
  border-radius:32px;
  background:linear-gradient(145deg,rgba(255,255,255,.15),rgba(255,255,255,.04));
  box-shadow:0 20px 45px rgba(0,0,0,.22);
  font-size:4.6rem;
  transform:rotate(-3deg);
}
.article-main{
  min-width:0;
}
.article-main > h1{
  max-width:900px;
  line-height:1.1;
  letter-spacing:-.035em;
}
.article-cover{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  border:1px solid var(--line-soft);
  border-radius:24px;
  box-shadow:var(--shadow-soft);
}
.article-content,
.content-panel{
  font-size:1.03rem;
  line-height:1.82;
}
.article-content p,
.content-panel p{
  margin:0 0 1.22em;
}
.article-content h2,
.content-panel h2{
  margin:2.25em 0 .7em;
  padding-top:.15em;
  font-size:clamp(1.42rem,2.5vw,2rem);
  line-height:1.25;
  letter-spacing:-.025em;
}
.article-content h2::before,
.content-panel h2::before{
  content:"";
  display:block;
  width:54px;height:4px;
  margin-bottom:14px;
  border-radius:99px;
  background:linear-gradient(90deg,#ffd166,#9a7cff);
}
.article-content h3,
.content-panel h3{
  margin:1.7em 0 .55em;
  line-height:1.35;
}
.article-content ul,
.article-content ol,
.content-panel ul,
.content-panel ol{
  margin:1rem 0 1.4rem;
  padding-left:1.35rem;
}
.article-content li,
.content-panel li{margin:.48rem 0;padding-left:.18rem}
.article-content blockquote,
.content-panel blockquote{
  margin:1.6rem 0;
  padding:18px 20px;
  border-left:4px solid #ffd166;
  border-radius:0 16px 16px 0;
  background:var(--surface-soft);
}
.article-content table,
.content-panel table{
  display:block;
  width:100%;
  overflow-x:auto;
  border-collapse:collapse;
  margin:1.5rem 0 2rem;
  border-radius:16px;
  background:rgba(255,255,255,.025);
}
.article-content th,.article-content td,
.content-panel th,.content-panel td{
  min-width:190px;
  padding:14px 16px;
  border:1px solid var(--line-soft);
  text-align:left;
  vertical-align:top;
}
.article-content th,.content-panel th{
  background:rgba(255,203,72,.09);
  color:#ffe4a7;
}
.article-content code,
.content-panel code{
  padding:.15em .42em;
  border:1px solid rgba(255,255,255,.1);
  border-radius:6px;
  background:rgba(0,0,0,.24);
  font-size:.9em;
}
.article-card{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  border:1px solid rgba(255,215,106,.24);
  background:linear-gradient(180deg,#21182f 0%,#100c18 100%);
  box-shadow:
    0 18px 42px rgba(0,0,0,.42),
    0 0 0 1px rgba(255,255,255,.035),
    0 0 24px rgba(141,76,255,.08),
    inset 0 1px 0 rgba(255,255,255,.07);
  cursor:pointer;
  transition:
    transform .22s ease,
    border-color .22s ease,
    box-shadow .22s ease,
    filter .22s ease;
}
.article-card::before{
  content:"";
  position:absolute;
  z-index:2;
  top:0;
  right:0;
  left:0;
  height:3px;
  background:linear-gradient(90deg,var(--gold),var(--pink),var(--purple));
  opacity:.72;
  pointer-events:none;
  transition:opacity .22s ease,filter .22s ease;
}
.article-card:hover,
.article-card:focus-visible{
  transform:translateY(-6px);
  border-color:rgba(255,215,106,.62);
  filter:brightness(1.035);
  box-shadow:
    0 26px 58px rgba(0,0,0,.52),
    0 0 0 1px rgba(255,215,106,.11),
    0 0 34px rgba(141,76,255,.18),
    inset 0 1px 0 rgba(255,255,255,.1);
}
.article-card:hover::before,
.article-card:focus-visible::before{
  opacity:1;
  filter:brightness(1.12);
}
.article-card:active{
  transform:translateY(-2px);
}
.article-card img{
  aspect-ratio:16/9;
  object-fit:cover;
  transition:transform .32s ease,filter .32s ease;
}
.article-card:hover img,
.article-card:focus-visible img{
  transform:scale(1.025);
  filter:saturate(1.06) brightness(1.04);
}
.card-body{padding:22px}
.card-body h3{line-height:1.32}
.latest-post-item img{object-fit:cover}
@media (max-width:820px){
  .page-hero-shell{grid-template-columns:1fr;padding:24px;border-radius:24px}
  .page-hero-visual{min-height:150px}
  .page-hero-icon{width:96px;height:96px;border-radius:25px;font-size:3.3rem}
}
@media (max-width:560px){
  .container{width:min(100% - 22px,var(--content-max))}
  .page-hero-enhanced{padding:42px 0 36px}
  .page-hero-shell{padding:20px}
  .page-hero-points{display:grid}
  .page-hero-points span{width:100%}
  .article-content,.content-panel{font-size:1rem;line-height:1.75}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
}
/* Underline contextual internal links without changing navigation or buttons */
.article-content a[href]:not([href^="#"]):not([href^="http://"]):not([href^="https://"]):not([href^="mailto:"]):not([href^="tel:"]),
.article-content a[href="https://pussy888-singapore.com/"],
.hero-copy .lead a[href]:not([href^="#"]):not([href^="http://"]):not([href^="https://"]) {
  text-decoration: underline !important;
  text-decoration-thickness: 1.5px !important;
  text-underline-offset: 3px;
  text-decoration-color: currentColor;
  text-decoration-skip-ink: auto;
}

/* Persistent, swipe-dismissable iOS-style official partner notification */
.ios-partner-notification {
  --ios-swipe-y: 0px;
  --ios-swipe-opacity: 1;
  --ios-swipe-scale: 1;
  position: fixed;
  z-index: 10000;
  top: max(10px, env(safe-area-inset-top));
  left: 50%;
  width: min(412px, calc(100% - 20px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(180deg, rgba(50, 50, 54, 0.91), rgba(31, 31, 34, 0.91));
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  backdrop-filter: saturate(180%) blur(24px);
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.42),
    0 2px 8px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
  opacity: 0;
  transform: translate(-50%, calc(-100% - 28px)) scale(0.98);
  pointer-events: none;
  cursor: grab;
  touch-action: pan-x;
  -webkit-user-select: none;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Text",
    "SF Pro Display",
    "Helvetica Neue",
    Arial,
    sans-serif;
  will-change: transform, opacity;
}

.ios-partner-notification.is-visible {
  pointer-events: auto;
}

.ios-partner-notification.is-visible:not(.has-entered):not(.is-dragging):not(.is-snapping-back) {
  animation: ios-partner-notification-drop 0.64s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.ios-partner-notification.is-visible.has-entered {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.ios-partner-notification.is-visible.is-dragging,
.ios-partner-notification.is-visible.is-snapping-back {
  animation: none;
  opacity: var(--ios-swipe-opacity);
  transform: translate(-50%, var(--ios-swipe-y)) scale(var(--ios-swipe-scale));
}

.ios-partner-notification.is-visible.is-dragging {
  cursor: grabbing;
}

.ios-partner-notification.is-visible.is-snapping-back {
  transition:
    transform 0.36s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease;
}

.ios-partner-notification.is-closing {
  animation: ios-partner-notification-close 0.26s ease-in both;
  pointer-events: none;
}

.ios-partner-notification__link {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-height: 96px;
  padding: 12px 42px 12px 12px;
  color: #fff;
  transition: background-color 0.2s ease;
}

.ios-partner-notification__link:hover {
  background: rgba(255, 255, 255, 0.03);
}

.ios-partner-notification__link:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(10, 132, 255, 0.8);
}

.ios-partner-notification__logo-frame {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  overflow: hidden;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  background: #fff;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.ios-partner-notification__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ios-partner-notification__copy {
  min-width: 0;
}

.ios-partner-notification__eyebrow {
  display: block;
  margin-bottom: 3px;
  color: rgba(235, 235, 245, 0.62);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.ios-partner-notification__title {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.97);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.008em;
  line-height: 1.22;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ios-partner-notification__text {
  display: -webkit-box;
  overflow: hidden;
  margin: 3px 0 5px;
  color: rgba(235, 235, 245, 0.78);
  font-size: 0.77rem;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.ios-partner-notification__cta {
  display: inline-flex;
  align-items: center;
  color: #64aaff;
  font-size: 0.73rem;
  font-weight: 650;
  letter-spacing: -0.005em;
  line-height: 1.15;
  transition: color 0.2s ease, transform 0.2s ease;
}

.ios-partner-notification__link:hover .ios-partner-notification__cta,
.ios-partner-notification__link:focus-visible .ios-partner-notification__cta {
  color: #82bcff;
  transform: translateX(2px);
}

.ios-partner-notification__close {
  position: absolute;
  z-index: 4;
  top: 9px;
  right: 9px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: rgba(235, 235, 245, 0.72);
  background: rgba(118, 118, 128, 0.26);
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.ios-partner-notification__close:hover,
.ios-partner-notification__close:focus-visible {
  color: #fff;
  background: rgba(118, 118, 128, 0.46);
  outline: none;
  transform: scale(1.05);
}

@keyframes ios-partner-notification-drop {
  0% {
    opacity: 0;
    transform: translate(-50%, calc(-100% - 28px)) scale(0.98);
  }
  68% {
    opacity: 1;
    transform: translate(-50%, 6px) scale(1.004);
  }
  84% {
    opacity: 1;
    transform: translate(-50%, -2px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes ios-partner-notification-close {
  from {
    opacity: var(--ios-swipe-opacity, 1);
    transform: translate(-50%, var(--ios-swipe-y, 0px)) scale(var(--ios-swipe-scale, 1));
  }
  to {
    opacity: 0;
    transform: translate(-50%, calc(-100% - 22px)) scale(0.98);
  }
}

@media (max-width: 560px) {
  .ios-partner-notification {
    top: max(7px, env(safe-area-inset-top));
    width: calc(100% - 14px);
    border-radius: 19px;
  }

  .ios-partner-notification__link {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    min-height: 90px;
    padding: 11px 38px 11px 11px;
  }

  .ios-partner-notification__logo-frame {
    width: 48px;
    height: 48px;
    padding: 5px;
    border-radius: 12px;
  }

  .ios-partner-notification__title {
    font-size: 0.9rem;
  }

  .ios-partner-notification__text {
    margin: 2px 0 4px;
    font-size: 0.72rem;
    -webkit-line-clamp: 1;
  }

  .ios-partner-notification__cta {
    font-size: 0.69rem;
  }

  .ios-partner-notification__close {
    top: 8px;
    right: 8px;
    width: 25px;
    height: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ios-partner-notification.is-visible:not(.is-dragging):not(.is-snapping-back) {
    animation: none;
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .ios-partner-notification.is-visible.is-snapping-back {
    transition: none;
  }

  .ios-partner-notification.is-closing {
    animation: none;
    opacity: 0;
    transform: translate(-50%, calc(-100% - 22px));
  }
}
