:root {
  --primary: #2d2aa6;
  --primary-dark: #221f83;
  --accent: #d6a742;
  --text: #1f2430;
  --muted: #60687a;
  --border: #e7eaf2;
  --bg: #f6f7fb;
  --bg-alt: #eef1f8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(20, 24, 39, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.25; }
h1 { font-size: clamp(2.25rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.8vw, 2.6rem); }
h3 { font-size: 1.2rem; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.section-space { padding: 92px 0; }
.section-space-sm { padding: 26px 0 30px; }
.alt-bg { background: var(--bg-alt); }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px; overflow: hidden;
  clip: rect(1px,1px,1px,1px); white-space: nowrap;
}

.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(246,247,251,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(231,234,242,0.8);
}
.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.site-title { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.site-logo img { max-height: 60px; width: auto; }
.primary-nav ul,
.site-footer ul,
.menu-fallback { list-style: none; margin: 0; padding: 0; }
.primary-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  font-weight: 700;
}
.primary-nav a { color: var(--text); transition: color .2s ease; }
.primary-nav a:hover, .primary-nav .current-menu-item > a { color: var(--primary); }
.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  width: 48px; height: 48px;
  padding: 10px;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--text); margin: 6px 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(34, 31, 131, 0.16); }
.button-primary { background: var(--primary); color: var(--smart-banner-text, var(--white)); }
.button-primary:hover { background: var(--primary-dark); }
.button-secondary,
.button-outline { background: transparent; color: var(--primary); border-color: rgba(45,42,166,0.18); }
.button-secondary:hover,
.button-outline:hover { background: rgba(45,42,166,0.06); }
.button-light { background: var(--white); color: var(--primary-dark); }
.button-light:hover { background: #f4f5ff; }
.button-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.button-ghost:hover { background: rgba(255,255,255,0.08); }
.small-button { min-height: 42px; padding: 0 18px; }

.hero-grid,
.split-grid,
.content-grid,
.footer-grid {
  display: grid;
  gap: 34px;
}
.hero-grid, .split-grid { grid-template-columns: 1.1fr .9fr; align-items: center; }
.hero-section { position: relative; overflow: hidden; }
.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .17;
  pointer-events: none;
}
.hero-section::before { width: 320px; height: 320px; background: var(--accent); top: -90px; right: -60px; }
.hero-section::after { width: 360px; height: 360px; background: var(--primary); bottom: -120px; left: -80px; }
.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--primary);
  font-weight: 800;
  font-size: .95rem;
}
.hero-text { color: var(--muted); font-size: 1.1rem; max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-actions.centered { justify-content: center; }
.trust-line { margin-top: 20px; color: var(--muted); font-weight: 700; }

.logged-in-smart-banner {
  margin-top: 20px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--smart-banner-border, rgba(45,42,166,0.14));
  background: linear-gradient(135deg, var(--smart-banner-bg-start, rgba(17,23,55,0.96)), var(--smart-banner-bg-end, rgba(45,42,166,0.94)));
  box-shadow: 0 20px 44px rgba(17, 23, 55, 0.18);
  color: var(--smart-banner-text, var(--white));
  display: grid;
  grid-template-columns: minmax(0,1.2fr) minmax(260px,.8fr);
  gap: 18px;
  align-items: center;
}
.logged-in-smart-banner.variant-wallet {
  --smart-banner-bg-start: rgba(10,16,44,0.98);
  --smart-banner-bg-end: rgba(31,52,142,0.95);
}
.logged-in-smart-banner.variant-member {
  --smart-banner-bg-start: rgba(24,19,60,0.98);
  --smart-banner-bg-end: rgba(61,44,153,0.95);
}
.smart-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--smart-banner-eyebrow-bg, rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--smart-banner-eyebrow-text, #f7d777);
  font-size: .85rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.smart-banner-copy h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
}
.smart-banner-copy p {
  color: color-mix(in srgb, var(--smart-banner-text, #ffffff) 86%, transparent);
  margin-bottom: 0;
}
.smart-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
.smart-banner-actions .button-primary {
  background: var(--smart-banner-primary-bg, #ffffff);
  color: var(--smart-banner-primary-text, #171c2f);
}
.smart-banner-actions .button-primary:hover {
  filter: brightness(0.96);
}
.smart-banner-actions .button-outline {
  background: var(--smart-banner-secondary-bg, rgba(255,255,255,0.02));
  color: var(--smart-banner-secondary-text, var(--smart-banner-text, #ffffff));
  border-color: var(--smart-banner-secondary-border, rgba(255,255,255,0.26));
}
.smart-banner-actions .button-outline:hover {
  filter: brightness(1.04);
}
.smart-banner-summary {
  display: grid;
  gap: 12px;
}
.smart-banner-chip {
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--smart-banner-chip-bg, rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.12);
}
.smart-banner-chip strong {
  display: block;
  color: var(--smart-banner-chip-label, rgba(255,255,255,0.7));
  font-size: .82rem;
  margin-bottom: 4px;
}
.smart-banner-chip span {
  display: block;
  color: var(--smart-banner-chip-text, var(--white));
  font-size: 1rem;
  font-weight: 800;
}
.hero-visual { position: relative; }
.hero-visual img,
.feature-image,
.card-media img,
.single-thumb img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.placeholder-card {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(45,42,166,0.08), rgba(214,167,66,0.12));
  border: 1px dashed rgba(45,42,166,0.25);
  color: var(--primary-dark);
  font-weight: 800;
  padding: 24px;
}
.hero-placeholder { min-height: 520px; }

.cards-grid {
  display: grid;
  gap: 24px;
}
.cards-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.info-card,
.page-card,
.post-card,
.cta-card,
.widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.info-card,
.page-card,
.widget { padding: 26px; }
.trust-card { text-align: center; }
.icon-badge,
.step-number {
  width: 52px; height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(45,42,166,0.12), rgba(214,167,66,0.18));
  margin: 0 auto 16px;
}
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary-dark); font-weight: 900;
}
.section-head { text-align: center; max-width: 840px; margin: 0 auto 34px; }
.section-head.align-start { text-align: right; margin-right: 0; margin-left: 0; }
.section-head p { color: var(--muted); }
.centered-action { text-align: center; margin-top: 32px; }
.card-media { margin-bottom: 16px; }
.card-media .placeholder-card { min-height: 220px; }
.feature-stack { display: grid; gap: 18px; margin: 24px 0 28px; }
.feature-item {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
}
.membership-card { position: relative; }
.featured-membership {
  border-color: rgba(45,42,166,0.2);
  transform: translateY(-10px);
}
.badge {
  position: absolute;
  top: 18px; inset-inline-start: 18px;
  background: var(--accent);
  color: #2b2210;
  font-size: .82rem;
  font-weight: 900;
  padding: 8px 12px;
  border-radius: 999px;
}
.feature-list {
  list-style: none;
  padding: 0; margin: 18px 0 22px;
  display: grid; gap: 10px;
}
.feature-list li {
  position: relative; padding-inline-start: 20px; color: var(--muted);
}
.feature-list li::before {
  content: "•";
  position: absolute; inset-inline-start: 0; top: -1px;
  color: var(--accent); font-size: 1.2rem;
}
.section-note { text-align: center; margin-top: 16px; color: var(--muted); }
.faq-wrap { max-width: 900px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 0 22px;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
  font-weight: 800;
  position: relative;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  inset-inline-start: 0;
  top: 50%; transform: translateY(-50%);
  color: var(--primary);
  font-size: 1.6rem;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding-bottom: 18px; color: var(--muted); }
.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 48px 32px;
  text-align: center;
}
.cta-card p { max-width: 760px; margin: 0 auto 24px; color: rgba(255,255,255,.85); }

.content-grid { grid-template-columns: minmax(0, 1fr) 320px; }
.content-area, .content-narrow { min-width: 0; }
.content-narrow { max-width: 860px; margin: 0 auto; }
.post-card { display: grid; grid-template-columns: 280px 1fr; overflow: hidden; margin-bottom: 24px; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 24px; }
.post-card-title { margin-bottom: 10px; }
.entry-meta { color: var(--muted); font-size: .95rem; margin-bottom: 12px; }
.entry-content > *:last-child { margin-bottom: 0; }
.widget { margin-bottom: 20px; }
.widget-title { margin-top: 0; }

.site-footer {
  background: #121525;
  color: rgba(255,255,255,.86);
  padding-top: 72px;
}
.footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; align-items: start; }
.footer-title { color: var(--white); font-size: 1.1rem; margin-bottom: 16px; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255,255,255,.76); }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 40px;
  padding: 18px 0 24px;
  color: rgba(255,255,255,.62);
}

.centered-card { text-align: center; }
.align-center { text-align: center; }

@media (max-width: 1100px) {
  .cards-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid, .split-grid, .footer-grid, .content-grid { grid-template-columns: 1fr; }
  .featured-membership { transform: none; }
  .footer-grid { gap: 24px; }
}

@media (max-width: 900px) {
  .header-inner { grid-template-columns: auto auto; }
  .primary-nav {
    position: absolute;
    inset-inline: 16px;
    top: calc(100% + 10px);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow);
    display: none;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav li + li { border-top: 1px solid var(--border); }
  .primary-nav a { display: block; padding: 14px 8px; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .cards-grid-3 { grid-template-columns: 1fr; }
  .post-card { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section-space { padding: 70px 0; }
  .hero-actions { flex-direction: column; }
  .button, .hero-actions .button { width: 100%; }
  .logged-in-smart-banner { grid-template-columns: 1fr; padding: 18px; }
  .smart-banner-actions { flex-direction: column; }
  .smart-banner-actions .button { width: 100%; }
  .cards-grid-4 { grid-template-columns: 1fr; }
  .container { width: min(var(--container), calc(100% - 20px)); }
  .info-card, .page-card, .widget, .cta-card { padding: 20px; }
  .hero-placeholder { min-height: 300px; }
}


.recent-wins-section .section-head { margin-bottom: 30px; }
.recent-win-card { position: relative; }
.member-win-card { border-color: rgba(214,167,66,0.28); background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,249,236,0.98)); }
.recent-win-meta { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.subtle-badge { position: static; background: rgba(214,167,66,0.16); color: #7a5b12; }
.recent-win-date { color: var(--muted); font-size: .92rem; font-weight: 700; }
@media (max-width: 820px) {
  .recent-win-meta { justify-content: flex-start; }
}


.header-tools {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: 0;
}

.header-counters {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.header-counter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(20, 24, 39, 0.07);
  white-space: nowrap;
}

.header-counter-label {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.header-counter-value {
  min-width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
}

.header-counter-wins .header-counter-value {
  background: linear-gradient(135deg, var(--accent), #c38b1a);
  color: #2b2210;
}

.header-counter:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(20, 24, 39, 0.1);
}

.header-wallet-slot{display:flex;align-items:center}.site-header .yww-header-balance-link{min-height:44px}


.front-counters-shell {
  position: relative;
  padding: 34px 0 62px;
  margin-top: 16px;
  overflow: hidden;
  isolation: isolate;
}

.front-counters-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(76, 88, 255, 0.18), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(245, 197, 75, 0.18), transparent 22%),
    linear-gradient(180deg, #050816 0%, #090d1f 34%, #0b1120 100%);
  border-radius: 40px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 30px 80px rgba(2, 6, 23, 0.34);
  z-index: 0;
}

.front-counters-shell::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 39px;
  border: 1px solid rgba(255,255,255,0.07);
  pointer-events: none;
  z-index: 0;
}

.front-counters-shell__orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(92px);
  opacity: 0.26;
  pointer-events: none;
  z-index: 0;
}

.front-counters-shell__orb--left {
  inset-inline-start: -120px;
  top: 46px;
  background: rgba(76, 88, 255, 0.34);
}

.front-counters-shell__orb--right {
  inset-inline-end: -100px;
  bottom: 38px;
  background: rgba(245, 197, 75, 0.30);
}

.front-counters-shell .ywpc-section {
  position: relative;
  z-index: 1;
  padding: 48px 22px 26px;
}

.front-counters-shell .ywpc-title,
.front-counters-shell .ywpc-desc,
.front-counters-shell .ywpc-label,
.front-counters-shell .ywpc-card-desc {
  color: rgba(255,255,255,0.88);
}

.front-counters-shell .ywpc-inner {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%),
    radial-gradient(circle at 50% 0%, rgba(245,197,75,0.10), transparent 30%),
    linear-gradient(180deg, #0c1324 0%, #0b1321 52%, #0a101b 100%);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 28px 70px rgba(2, 6, 23, 0.28);
  border-radius: 28px;
}

.front-counters-shell .ywpc-inner::before {
  content: "";
  position: absolute;
  inset-inline: 20px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(245,197,75,0.06) 12%, rgba(245,197,75,0.55) 50%, rgba(245,197,75,0.06) 88%, transparent 100%);
}

.front-counters-shell .ywpc-inner::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(245,197,75,0.12) 18%, rgba(245,197,75,0.68) 50%, rgba(245,197,75,0.12) 82%, transparent 100%);
}

.front-counters-shell .ywpc-item {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 10px 24px rgba(2, 6, 23, 0.16);
  backdrop-filter: blur(8px);
}

.front-counters-shell .ywpc-item:hover {
  transform: translateY(-2px);
  border-color: rgba(245,197,75,0.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 18px 34px rgba(2, 6, 23, 0.22);
}

.front-counters-shell .ywpc-number {
  color: #fff3c5;
  text-shadow: 0 10px 30px rgba(245,197,75,0.16);
}

.front-counters-shell__divider {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 56px));
  height: 1px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.04) 16%, rgba(76,88,255,0.24) 40%, rgba(245,197,75,0.42) 50%, rgba(76,88,255,0.24) 60%, rgba(255,255,255,0.04) 84%, transparent 100%);
}

.front-counters-shell__divider::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,75,0.24) 0%, rgba(245,197,75,0.10) 34%, transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

@media (max-width: 820px) {
  .front-counters-shell {
    padding: 18px 0 42px;
    margin-top: 12px;
  }

  .front-counters-shell::before {
    border-radius: 28px;
  }

  .front-counters-shell::after {
    border-radius: 27px;
  }

  .front-counters-shell__orb {
    width: 190px;
    height: 190px;
    filter: blur(56px);
  }

  .front-counters-shell .ywpc-section {
    padding: 32px 14px 18px;
  }

  .front-counters-shell__divider {
    width: calc(100% - 36px);
  }
}


/* ===== Ultra Premium Fintech Header 2.4.4 ===== */
.premium-site-header{
  position:sticky;
  top:0;
  z-index:240;
  background:linear-gradient(180deg, rgba(7,10,22,.96) 0%, rgba(9,13,28,.94) 100%);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 22px 55px rgba(2,6,23,.22);
  overflow:visible;
}
.premium-site-header::before,
.premium-site-header::after{
  content:"";
  position:absolute;
  pointer-events:none;
  filter:blur(42px);
  z-index:0;
}
.premium-site-header::before{
  inset:auto auto -24px -40px;
  width:180px;height:180px;
  background:radial-gradient(circle, rgba(214,167,66,.28), transparent 68%);
}
.premium-site-header::after{
  inset:-60px 14% auto auto;
  width:220px;height:220px;
  background:radial-gradient(circle, rgba(88,105,255,.24), transparent 70%);
}
.premium-site-header .container,
.premium-site-header .header-top-strip,
.premium-site-header .header-inner,
.premium-site-header .mobile-header-utility{position:relative;z-index:2;}

.header-top-strip{
  display:block;
  background:rgba(255,255,255,.025);
  border-bottom:1px solid rgba(255,255,255,.07);
}
.header-top-inner{
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.header-trust-strip,
.mobile-trust-strip{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.header-trust-chip,
.mobile-trust-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  color:#e9eefb;
  font-size:.85rem;
  font-weight:800;
  white-space:nowrap;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
.header-social-strip,
.mobile-social-strip{
  display:flex;
  align-items:center;
  gap:10px;
}
.header-social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:15px;
  border:1px solid rgba(255,255,255,.11);
  background:linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.045));
  color:#fff;
  box-shadow:0 12px 24px rgba(2,6,23,.18), inset 0 1px 0 rgba(255,255,255,.08);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.header-social-link svg{width:19px;height:19px;display:block;}
.header-social-link:hover{
  transform:translateY(-2px);
  border-color:rgba(214,167,66,.4);
  box-shadow:0 18px 28px rgba(2,6,23,.24), 0 0 0 1px rgba(214,167,66,.16) inset;
}
.theme-mode-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:16px;
  background:linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
  color:#fff;
  box-shadow:0 12px 24px rgba(2,6,23,.18);
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease;
}
.theme-mode-toggle:hover{transform:translateY(-2px);box-shadow:0 18px 28px rgba(2,6,23,.24);}
.theme-mode-toggle svg{width:18px;height:18px;display:block;}
.theme-mode-moon{display:none;}
html.theme-dark .theme-mode-sun,
body.theme-dark .theme-mode-sun{display:none;}
html.theme-dark .theme-mode-moon,
body.theme-dark .theme-mode-moon{display:inline-flex;}

.header-inner{
  min-height:96px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:26px;
  padding-block:16px;
}
.brand-wrap{display:flex;align-items:center;min-width:0;}
.site-title{
  font-size:2rem;
  font-weight:900;
  letter-spacing:-.03em;
  color:#fff;
  text-shadow:0 10px 24px rgba(88,105,255,.18);
}
.site-logo img{max-height:60px;width:auto;filter:drop-shadow(0 10px 20px rgba(0,0,0,.22));}
.primary-nav ul{display:flex;justify-content:center;align-items:center;gap:8px;flex-wrap:wrap;}
.primary-nav li{list-style:none;}
.primary-nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:15px;
  color:rgba(232,237,249,.88);
  font-weight:800;
  transition:background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a{
  color:#fff;
  background:linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.05));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 10px 18px rgba(2,6,23,.16);
}
.primary-nav .menu-item-wallet-balance{display:none!important;}

.header-tools{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  flex-wrap:nowrap;
}
.header-wallet-slot{display:flex;align-items:center;min-width:280px;max-width:320px;flex:0 1 320px;}
.site-header .yww-header-wallet-menu{position:relative;width:100%;margin:0;}
.site-header .yww-header-wallet-menu > summary{list-style:none;cursor:pointer;}
.site-header .yww-header-wallet-menu > summary::-webkit-details-marker{display:none;}
.site-header .yww-header-wallet-summary{
  position:relative;
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  align-items:center;
  padding:14px 18px 14px 18px;
  border-radius:24px;
  background:
    radial-gradient(circle at 12% 24%, rgba(214,167,66,.28), transparent 25%),
    radial-gradient(circle at 88% 20%, rgba(103,123,255,.26), transparent 24%),
    linear-gradient(155deg, #0f162d 0%, #10192f 38%, #162347 100%);
  border:1px solid rgba(255,255,255,.10);
  color:#fff;
  box-shadow:0 18px 38px rgba(2,6,23,.26), inset 0 1px 0 rgba(255,255,255,.08);
}
.site-header .yww-header-wallet-label{display:block;font-size:.82rem;font-weight:800;color:rgba(255,255,255,.74);margin-bottom:2px;}
.site-header .yww-header-wallet-total{display:block;font-size:1.75rem;font-weight:900;line-height:1.05;letter-spacing:-.03em;color:#fff;}
.site-header .yww-header-wallet-subparts{display:flex;gap:12px;flex-wrap:wrap;margin-top:8px;font-size:.8rem;color:rgba(255,255,255,.72);}
.site-header .yww-header-wallet-subparts strong{color:#fff;font-weight:900;}
.site-header .yww-header-wallet-arrow{display:inline-flex;align-items:center;justify-content:center;width:40px;height:40px;border-radius:14px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.10);transition:transform .2s ease;}
.site-header .yww-header-wallet-arrow svg{width:18px;height:18px;display:block;}
.site-header .yww-header-wallet-menu[open] .yww-header-wallet-arrow{transform:rotate(180deg);}
.site-header .yww-header-wallet-dropdown{
  position:absolute;
  top:calc(100% + 10px);
  inset-inline-start:0;
  min-width:100%;
  padding:14px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(9,13,28,.98), rgba(12,17,36,.98));
  border:1px solid rgba(255,255,255,.09);
  box-shadow:0 22px 42px rgba(2,6,23,.28);
}
.site-header .yww-header-wallet-row{display:flex;align-items:center;justify-content:space-between;color:#dfe6fb;padding:10px 4px;border-bottom:1px solid rgba(255,255,255,.08);font-weight:700;}
.site-header .yww-header-wallet-row:last-child{border-bottom:none;}
.site-header .yww-header-wallet-row strong{color:#fff;font-weight:900;}
.site-header .yww-header-wallet-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:14px;}
.site-header .yww-header-wallet-btn{display:inline-flex;align-items:center;justify-content:center;min-height:44px;border-radius:15px;font-weight:900;padding:0 16px;}
.site-header .yww-header-wallet-btn.is-primary{background:linear-gradient(135deg,#d6a742,#f0c96b);color:#1a1320;}
.site-header .yww-header-wallet-btn.is-light{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.1);color:#fff;}

.header-counters{display:flex;align-items:center;gap:10px;flex-wrap:nowrap;}
.header-counter{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:54px;
  padding:10px 14px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.09);
  color:#fff;
  box-shadow:0 14px 28px rgba(2,6,23,.18);
}
.header-counter-icon{
  width:36px;height:36px;
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:14px;
  background:rgba(255,255,255,.10);
  color:#fff;
  font-size:1rem;
  font-weight:900;
}
.header-counter-copy{display:flex;flex-direction:column;gap:2px;}
.header-counter-label{color:rgba(255,255,255,.72);font-size:.74rem;font-weight:800;}
.header-counter-value{
  min-width:28px;
  display:inline-flex;align-items:center;justify-content:center;
  padding:0;
  background:none;
  color:#fff;
  font-size:1.15rem;
  font-weight:900;
}
.header-counter-wins .header-counter-icon{background:rgba(214,167,66,.18);color:#f0c96b;}
.header-counter-notices .header-counter-icon{background:rgba(103,123,255,.18);color:#90a2ff;}
.header-cta{
  min-height:54px;
  padding:0 22px;
  border-radius:18px;
  background:linear-gradient(135deg,#5a69ff 0%,#2d2aa6 100%);
  color:#fff;
  box-shadow:0 16px 30px rgba(45,42,166,.28);
}
.header-cta:hover{background:linear-gradient(135deg,#6674ff 0%,#241f8f 100%);}

.menu-toggle{
  display:none;
  position:relative;
  width:56px;
  height:56px;
  padding:0;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow:0 14px 28px rgba(2,6,23,.16), inset 0 1px 0 rgba(255,255,255,.08);
  cursor:pointer;
}
.menu-toggle span{
  position:absolute;
  left:16px;
  right:16px;
  height:2px;
  margin:0;
  border-radius:999px;
  background:#fff;
  transition:transform .2s ease, opacity .2s ease, top .2s ease;
}
.menu-toggle span:nth-child(1){top:19px;}
.menu-toggle span:nth-child(2){top:27px;}
.menu-toggle span:nth-child(3){top:35px;}
.menu-toggle[aria-expanded="true"] span:nth-child(1){top:27px;transform:rotate(45deg);}
.menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
.menu-toggle[aria-expanded="true"] span:nth-child(3){top:27px;transform:rotate(-45deg);}

.mobile-header-utility{display:none;}
.theme-mode-floating{display:none;}

@media (max-width: 900px){
  .header-top-strip{display:none;}
  .header-inner{
    grid-template-columns:1fr auto;
    min-height:84px;
    gap:16px;
    padding-block:14px 12px;
  }
  .brand-wrap{min-width:0;}
  .site-title{font-size:1.9rem;}
  .menu-toggle{display:block;justify-self:end;}
  .primary-nav{
    position:absolute;
    top:calc(100% + 12px);
    inset-inline:12px;
    display:none;
    padding:16px;
    border-radius:26px;
    background:linear-gradient(180deg, rgba(9,13,28,.98), rgba(12,17,36,.98));
    border:1px solid rgba(255,255,255,.09);
    box-shadow:0 24px 44px rgba(2,6,23,.34);
  }
  .primary-nav.is-open{display:block;}
  .primary-nav ul{flex-direction:column;align-items:stretch;gap:8px;}
  .primary-nav li + li{border-top:1px solid rgba(255,255,255,.08);padding-top:8px;}
  .primary-nav a{justify-content:flex-start;color:#fff;background:rgba(255,255,255,.04);padding:14px 16px;border-radius:16px;}
  .primary-nav .menu-item-wallet-balance{display:none!important;}

  .header-tools{
    grid-column:1 / -1;
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    align-items:stretch;
  }
  .header-wallet-slot,
  .site-header .yww-header-wallet-menu{width:100%;max-width:none;}
  .site-header .yww-header-wallet-summary{padding:16px 18px;border-radius:24px;}
  .site-header .yww-header-wallet-total{font-size:1.8rem;}
  .site-header .yww-header-wallet-subparts{justify-content:space-between;gap:8px;}
  .site-header .yww-header-wallet-dropdown{position:static;margin-top:10px;}
  .header-counters{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;}
  .header-counter{min-height:68px;border-radius:20px;justify-content:space-between;}
  .header-counter-copy{align-items:flex-start;}
  .header-cta{width:100%;display:inline-flex;justify-content:center;}

  .mobile-header-utility{
    display:grid;
    gap:14px;
    padding:0 0 16px;
  }
  .mobile-trust-strip{
    overflow:auto;
    flex-wrap:nowrap;
    padding-bottom:4px;
    scrollbar-width:none;
  }
  .mobile-trust-strip::-webkit-scrollbar{display:none;}
  .mobile-social-strip{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:10px;}
  .mobile-social-link{width:100%;height:46px;border-radius:16px;}

  .theme-mode-floating{
    position:fixed;
    inset-inline-start:16px;
    bottom:92px;
    z-index:260;
    display:inline-flex;
    width:52px;
    height:52px;
    border-radius:18px;
    backdrop-filter:blur(16px);
    background:linear-gradient(180deg, rgba(9,13,28,.95), rgba(12,17,36,.95));
    border:1px solid rgba(255,255,255,.1);
    color:#fff;
    box-shadow:0 16px 34px rgba(2,6,23,.28);
  }
}

@media (max-width: 560px){
  .header-inner{gap:14px;}
  .site-title{font-size:1.7rem;}
  .header-counters{grid-template-columns:1fr 1fr;}
  .header-counter{padding:10px 12px;}
  .header-counter-label{font-size:.72rem;}
  .header-counter-value{font-size:1.02rem;}
  .site-header .yww-header-wallet-summary{padding:14px 16px;}
  .site-header .yww-header-wallet-total{font-size:1.65rem;}
}


/* ==== Ultra premium mobile-first fintech header 2.4.5 ==== */
.premium-site-header{background:linear-gradient(180deg,#09112b 0%, #070d22 42%, #050913 100%);border-bottom:1px solid rgba(140,163,255,.14);box-shadow:0 24px 60px rgba(0,0,0,.28);}
.premium-site-header .header-top-strip{background:linear-gradient(180deg,rgba(17,28,61,.88),rgba(9,17,43,.84));border-bottom:1px solid rgba(131,149,221,.16);}
.premium-site-header .header-top-inner{min-height:50px;}
.premium-site-header .header-trust-chip{background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));border-color:rgba(255,255,255,.08);color:#eef4ff;box-shadow:inset 0 1px 0 rgba(255,255,255,.06);}
.premium-site-header .header-social-link,.premium-site-header .theme-mode-toggle{border-radius:999px;border:1px solid rgba(255,255,255,.12);background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));color:#ffffff;box-shadow:0 14px 28px rgba(2,6,23,.18), inset 0 1px 0 rgba(255,255,255,.05);}
.premium-site-header .header-social-link.is-disabled{opacity:.55;pointer-events:none;}
.premium-site-header .header-inner{background:linear-gradient(180deg, rgba(12,20,47,.92), rgba(8,13,32,.9));border:1px solid rgba(130,151,220,.15);border-top:0;border-radius:0 0 28px 28px;box-shadow:0 28px 64px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.03);}
.premium-site-header .site-title{color:#ffffff;}
.premium-site-header .primary-nav a{color:#edf3ff;}
.premium-site-header .primary-nav a:hover,.premium-site-header .primary-nav .current-menu-item > a,.premium-site-header .primary-nav .current_page_item > a{background:linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.05));color:#fff;box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 10px 18px rgba(2,6,23,.16);}
.premium-site-header .header-tools{gap:12px;}
.premium-site-header .header-counters{align-items:stretch;}
.premium-site-header .header-counter-walletcash{order:-1;}
.premium-site-header .header-counter-walletcash > summary{min-height:78px;}
.premium-site-header .header-counter,.premium-site-header .yww-header-wallet-summary{border:1px solid rgba(255,255,255,.09);background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));color:#fff;box-shadow:0 16px 30px rgba(2,6,23,.18);}
.premium-site-header .header-counter-icon{background:rgba(255,255,255,.10);color:#fff;}
.premium-site-header .header-counter-label{color:rgba(255,255,255,.72);}
.premium-site-header .header-counter-value{color:#fff;}
.premium-site-header .header-counter-wins .header-counter-icon{background:rgba(214,167,66,.18);color:#f1c967;}
.premium-site-header .header-counter-notices .header-counter-icon{background:rgba(103,123,255,.18);color:#9dadff;}
.premium-site-header .header-cta{background:linear-gradient(135deg,#d6a742 0%,#f0c96b 100%);color:#1a1320;box-shadow:0 18px 34px rgba(214,167,66,.20);}
.premium-site-header .header-cta:hover{background:linear-gradient(135deg,#e0b14d 0%,#f4d47d 100%);}
.premium-site-header .menu-toggle{display:none;position:relative;overflow:hidden;border-radius:999px;border:1px solid rgba(255,255,255,.12);background:linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.04));box-shadow:0 16px 30px rgba(2,6,23,.18), inset 0 1px 0 rgba(255,255,255,.05);}
.premium-site-header .menu-toggle span{position:absolute;left:14px;right:14px;height:2.5px;margin:0;border-radius:999px;background:#ffffff;transition:transform .2s ease, opacity .2s ease, top .2s ease;}
.premium-site-header .menu-toggle span:nth-child(1){top:18px;}
.premium-site-header .menu-toggle span:nth-child(2){top:25px;}
.premium-site-header .menu-toggle span:nth-child(3){top:32px;}
.premium-site-header .menu-toggle[aria-expanded="true"] span:nth-child(1){top:25px;transform:rotate(45deg);}
.premium-site-header .menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0;}
.premium-site-header .menu-toggle[aria-expanded="true"] span:nth-child(3){top:25px;transform:rotate(-45deg);}
.premium-site-header .mobile-header-utility{display:none;}
@media (max-width: 900px){
  .premium-site-header .header-top-strip{display:none;}
  .premium-site-header .header-inner{grid-template-columns:1fr 54px;grid-template-areas:"brand menu" "tools tools" "nav nav";gap:14px;min-height:auto;padding:14px 12px 12px;}
  .premium-site-header .brand-wrap{grid-area:brand;justify-content:flex-start;min-width:0;}
  .premium-site-header .site-logo img{max-height:48px;}
  .premium-site-header .site-title{font-size:2rem;line-height:1;}
  .premium-site-header .menu-toggle{grid-area:menu;display:inline-flex;width:54px;height:54px;align-items:center;justify-content:center;justify-self:end;}
  .premium-site-header .primary-nav{grid-area:nav;position:static;display:none;width:100%;margin-top:2px;padding:12px;border-radius:24px;background:linear-gradient(180deg, rgba(9,13,28,.98), rgba(12,17,36,.98));border:1px solid rgba(255,255,255,.08);box-shadow:0 24px 44px rgba(2,6,23,.34);}
  .premium-site-header .primary-nav.is-open{display:block;}
  .premium-site-header .primary-nav ul{display:grid;grid-template-columns:1fr;gap:8px;}
  .premium-site-header .primary-nav li+li{border-top:none;padding-top:0;}
  .premium-site-header .primary-nav a{justify-content:space-between;min-height:48px;padding:0 14px;border-radius:16px;background:rgba(255,255,255,.05);}
  .premium-site-header .header-tools{grid-area:tools;display:grid;grid-template-columns:1fr;gap:12px;width:100%;justify-content:stretch;}
  .premium-site-header .header-counters{display:grid;grid-template-columns:minmax(0,1fr) 70px 70px;gap:10px;width:100%;}
  .premium-site-header .header-counter-walletcash{order:-1;width:100%;}
  .premium-site-header .header-counter-walletcash .yww-header-wallet-summary{min-width:0 !important;width:100%;padding:16px 44px 16px 16px;border-radius:24px;}
  .premium-site-header .header-counter-walletcash .yww-header-wallet-total{font-size:1.55rem !important;}
  .premium-site-header .header-counter-walletcash .yww-header-wallet-subparts{display:flex !important;gap:10px;flex-wrap:wrap;margin-top:8px;line-height:1.4;}
  .premium-site-header .header-counter-walletcash .yww-header-wallet-arrow{position:absolute;inset-inline-end:14px;top:50%;transform:translateY(-50%);width:34px;height:34px;border-radius:12px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.10);}
  .premium-site-header .header-counter-walletcash[open] .yww-header-wallet-arrow{transform:translateY(-50%) rotate(180deg);}
  .premium-site-header .header-counter-walletcash .yww-header-wallet-dropdown{position:static;margin-top:10px;min-width:0;border-radius:20px;}
  .premium-site-header .header-counter{min-width:0;min-height:88px;padding:12px 10px;border-radius:20px;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:8px;}
  .premium-site-header .header-counter-copy{display:flex;flex-direction:column;align-items:center;gap:2px;}
  .premium-site-header .header-counter-label{display:block;font-size:.76rem;line-height:1.1;}
  .premium-site-header .header-counter-value{font-size:1rem;min-width:0;}
  .premium-site-header .header-counter-icon{width:38px;height:38px;border-radius:14px;}
  .premium-site-header .header-cta{display:inline-flex;align-items:center;justify-content:center;width:100%;min-height:54px;border-radius:18px;}
  .premium-site-header .mobile-header-utility{display:grid;grid-template-columns:1fr;gap:12px;padding:0 12px 14px;}
  .premium-site-header .mobile-social-strip{display:flex;align-items:center;justify-content:flex-start;gap:10px;}
  .premium-site-header .mobile-social-link{width:46px;height:46px;border-radius:50%;border:1px solid rgba(255,255,255,.10);background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.05));color:#fff;box-shadow:0 14px 28px rgba(2,6,23,.18);}
  .premium-site-header .mobile-social-link.is-disabled{opacity:.55;pointer-events:none;}
  .premium-site-header .mobile-trust-strip{display:flex;gap:10px;overflow:auto;flex-wrap:nowrap;padding-bottom:2px;scrollbar-width:none;}
  .premium-site-header .mobile-trust-strip::-webkit-scrollbar{display:none;}
  .premium-site-header .mobile-trust-chip{flex:0 0 auto;background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));border:1px solid rgba(255,255,255,.08);color:#eef4ff;}
  .theme-mode-floating{position:fixed;inset-inline-end:14px;bottom:18px;z-index:360;display:inline-flex !important;width:52px;height:52px;border-radius:18px;border:1px solid rgba(255,255,255,.10);background:linear-gradient(180deg, rgba(9,13,28,.95), rgba(12,17,36,.95));color:#fff;box-shadow:0 18px 34px rgba(2,6,23,.28);}
}
@media (max-width: 620px){
  .premium-site-header .header-inner{grid-template-columns:1fr 50px;padding:12px 10px 10px;}
  .premium-site-header .site-title{font-size:1.8rem;}
  .premium-site-header .site-logo img{max-height:42px;}
  .premium-site-header .header-counters{grid-template-columns:minmax(0,1fr) 64px 64px;}
  .premium-site-header .header-counter{min-height:82px;padding:10px 8px;border-radius:18px;}
  .premium-site-header .header-counter-label{font-size:.72rem;}
  .premium-site-header .header-counter-icon{width:34px;height:34px;border-radius:12px;}
  .premium-site-header .header-counter-walletcash .yww-header-wallet-summary{padding:14px 42px 14px 14px;}
  .premium-site-header .header-counter-walletcash .yww-header-wallet-total{font-size:1.36rem !important;}
}
@media (max-width: 420px){
  .premium-site-header .header-counters{grid-template-columns:1fr 58px 58px;gap:8px;}
  .premium-site-header .header-counter{min-height:78px;}
  .premium-site-header .header-counter-label{font-size:.68rem;}
  .premium-site-header .mobile-social-strip{justify-content:space-between;}
}
html.theme-dark .premium-site-header{background:linear-gradient(180deg,#050913 0%, #04070f 100%);}
html.theme-dark .premium-site-header .header-top-strip,html.theme-dark .premium-site-header .header-inner{border-color:rgba(88,107,152,.18);}
html.theme-dark .premium-site-header .header-social-link,html.theme-dark .premium-site-header .mobile-social-link,html.theme-dark .premium-site-header .menu-toggle,html.theme-dark .premium-site-header .theme-mode-toggle,html.theme-dark .premium-site-header .header-counter,html.theme-dark .premium-site-header .yww-header-wallet-summary{background:linear-gradient(180deg, rgba(14,22,42,.96), rgba(10,17,31,.98));border-color:rgba(88,107,152,.18);color:#f1f5ff;box-shadow:0 18px 36px rgba(0,0,0,.42);}
html.theme-dark .premium-site-header .header-trust-chip,html.theme-dark .premium-site-header .mobile-trust-chip{background:linear-gradient(180deg, rgba(14,22,42,.92), rgba(10,17,31,.94));border-color:rgba(88,107,152,.18);color:#edf3ff;}
html.theme-dark .theme-mode-floating{background:linear-gradient(180deg, rgba(14,22,42,.98), rgba(10,17,31,.98));border-color:rgba(88,107,152,.18);color:#f1f5ff;box-shadow:0 20px 40px rgba(0,0,0,.45);}


.footer-partner-card.is-clickable{cursor:pointer;text-decoration:none}
.footer-partner-card.is-clickable:hover{transform:translateY(-2px);box-shadow:0 18px 40px rgba(5,12,32,.18)}
.footer-partner-logo-wrap{width:58px;height:58px;min-width:58px;border-radius:18px;display:flex;align-items:center;justify-content:center;background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.03));border:1px solid rgba(255,255,255,.08);overflow:hidden}
.footer-partner-logo{max-width:80%;max-height:80%;width:auto;height:auto;display:block;object-fit:contain;filter:drop-shadow(0 4px 12px rgba(0,0,0,.18))}
@media (max-width: 767px){.footer-partner-logo-wrap{width:52px;height:52px;min-width:52px;border-radius:16px}}
