/* ================================
   Light Theme – Global
=================================== */
:root {
  --bg: #faf9f6;
  --surface: #ffffff;
  --surface-2: #f7f8fb;
  --border: #e6e8ef;
  --text: #101828;
  --muted: #667085;
  --primary: #062ea2;
  --primary-600: #051e6e;
  --ring: #c7d2fe;
  --success: #22c55e;
  --success-600: #16a34a;
  --shadow: 0 10px 20px rgba(16, 24, 40, .06), 0 4px 6px rgba(16, 24, 40, .04);
  /* Brand defaults (overrideable from head.php inline style) */
  --brand-header-bg: #ffffff;
  --brand-header-text: #0D1126;
  --brand-footer-bg: #ffffff;
  --brand-footer-text: #0D1126;
  /* Card defaults (overridable via inline style) */
  --card-radius: 16px;
  --card-shadow: var(--shadow);
}

* {
  box-sizing: border-box
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  position: fixed;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
}

/* Visually hidden (screen reader only) */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Focus visible baseline */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  padding-top: 85px;
  font: 16px/1.55 system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
}

@media (max-width: 900px) {
  body {
    padding-top: 75px;
  }
}

a {
  color: var(--primary);
  text-decoration: none
}

a:hover {
  text-decoration: underline
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background: var(--brand-header-bg);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 2px solid #062ea2;
  box-shadow: 0 4px 20px rgba(13,17,38,0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 20px
}

.brand {
  font-weight: 700;
  color: var(--brand-header-text);
  font-size: 18px
}

.nav a {
  margin-right: 14px;
  color: var(--brand-header-text)
}

.nav a:hover {
  color: var(--brand-header-text);
  text-decoration: underline
}

.site-footer {
  margin-top: 48px;
  padding: 28px 0;
  border-top: 2px solid #062ea2;
  color: var(--brand-footer-text);
  background: var(--brand-footer-bg);
  box-shadow: 0 -10px 40px rgba(13,17,38,0.02);
}

h1 {
  font-size: 28px;
  line-height: 1.2;
  margin: 12px 0 6px
}

h2 {
  font-size: 22px;
  margin: 18px 0 8px
}

h3 {
  font-size: 18px;
  margin: 10px 0 6px
}

.lead {
  color: var(--muted)
}

/* Buttons */
.btn {
  display: inline-block;
  padding: .6rem .6rem;
  border-radius: 7px;
  border: 1px solid #d0d5dd;
  background: #fff;
  color: #111827;
  font-weight: 600;
}

.btn:hover {
  background: #f9fafb
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 1px 2px rgba(37, 99, 235, .3)
}

.btn-primary:hover {
  background: var(--primary-600)
}

.btn-ghost {
  background: #f2f4f7;
  border: 1px solid #e6e8ef;
  color: #111827
}

.btn-success {
  background: var(--success);
  border-color: var(--success);
  color: #053d1e
}

.btn-success:hover {
  background: var(--success-600);
  border-color: var(--success-600)
}

.btn-lg {
  padding: .5rem .5rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 800;
  font-size: 14px
}

.btn-xl {
  padding: .6rem 0.6rem;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px
}

.logo-fallback {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px dashed var(--border);
  color: #111827;
  font-weight: 700;
}

/* ========== Legacy simple cards (if any) ========== */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 16px;
  box-shadow: var(--card-shadow);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(16, 24, 40, .10), 0 6px 10px rgba(16, 24, 40, .06);
  border-color: #e2e8f0;
}

.actions {
  display: flex;
  gap: 10px;
  margin-top: 12px
}

/* ================================
   HERO (Top) – 4 Cards
=================================== */
.hero-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px
}

@media (max-width:1200px) {
  .hero-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width:640px) {
  .hero-grid {
    grid-template-columns: 1fr
  }
}

/* Hero variant helpers */
.hero-variant-grid4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px
}

.hero-variant-2x2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px
}

.hero-variant-1big-3small {
  display: grid;
  grid-template-columns: 30% 22% 22% 22%;
  gap: 16px
}

.hero-variant-1big-3small>article:nth-child(1) {
  grid-column: auto
}

@media (max-width:1200px) {
  .hero-variant-grid4 {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }

  .hero-variant-1big-3small {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width:640px) {

  .hero-variant-grid4,
  .hero-variant-2x2,
  .hero-variant-1big-3small {
    grid-template-columns: 1fr
  }
}

.hero4-card {
  position: relative;
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  padding-bottom: 14px;
  display: flex;
  flex-direction: column;
}

.hero4-rank {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #111827;
  z-index: 2;
}

.hero4-score {
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 6px 10px;
  border-radius: 12px;
  background: #0f172a;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .18);
  z-index: 2;
}

.hero4-score .star {
  color: #facc15;
  margin-right: 6px
}

.hero4-logo {
  background: #0b0f1a;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center
}

.hero4-logo img {
  height: 72px;
  object-fit: contain
}

.hero4-promo {
  margin: 10px auto 0;
  width: max-content;
  background: #e0ecff;
  color: #1e3a8a;
  font-size: 14px;
  font-weight: 800;
  padding: 4px 13px;
  border-radius: 999px;
  border: 1px solid #c7d2fe;
}

.hero4-bgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px 16px 0 16px;
  text-align: center;
}

.bcol {
  background: #fff
}

.bsub {
  color: #667085;
  font-size: 14px;
  margin-bottom: 4px
}

.bval {
  font-size: 14px;
  font-weight: 800;
  color: #111827
}

.bcap {
  font-weight: 700;
  color: #101828;
  margin-top: -2px
}

.hero4-cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 12px 16px 6px 16px;
  margin-top: auto
}

.hero4-tnc {
  color: #667085;
  font-size: 13px;
  text-align: center;
  padding: 0 16px;
  margin-top: 4px
}

/* ================================
   LIST (Below Hero) – Mobile First
=================================== */
/* tek kolon mobil görünüm */
.all-list {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.list-card {
  display: block;
  padding: 16px;
  border: 1px solid #ece9e3;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 6px 16px rgba(16, 24, 40, .06);
}

.lc-row {
  margin-bottom: 12px
}

.lc-row:last-child {
  margin-bottom: 0
}

/* Üst satır */
.lc-row-top {
  display: flex;
  gap: 12px;
  align-items: center
}

.lc-logo {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  background: #f2f1ee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lc-logo img {
  width: 68px;
  height: 68px;
  object-fit: contain
}

.lc-title {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.2
}

.lc-title a {
  color: #101828;
  text-decoration: none
}

.lc-sub {
  color: #667085;
  font-size: 14px
}

.lc-badge {
  display: inline-block;
  margin-top: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid #dbe7d9;
  background: #ecfdf3;
  color: #166534;
}

/* Boonused + Özellikler */
.lc-head {
  font-weight: 900;
  color: #20124d;
  margin-bottom: 6px;
  font-size: 20px
}

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

.lc-ul li {
  color: #110C2E;
  margin: 6px 0;
  font-size: 18px;
  line-height: 1.35
}

.lc-ul--ticks li {
  position: relative;
  padding-left: 22px
}

.lc-ul--ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px #c7f7d6 inset;
}

/* Butonlar (mobil) */
.lc-actions {
  display: flex;
  padding: 14px;
  gap: 12px
}

.lc-actions .btn-lg {
  flex: 1
}

/* Ödeme satırı (mobil) */
.lc-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px
}

.lc-pay-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.pay-chip {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2f4f7;
  border: 1px solid #e6e8ef;
  color: #344054;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}

.pay-more {
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none
}

.pay-more:hover {
  text-decoration: underline
}

/* ================================
   LIST – Tablet (641–1023)
=================================== */
@media (min-width:641px) and (max-width:1023px) {
  .list-card {
    display: grid;
    grid-template-columns: 96px 1fr 220px;
    /* logo | bilgi | CTA */
    gap: 16px;
    align-items: center;
    padding: 16px;
    border: 1px solid #ece9e3;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 6px 12px rgba(16, 24, 40, .05);
  }

  .lc-row-top {
    display: grid;
    grid-template-columns: 96px 1fr;
    grid-column: 1 / 3;
    margin-bottom: 0;
    align-items: center
  }

  .lc-row-bonuses {
    grid-column: 2;
    grid-row: 2;
    margin-bottom: 0
  }

  .lc-row-bonuses .lc-ul li {
    font-size: 16px;
    margin: 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
  }

  .lc-row-feats {
    grid-column: 2;
    grid-row: 3;
    margin-bottom: 0
  }

  .lc-ul--ticks li {
    font-size: 16px;
    margin: 4px 0
  }

  .lc-actions {
    grid-column: 3;
    grid-row: 2 / span 2;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0
  }

  .lc-pay {
    grid-column: 2 / 4;
    grid-row: 4;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 0
  }
}

/* ================================
   LIST – Desktop (>=1024)
=================================== */
/* ================================
   LIST – Desktop (>=1024) — 5 sütun kompakt
   Logo | Title Block | Boonused | Feats | CTA(+payments)
=================================== */
@media (min-width:1024px) {

  /* Kart kabuğu */
  .list-card {
    display: grid;
    grid-template-columns: 110px 1.2fr 1.2fr 1.2fr 260px;
    /* 5 sütun */
    grid-auto-rows: auto;
    column-gap: 22px;
    row-gap: 6px;
    align-items: center;
    padding: 14px 18px;
    border: 1px solid #ece9e3;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 6px 14px rgba(16, 24, 40, .06);
  }

  /* Sütun-1 + Sütun-2 : logo + başlık bloğu */
  .lc-row-top {
    grid-column: 1 / 3;
    grid-row: 1;
    /* 1-2. sütunları kapsa */
    display: grid;
    grid-template-columns: 170px 1fr;
    /* içinde 2 kolon: logo | title */
    align-items: center;
    gap: 14px;
    margin-bottom: 0;
  }

  .lc-logo {
    width: 138px;
    height: 117px;
    border-radius: 14px;
    background: #f2f1ee;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
  }

  .lc-logo img {
    width: 128px;
    height: 107px;
    border-radius: 10px;
    object-fit: contain
  }

  /* — Title Block (kompakt tip) — */
  .lc-title-wrap {
    min-width: 0
  }

  .lc-title {
    margin: 0 0 4px;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 800
  }

  .lc-title a {
    color: #101828;
    text-decoration: none;
    display: inline-block;
    max-width: 36ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
  }

  .lc-sub {
    color: #667085;
    font-size: 12px;
    margin: 0 0 4px
  }

  .lc-badge {
    display: inline-block;
    padding: 4px 9px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 11px;
    border: 1px solid #dbe7d9;
    background: #ecfdf3;
    color: #166534
  }

  /* Sütun-3 : Boonused (başlık + 2 satır) */
  .lc-row-bonuses {
    grid-column: 3;
    grid-row: 1;
    margin-bottom: 0;
  }

  .lc-head {
    font-weight: 900;
    color: #20124d;
    margin: 0 0 6px;
    font-size: 14px
  }

  .lc-row-bonuses .lc-ul {
    margin: 0;
    padding: 0;
    list-style: none
  }

  .lc-row-bonuses .lc-ul li {
    font-size: 12px;
    line-height: 1.35;
    color: #110C2E;
    margin: 3px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 40ch;
  }

  /* Sütun-4 : Özellikler (tikli) */
  .lc-row-feats {
    grid-column: 4;
    grid-row: 1;
    margin-bottom: 0;
  }

  .lc-row-feats .lc-ul {
    margin: 0;
    padding: 0;
    list-style: none
  }

  .lc-ul--ticks li {
    position: relative;
    padding-left: 18px;
    margin: 3px 0;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 38ch;
  }

  .lc-ul--ticks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px #c7f7d6 inset;
  }

  /* Sütun-5 : CTA ve altına küçük payments */
  .lc-actions {
    grid-column: 5;
    grid-row: 1;
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 0;
  }

  .btn-lg {
    padding: .5rem .65rem;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    text-align: center
  }

  .btn-success {
    background: #22c55e;
    border-color: #22c55e;
    color: #053d1e
  }

  .btn-success:hover {
    background: #16a34a;
    border-color: #16a34a
  }

  .btn-ghost {
    background: #f4f6f9;
    border: 1px solid #e6e8ef;
    color: #111827
  }

  /* Payments: CTA sütununun altında küçük */
  .lc-pay {
    grid-column: 5;
    grid-row: 2;
    /* butonların altı */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 2px 0 0 0;
  }

  .lc-pay-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap
  }

  .pay-chip {
    padding: 2px 4px;
    border-radius: 999px;
    background: #f2f4f7;
    border: 1px solid #e6e8ef;
    color: #344054;
    font-weight: 700;
    font-size: 9px;
    white-space: nowrap;
  }

  .pay-more {
    color: #2563eb;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none
  }

  .pay-more:hover {
    text-decoration: underline
  }
}

/* ================================
   Casino Detail Page bits
=================================== */
.casino-detail .detail-head {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px
}

.casino-detail .logo {
  width: 72px;
  height: 72px;
  object-fit: contain
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 20px
}

@media (max-width:900px) {
  .grid-2 {
    grid-template-columns: 1fr
  }
}

.kv {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px
}

.kv li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border)
}

.kv li:last-child {
  border-bottom: 0
}

.kv span {
  color: #475467
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  margin: 10px 0;
  padding: 10px;
  border-radius: 12px
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: #111827
}

/* ===== Detail page headline ===== */
.detail-headline {
  text-align: center;
  margin: 8px 0 12px
}

.detail-headline h1 {
  font-size: 32px;
  margin: 6px 0
}

@media (max-width:720px) {
  .detail-headline h1 {
    font-size: 26px
  }
}

/* hero kartını sayfada kullanırken rank rozetini gizle */
.detail-hero .hero4-rank {
  display: none
}

/* ===== Info panels ===== */
.info-panels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}

@media (max-width:1024px) {
  .info-panels {
    grid-template-columns: 1fr;
  }
}

.panel {
  background: #fff;
  border: 1px solid #e6e8ef;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 6px 12px rgba(16, 24, 40, .05);
}

.panel-head {
  font-weight: 800;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px
}

.panel .picon {
  font-size: 18px
}

.prows {
  list-style: none;
  margin: 0;
  padding: 0
}

.prows li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #f0f2f7
}

.prows li:last-child {
  border-bottom: 0
}

.prows span {
  color: #667085;
  font-size: 14px
}

.prows b {
  font-weight: 700;
  color: #101828
}

.panel .chips {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.panel .chip {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f2f4f7;
  border: 1px solid #e6e8ef;
  color: #344054;
  font-weight: 700;
  font-size: 12px;
  white-space: nowrap;
}

/* === Detail hero: compact version of hero4 === */
.detail-hero .hero4-card {
  border-radius: 16px;
  padding-bottom: 8px
}

.detail-hero .hero4-logo {
  height: 90px
}

.detail-hero .hero4-logo img {
  height: 58px
}

.detail-hero .hero4-promo {
  font-size: 12px;
  padding: 4px 10px
}

.detail-hero .hero4-bgrid {
  gap: 10px;
  padding: 10px 12px 0
}

.detail-hero .bsub {
  font-size: 12px;
  margin-bottom: 2px
}

.detail-hero .bval {
  font-size: 18px
}

.detail-hero .bcap {
  font-size: 12px
}

.detail-hero .hero4-cta {
  gap: 8px;
  padding: 10px 12px 6px
}

.detail-hero .btn-xl {
  font-size: 14px;
  padding: .6rem .8rem;
  border-radius: 10px
}

.detail-hero .hero4-score {
  top: 6px;
  right: 6px;
  font-size: 12px;
  padding: 4px 8px
}

.detail-hero .hero4-rank {
  display: none
}

/* rank gizli */


/* Detay sayfada kullanılan liste kartı (anasayfadaki ile aynı, sadece spacing kompakt) */
.detail-hero .list-card.detail-hero-list {
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 6px 12px rgba(16, 24, 40, .05);
}

@media (min-width:1024px) {
  .detail-hero .list-card.detail-hero-list {
    grid-template-columns: 110px 1.2fr 1.2fr 1.2fr 260px;
    /* 5 sütun düzenimiz korunur */
    column-gap: 22px;
    row-gap: 6px;
  }
}


/* Detay sayfa üst kartı (top-card): card_list’in sade versiyonu */
.detail-hero .top-card {
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 6px 12px rgba(16, 24, 40, .05);
}

@media (min-width:1024px) {
  .detail-hero .top-card {
    grid-template-columns: 110px 1.2fr 1.2fr 1.2fr 160px;
    /* son sütun sadece 1 buton için daha dar */
    column-gap: 22px;
    row-gap: 6px;
  }
}

/* h2 görünümü h3 ile aynı boyda kalsın */
.h2-like {
  font-size: inherit;
  font-weight: inherit;
  margin: inherit
}


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

@media (max-width:900px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width:640px) {
  .blog-grid {
    grid-template-columns: 1fr
  }
}

.blog-card {
  background: #fff;
  border: 1px solid #ece9e3;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 6px 14px rgba(16, 24, 40, .06);
}

.blog-card .b-title {
  margin: .2rem 0 .4rem;
  font-size: 18px
}

.blog-card .b-title a {
  color: #101828;
  text-decoration: none
}

.blog-card .b-title a:hover {
  text-decoration: underline
}

.blog-card .b-excerpt {
  color: #475467;
  margin: .3rem 0 .7rem
}

.blog-loader {
  text-align: center;
  color: #667085;
  margin: 16px 0;
  display: none
}


/* Header layout */
.header-bar {
  display: flex;
  align-items: center;
  gap: 16px
}

.header-bar .nav {
  margin-left: auto
}

.desktop-only {
  display: block
}

.mobile-only {
  display: none
}

@media (max-width:900px) {
  .desktop-only {
    display: none
  }

  .mobile-only {
    display: inline-block
  }

  .burger {
    margin-left: auto
  }
}

/* Root menu */
.menu-root,
.menu-sub {
  list-style: none;
  margin: 0;
  padding: 0
}

.menu-root {
  display: flex;
  gap: 16px
}

.menu-link {
  color: var(--brand-header-text);
  text-decoration: none;
  padding: 10px 4px;
  display: inline-block;
  font-size: var(--menu-font-size, 16px) !important;
  white-space: nowrap;
}

.menu-link:hover {
  color: var(--brand-header-text);
  text-decoration: underline
}

.menu-item.active>.menu-link {
  font-weight: 700;
  color: var(--brand-header-text)
}

.dropdown-arrow {
  font-size: 10px;
  margin-left: 4px;
  opacity: 0.7;
  display: inline-block;
  transition: transform 0.2s
}

.menu-item.has-children:hover .dropdown-arrow {
  transform: rotate(180deg)
}

/* Dropdown (desktop) */
.menu-item.has-children {
  position: relative
}

.header-bar .nav {
  position: relative;
  z-index: 10;
}

.menu-item.has-children>.menu-sub {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--silver-border);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(13,17,38,0.1);
  display: none;
  padding: 5px 8px 8px;
  z-index: 1000;
  margin-top: 0;
}

.menu-item.has-children:hover>.menu-sub {
  display: block
}

/* Keep dropdown open when hovering over it */
.menu-item.has-children:has(.menu-sub:hover)>.menu-sub,
.menu-item.has-children:hover .menu-sub:hover {
  display: block
}

.menu-sub>.menu-item {
  padding: 0
}

.menu-sub .menu-link {
  padding: 8px 10px;
  display: block;
  color: #0D1126;
  border-radius: 6px;
  transition: background 0.2s;
}
.menu-sub .menu-link:hover {
  background: #F4F6F9;
  color: #062ea2;
  text-decoration: none;
}

/* Burger & mobile nav */
.burger {
  background: var(--brand-header-bg);
  border: 1px solid var(--silver-border);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--brand-header-text)
}

.mobile-nav {
  display: none;
  background: var(--brand-header-bg);
  border-top: 1px solid var(--silver-border);
  box-shadow: 0 10px 16px rgba(13,17,38,0.08);
  padding: 10px 16px;
}

.mobile-nav.open {
  display: block
}

.mobile-nav .menu-root {
  display: block
}

.mobile-nav .menu-item {
  border-bottom: 1px solid var(--silver-border)
}

.mobile-nav .menu-item:last-child {
  border-bottom: 0
}

.mobile-nav .menu-link {
  display: block;
  padding: 12px 6px;
  color: var(--brand-header-text)
}

.mobile-nav .menu-item.has-children>.menu-sub {
  display: none;
  position: static;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0;
  background: transparent
}

.mobile-nav .menu-item.has-children.open>.menu-sub {
  display: block
}


/* Home — blog vitrin (4x2 grid) */
.home-blog {
  margin-top: 24px
}

.home-blog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px
}

.home-blog-head h2 {
  margin: 0
}

.home-blog-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width:1100px) {
  .home-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }
}

@media (max-width:900px) {
  .home-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr))
  }
}

@media (max-width:640px) {
  .home-blog-grid {
    grid-template-columns: 1fr
  }
}

/* blog-card zaten tanımlıysa tekrar gerek yok; yoksa: */
.blog-card {
  background: #fff;
  border: 1px solid #ece9e3;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 14px rgba(16, 24, 40, .06);
}

.blog-card .b-title {
  margin: .2rem 0 .4rem;
  font-size: 14px
}

.blog-card .b-title a {
  color: #101828;
  text-decoration: none
}

.blog-card .b-title a:hover {
  text-decoration: underline
}

.blog-card .b-excerpt {
  color: #475467;
  margin: .3rem 0 .7rem;
  font-size: 12px
}


/* === Blog Single: Hero Slab (detail-headline) === */
.blog-single .detail-headline {
  position: relative;
  min-height: 200px;
  /* masaüstü yüksekliği */
  border-radius: 20px;
  padding: 24px;
  margin: 8px 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* yatay merkez */
  justify-content: center;
  /* dikey merkez */
  text-align: center;
  color: #0f172a;
  /* koyu metin */
  overflow: hidden;
  /* Arkaplan: iki soft radial + yumuşak gradient */
  background: radial-gradient(1000px 300px at 0% 0%, rgba(6, 46, 162, .08), transparent 70%), radial-gradient(800px 260px at 100% 100%, rgba(99,102,241, .08), transparent 65%), linear-gradient(135deg, #eef2ff 0%, #f8fafc 55%, #f0f4ff 100%);
  box-shadow: 0 1px 2px rgba(16, 24, 40, .06), 0 3px 4px rgba(16, 24, 40, .04);
}

/* İnce doku: noktalı desen (çok soft) */
.blog-single .detail-headline::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 1px 1px, rgba(2, 6, 23, .06) 1px, transparent 0) 0 0/16px 16px;
  opacity: .5;
  pointer-events: none;
}

/* Dekoratif highlight: sağ üste renk lekesi */
.blog-single .detail-headline::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(6, 46, 162, .12), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}

/* Başlık & açıklama tipografisi */
.blog-single .detail-headline h1 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.blog-single .detail-headline .lead {
  margin: 0;
  max-width: 70ch;
  color: #334155;
  /* daha yumuşak ton */
}

/* Tablet & mobil uyarlamalar */
@media (max-width: 1024px) {
  .blog-single .detail-headline {
    min-height: 160px;
    padding: 20px;
  }

  .blog-single .detail-headline h1 {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .blog-single .detail-headline {
    min-height: 120px;
    padding: 16px;
  }

  .blog-single .detail-headline h1 {
    font-size: 22px;
  }

  .blog-single .detail-headline .lead {
    font-size: 14px;
  }
}


/* Footer grid */
.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  margin-top: 24px;
}

@media (max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:640px) {
  .footer-grid {
    grid-template-columns: 1fr
  }
}

.site-footer h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--brand-footer-text)
}

.footer-grid section>strong {
  display: block;
  color: var(--silver-text);
  font-weight: 800;
  margin: 0 0 20px
}

.footer-about p {
  margin: .4rem 0;
  color: #64748b
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0
}

.footer-list li {
  margin: 6px 0
}

.footer-list a {
  text-decoration: none;
  color: #64748b;
  transition: color 0.2s;
}

.footer-list a:hover {
  color: #062ea2;
  text-decoration: none
}

.footer-copy {
  margin-top: 12px;
  text-align: center;
  color: #64748b
}

/* Footer bottom 5-logo grid */
.footer-bottom {
  margin-top: 20px
}

.footer-text {
  margin-top: 16px
}

.footer-bottom .fb-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center
}

@media (max-width:640px) {
  .footer-bottom .fb-grid {
    gap: 12px
  }
}

.fb-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  background: transparent;
  border: 1px solid var(--silver-border);
  border-radius: 8px;
  padding: 12px 20px;
  height: 54px;
  transition: border-color 0.2s, box-shadow 0.2s
}

.fb-item:hover {
  border-color: #94a3b8;
  box-shadow: 0 2px 8px rgba(13,17,38,0.06);
}

.fb-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  opacity: .7;
  transition: opacity 0.2s
}

.fb-item:hover img {
  opacity: 1
}


/* Kontakt sayfası */
.kontakt-hero {
  background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 60%, #fdf2f8 100%);
  border: 1px solid #e6e8ef;
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 8px 18px rgba(16, 24, 40, .06);
  margin: 10px 0 16px;
}

.kontakt-wrap {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 18px
}

@media (max-width:900px) {
  .kontakt-wrap {
    grid-template-columns: 1fr
  }
}

.kontakt-card {
  background: #fff;
  border: 1px solid #e6e8ef;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 18px rgba(16, 24, 40, .06)
}

.kontakt-side .info-box {
  background: #fff;
  border: 1px solid #e6e8ef;
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 8px 18px rgba(16, 24, 40, .06)
}

.kontakt-form label {
  display: block;
  margin: 8px 0 6px;
  color: #344054
}

.kontakt-form input,
.kontakt-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #d0d5dd;
  border-radius: 10px;
  background: #fff
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
  outline: 3px solid #c7d2fe;
  border-color: #94a3ff
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

@media (max-width:640px) {
  .grid2 {
    grid-template-columns: 1fr
  }
}

.chk {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-top: 8px
}

.alert {
  border-radius: 10px;
  padding: 10px;
  margin: 8px 0
}

.alert.ok {
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
  color: #166534
}

.alert.err {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b
}

.form-actions {
  margin-top: 10px
}


/* ================================
   SILVER THEME - Home Page
=================================== */
/* Theme Variables */
:root {
  --silver-bg: #F4F6F9;
  --silver-card: #ffffff;
  --silver-accent: #062ea2;
  --silver-cta: #062ea2;
  --silver-lime: #062ea2;
  --silver-text: #0D1126;
  --silver-muted: #6b7280;
  --silver-border: #e2e8f0;
}

body.silver-theme {
  background: var(--silver-bg);
  color: var(--silver-text);
}

body.silver-theme .container {
  max-width: 1280px;
}

/* Hero Section */
.silver-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
  padding: 40px 0 80px;
}

.silver-hero__bg-orb1 {
  position: absolute;
  top: 0;
  left: 25%;
  width: 500px;
  height: 500px;
  background: rgba(6,46,162,0.06);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.silver-hero__bg-orb2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: rgba(99,102,241,0.06);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.silver-hero__deco {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.3;
}

.silver-hero__deco--1 {
  top: 80px;
  left: 40px;
}

.silver-hero__deco--2 {
  bottom: 160px;
  left: 80px;
}

.silver-hero__deco--3 {
  top: 40px;
  right: 25%;
}

.silver-hero__inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 1024px) {
  .silver-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.silver-hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (max-width: 1024px) {
  .silver-hero__content {
    align-items: center;
  }
}

.silver-hero__title {
  font-size: 3.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
  color: var(--silver-text);
}

@media (max-width: 768px) {
  .silver-hero__title {
    font-size: 2.5rem;
  }
}

.silver-hero__title span {
  color: var(--silver-lime);
}

.silver-hero__desc {
  color: #64748b;
  font-size: 1.25rem;
  max-width: 500px;
  margin: 0;
}

.silver-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(to right, #062ea2, #0842c8);
  color: #fff;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: 9999px;
  font-size: 1.1rem;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(6,46,162,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.silver-hero__cta:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(6,46,162,0.45);
  text-decoration: none;
  color: #fff;
}

.silver-hero__cta svg {
  fill: #fff;
}

.silver-hero__image {
  position: relative;
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .silver-hero__image {
    justify-content: center;
  }
}

.silver-hero__img-grid {
  position: relative;
  width: 100%;
  max-width: 500px;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 500px;
}

.silver-hero__img-top {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.silver-hero__img-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  height: 100%;
}

.silver-hero__img-bottom-left,
.silver-hero__img-bottom-right {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.silver-hero__img {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.silver-hero__chip1 {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
  animation: bounce 2s infinite;
  z-index: 20;
}

.silver-hero__chip2 {
  position: absolute;
  bottom: 40px;
  left: -40px;
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
  z-index: 20;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {

  .silver-hero__chip1,
  .silver-hero__chip2 {
    display: none;
  }
}

/* ================================
   PREMIUM HERO SLIDER (PMS)
=================================== */
.pms-wrap {
  width: 100%;
  background: var(--silver-bg);
  overflow: hidden;
  margin-bottom: 20px;
}

.pms-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  outline: none;
  background: #0f172a;
}

@media (max-width: 767px) {
  .pms-slider {
    height: 580px;
  }
}

.pms-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease-in-out;
  z-index: 0;
}

.pms-slide.is-active {
  opacity: 1;
  z-index: 10;
}

.pms-bg {
  position: absolute;
  inset: 0;
  background: #0f172a;
}

.pms-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  display: block;
}

.pms-bg__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.pms-theme-gold {
  --pms-grad-from: #ca8a04;
  --pms-grad-to: #713f12;
  --pms-accent: #facc15;
  --pms-btn: #eab308;
  --pms-btn-hover: #facc15;
  --pms-btn-text: #1a1a2e;
}

.pms-theme-purple {
  --pms-grad-from: #9333ea;
  --pms-grad-to: #312e81;
  --pms-accent: #c084fc;
  --pms-btn: #9333ea;
  --pms-btn-hover: #a855f7;
}

.pms-theme-red {
  --pms-grad-from: #b91c1c;
  --pms-grad-to: #7f1d1d;
  --pms-accent: #ef4444;
  --pms-btn: #dc2626;
  --pms-btn-hover: #ef4444;
}

.pms-bg__overlay--theme {
  background: linear-gradient(to right, var(--pms-grad-from), var(--pms-grad-to));
  opacity: 0.8;
  mix-blend-mode: multiply;
}

.pms-bg__overlay--top {
  background: linear-gradient(to top, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0) 60%, rgba(15, 23, 42, 0.5));
}

.pms-bg__overlay--left {
  background: linear-gradient(to right, rgba(2, 6, 23, 1), rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0));
}

.pms-container {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 768px) {
  .pms-container {
    padding: 0 48px;
  }
}

@media (max-width: 767px) {
  .pms-container {
    justify-content: flex-start;
    padding-top: 30px;
  }
}

.pms-glass {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes pmsFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pmsSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pms-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: fit-content;
  margin-bottom: 24px;
  animation: pmsFadeIn 0.5s ease-out both;
}

.pms-badge__text {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.pms-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.pms-icon--accent {
  color: var(--pms-accent);
}

.pms-accent {
  color: var(--pms-accent);
}

.pms-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
  animation: pmsFadeIn 0.7s ease-out both;
}

.pms-title {
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}

@media (min-width: 768px) {
  .pms-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .pms-title {
    font-size: 3.5rem;
  }
}

.pms-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
}

.pms-rating__star {
  display: inline-flex;
  color: #facc15;
}

.pms-rating__star svg {
  width: 20px;
  height: 20px;
}

.pms-rating__val {
  font-size: 1.25rem;
  font-weight: 800;
}

.pms-bonus {
  max-width: 42rem;
  margin-bottom: 32px;
  animation: pmsSlideUp 0.8s ease-out both;
}

.pms-bonus__subtitle {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: 4px;
}

@media (min-width: 768px) {
  .pms-bonus__subtitle {
    font-size: 1.5rem;
  }
}

.pms-bonus__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-image: linear-gradient(to bottom right, #ffffff, #cbd5e1);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

@media (min-width: 768px) {
  .pms-bonus__title {
    font-size: 4.25rem;
  }
}

.pms-bonus__offer {
  margin-top: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

@media (min-width: 768px) {
  .pms-bonus__offer {
    font-size: 2.25rem;
  }
}

.pms-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-bottom: 32px;
  animation: pmsSlideUp 0.9s ease-out both;
}

.pms-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.95rem;
}

.pms-feature__dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--pms-accent);
}

.pms-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 100px;
  animation: pmsSlideUp 1s ease-out both;
}

@media (min-width: 640px) {
  .pms-ctas {
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .pms-ctas {
    margin-bottom: 70px;
  }
}

/* Right Side Visual */
.pms-right-visual {
  position: absolute;
  right: 0%;
  bottom: 10%;
  top: 0;
  width: 65%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 15;
}

.pms-right-visual picture {
  display: contents;
}

.pms-right-visual__img {
  max-height: 90%;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  animation: pmsSlideUp 1.2s ease-out 0.3s both;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}

@media (max-width: 1024px) {
  .pms-right-visual {
    width: 40%;
    opacity: 0.85;
  }
}

@media (max-width: 768px) {
  .pms-right-visual {
    display: none;
  }
}

.pms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 32px;
  border-radius: 23px;
  font-weight: 800;
  text-decoration: none;
  user-select: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  will-change: transform;
}

.pms-btn--primary {
  color: var(--pms-btn-text, #fff);
  background: var(--pms-btn);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.pms-btn--primary:hover {
  background: var(--pms-btn-hover);
  transform: scale(1.05);
  text-decoration: none;
}

.pms-btn--primary:active {
  transform: scale(0.95);
}

.pms-btn--secondary {
  color: #fff;
}

.pms-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.pms-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  padding: 12px;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.pms-slider:hover .pms-arrow {
  opacity: 1;
}

.pms-arrow:hover {
  background: rgba(0, 0, 0, 0.5);
}

.pms-arrow--left {
  left: 16px;
  transform: translateY(-50%) translateX(-16px);
}

.pms-slider:hover .pms-arrow--left {
  transform: translateY(-50%) translateX(0);
}

.pms-arrow--right {
  right: 16px;
  transform: translateY(-50%) translateX(16px);
}

.pms-slider:hover .pms-arrow--right {
  transform: translateY(-50%) translateX(0);
}

.pms-dots {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 30;
}

@media (max-width: 767px) {
  .pms-dots {
    bottom: 24px;
  }
}

.pms-dot {
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.pms-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.pms-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.pms-dot.is-active {
  width: 32px;
  height: 8px;
  background: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .pms-slide,
  .pms-badge,
  .pms-title-row,
  .pms-bonus,
  .pms-features,
  .pms-ctas {
    animation: none !important;
    transition: none !important;
  }
}

/* Feature Boxes */
.silver-features {
  width: 100%;
  background: transparent;
  padding-bottom: 44px;
}

.silver-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .silver-features__grid {
    grid-template-columns: 1fr;
  }
}

.silver-feature {
  position: relative;
}

.silver-feature__glow {
  position: absolute;
  inset: -2px;
  border-radius: 12px;
  filter: blur(4px);
  opacity: 0.75;
  transition: opacity 0.5s;
}

.silver-feature:hover .silver-feature__glow {
  opacity: 1;
}

.silver-feature__glow--purple {
  background: linear-gradient(to right, rgba(99,102,241,0.15), rgba(168,85,247,0.1));
}

.silver-feature__glow--blue {
  background: linear-gradient(to right, rgba(59,130,246,0.15), rgba(6,46,162,0.1));
}

.silver-feature__glow--pink {
  background: linear-gradient(to right, rgba(236,72,153,0.1), rgba(168,85,247,0.1));
}

.silver-feature__inner {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--silver-border);
  box-shadow: 0 8px 30px rgba(13,17,38,0.04);
  transition: box-shadow 0.3s;
}

.silver-feature__inner:hover {
  box-shadow: 0 15px 40px rgba(13,17,38,0.08);
}

.silver-feature__num {
  font-size: 3.5rem;
  font-weight: 900;
  margin-right: 16px;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.silver-feature__num--purple {
  background-image: linear-gradient(to bottom, #6366f1, #a855f7);
}

.silver-feature__num--blue {
  background-image: linear-gradient(to bottom, #062ea2, #3b82f6);
}

.silver-feature__num--pink {
  background-image: linear-gradient(to bottom, #ec4899, #f43f5e);
}

.silver-feature__text {
  color: var(--silver-text);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Casino Listing Section */
.silver-listing {
  padding: 20px 0;
  background: transparent;
}

.silver-listing__header {
  text-align: center;
  margin-bottom: 48px;
}

.silver-listing__title {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  color: var(--silver-text);
}

@media (min-width: 768px) {
  .silver-listing__title {
    font-size: 2.5rem;
  }
}

.silver-listing__title span {
  color: var(--silver-lime);
}

.silver-listing__line {
  height: 4px;
  width: 80px;
  background: var(--silver-accent);
  margin: 16px auto 0;
  border-radius: 9999px;
}

.silver-listing__cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Casino Card (.sc) */
.sc {
  position: relative;
  margin-top: 28px;
}

.sc--scale-100 { transform: scale(1); }
.sc--scale-98 { transform: scale(0.98); }
.sc--scale-96 { transform: scale(0.96); }
.sc--scale-94 { transform: scale(0.94); }

@property --glow-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes scGlowSpin {
  to { --glow-angle: 360deg; }
}

.sc--ranked {
  position: relative;
  z-index: 1;
}

.sc--ranked > .sc__inner {
  border-color: transparent;
}

.sc--ranked::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  padding: 2px;
  background: conic-gradient(
    from var(--glow-angle),
    #062ea2,
    #6366f1,
    #a855f7,
    #ec4899,
    #f59e0b,
    #10b981,
    #3b82f6,
    #062ea2
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: scGlowSpin 4s linear infinite;
  z-index: -1;
}

.sc--ranked::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: conic-gradient(
    from var(--glow-angle),
    #062ea2,
    #6366f1,
    #a855f7,
    #ec4899,
    #f59e0b,
    #10b981,
    #3b82f6,
    #062ea2
  );
  filter: blur(12px);
  opacity: 0.3;
  animation: scGlowSpin 4s linear infinite;
  z-index: -2;
}

.sc__rank {
  position: absolute;
  top: -18px;
  left: 0;
  z-index: 20;
  width: 48px;
  height: auto;
}

.sc__rank img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

.sc__why-rank {
  position: absolute;
  top: -12px;
  right: 16px;
  z-index: 20;
  background: linear-gradient(135deg, #062ea2, #3b82f6);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: .3px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(6,46,162,.3);
  white-space: nowrap;
}

.sc__inner {
  position: relative;
  background: #fff;
  border: 1px solid var(--silver-border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(13,17,38,0.06);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.sc__inner:hover {
  border-color: rgba(6,46,162,0.25);
  box-shadow: 0 20px 50px rgba(13,17,38,0.12);
}

@media (min-width: 768px) {
  .sc__inner {
    flex-direction: row;
    padding: 32px;
    gap: 24px;
  }
}

.sc__bg-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 256px;
  height: 256px;
  background: rgba(6,46,162,0.04);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.sc__logo-box {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 20px;
  background: #1a1a2e;
  border: 1.5px solid rgba(255,255,255,0.12);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.12),
    0 2px 8px rgba(0,0,0,0.06);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 10;
}

@media (min-width: 768px) {
  .sc__logo-box {
    width: 128px;
    height: 128px;
  }
}

.sc__logo-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05), rgba(255,255,255,0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.sc:hover .sc__logo-box {
  transform: scale(1.05);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.18),
    0 3px 10px rgba(0,0,0,0.08);
}

.sc__logo-box picture {
  display: contents;
}

.sc__logo-box img {
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
  border-radius: 10px;
}

.sc__logo-fb {
  font-weight: 900;
  color: #062ea2;
  font-size: 2.5rem;
  letter-spacing: -0.03em;
}

.sc__logo-box p {
  color: #94a3b8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  margin: 2px 0 0;
}

.sc__mid {
  flex: 1;
  text-align: center;
  z-index: 10;
  min-width: 0;
}

@media (min-width: 768px) {
  .sc__mid {
    text-align: left;
    padding-left: 16px;
  }
}

@media (min-width: 1024px) {
  .sc__mid {
    padding-left: 40px;
  }
}

.sc__brand {
  color: rgba(6,46,162,0.7);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin: 0 0 8px;
}

.sc__offer {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--silver-text);
  line-height: 1.15;
  margin: 0 0 12px;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .sc__offer {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }
}

@media (min-width: 1024px) {
  .sc__offer {
    font-size: 2.1rem;
  }
}

.sc__terms-d {
  display: none;
}

@media (min-width: 768px) {
  .sc__terms-d {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #6b7280;
    margin-top: 4px;
  }
}

.sc__terms-age {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
}

.sc__terms-dot {
  width: 4px;
  height: 4px;
  background: #4b5563;
  border-radius: 50%;
}

.sc__right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
  width: 100%;
}

@media (min-width: 768px) {
  .sc__right {
    align-items: flex-end;
    width: auto;
    padding-left: 16px;
  }
}

.sc__rating-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  padding: 8px 18px;
  border-radius: 9999px;
  border: 1px solid var(--silver-border);
  box-shadow: 0 2px 8px rgba(13,17,38,0.06);
  margin-bottom: 4px;
}

.sc__rating-pill svg {
  fill: #f59e0b;
  color: #f59e0b;
  width: 18px;
  height: 18px;
}

.sc__rating-val {
  color: var(--silver-text);
  font-weight: 800;
  font-size: 1rem;
}

.sc__rating-max {
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 700;
}

.sc__btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(to right, #062ea2, #0842c8);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  padding: 12px 36px;
  border-radius: 9999px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(6,46,162,0.25);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

@media (min-width: 768px) {
  .sc__btn-play {
    width: auto;
  }
}

.sc__btn-play:hover {
  background: linear-gradient(to right, #0842c8, #062ea2);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(6,46,162,0.4);
  text-decoration: none;
}

.sc__btn-play svg {
  fill: #fff;
}

.sc__btn-review {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #64748b;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.sc__btn-review:hover {
  color: #062ea2;
  text-decoration: none;
}

.sc__btn-review svg {
  transition: transform 0.2s;
}

.sc__btn-review:hover svg {
  transform: translateX(3px);
}

.sc__terms-m {
  display: block;
  width: 100%;
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid var(--silver-border);
  text-align: center;
  font-size: 11px;
  color: #64748b;
  z-index: 10;
}

@media (min-width: 768px) {
  .sc__terms-m {
    display: none;
  }
}

/* View All Button */
.silver-listing__more {
  margin-top: 48px;
  text-align: center;
}

.silver-listing__btn-all {
  display: inline-block;
  border: 2px solid var(--silver-border);
  color: var(--silver-text);
  font-weight: 800;
  padding: 12px 32px;
  border-radius: 9999px;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s;
  background: #fff;
  box-shadow: 0 2px 8px rgba(13,17,38,0.04);
}

.silver-listing__btn-all:hover {
  border-color: #062ea2;
  color: #062ea2;
  box-shadow: 0 4px 12px rgba(6,46,162,0.1);
  text-decoration: none;
}

/* FAQ Section */
.silver-faq {
  padding: 48px 0;
  background: transparent;
}

.silver-faq__title {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 24px;
  text-align: center;
  color: var(--silver-text);
}

.silver-faq__title span {
  color: #062ea2;
}

.silver-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.silver-faq__item {
  background: #fff;
  border: 1px solid var(--silver-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13,17,38,0.03);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.silver-faq__item:hover {
  border-color: rgba(6,46,162,0.2);
}

.silver-faq__item[open] {
  border-color: rgba(6,46,162,0.3);
  box-shadow: 0 4px 16px rgba(6,46,162,0.08);
}

.silver-faq__item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--silver-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.silver-faq__item summary::-webkit-details-marker {
  display: none;
}

.silver-faq__item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: #6366f1;
  transition: transform 0.2s;
}

.silver-faq__item[open] summary {
  color: #062ea2;
}

.silver-faq__item[open] summary::after {
  transform: rotate(45deg);
  color: #062ea2;
}

.silver-faq__item p {
  padding: 0 20px 16px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Blog Section */
.silver-blog {
  padding: 48px 0;
  background: transparent;
}

.silver-blog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.silver-blog__title {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  color: var(--silver-text);
}

.silver-blog__btn {
  display: inline-block;
  border: 1px solid var(--silver-border);
  color: var(--silver-text);
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 0.875rem;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 2px 6px rgba(13,17,38,0.04);
  transition: all 0.2s;
}

.silver-blog__btn:hover {
  border-color: #062ea2;
  color: #062ea2;
  text-decoration: none;
}

.silver-blog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .silver-blog__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .silver-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .silver-blog__grid {
    grid-template-columns: 1fr;
  }
}

.silver-blog-card {
  background: #fff;
  border: 1px solid var(--silver-border);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s;
  box-shadow: 0 8px 30px rgba(13,17,38,0.04);
}

.silver-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(13,17,38,0.08);
}

.silver-blog-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
}

.silver-blog-card__title a {
  color: var(--silver-text);
  text-decoration: none;
  transition: color 0.2s;
}

.silver-blog-card__title a:hover {
  color: #062ea2;
  text-decoration: none;
}

.silver-blog-card__excerpt {
  color: #64748b;
  font-size: 0.875rem;
  margin: 0 0 16px;
  line-height: 1.5;
}

.silver-blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #062ea2;
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  transition: gap 0.2s;
}

.silver-blog-card__link:hover {
  gap: 10px;
  text-decoration: none;
}

/* ================================
   SILVER REVIEW PAGE
=================================== */

/* Review Hero */
.review-hero {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #eef2ff 0%, #f8fafc 60%, #f0f4ff 100%);
  padding: 16px 0 48px;
  overflow: hidden;
}

.review-hero__orb1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: rgba(6,46,162,0.05);
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.review-hero__orb2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(99,102,241,0.05);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  transform: translate(33%, 33%);
}

.review-hero__breadcrumb {
  font-size: 12px;
  color: #64748b;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-hero__breadcrumb a {
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.review-hero__breadcrumb a:hover {
  color: #062ea2;
}

.review-hero__breadcrumb span {
  color: #94a3b8;
}

.review-hero__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .review-hero__inner {
    flex-direction: row;
  }
}

.review-hero__left {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

@media (min-width: 1024px) {
  .review-hero__left {
    width: auto;
    gap: 32px;
  }
}

.review-hero__logo {
  width: 96px;
  height: 96px;
  background: #fce7f3;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .review-hero__logo {
    width: 128px;
    height: 128px;
  }
}

.review-hero__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.review-hero__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-hero__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-hero__rating svg {
  width: 20px;
  height: 20px;
  fill: var(--silver-cta);
  color: var(--silver-cta);
}

.review-hero__rating span {
  color: var(--silver-text);
  font-weight: 700;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .review-hero__rating span {
    font-size: 1.5rem;
  }
}

.review-hero__title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--silver-cta);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0;
}

@media (min-width: 768px) {
  .review-hero__title {
    font-size: 1.875rem;
  }
}

.review-hero__cta {
  display: inline-block;
  background: linear-gradient(to right, #062ea2, #0842c8);
  color: #fff;
  font-weight: 800;
  padding: 12px 40px;
  border-radius: 9999px;
  box-shadow: 0 8px 20px rgba(6,46,162,0.25);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: transform 0.2s;
  margin-top: 8px;
  width: fit-content;
}

.review-hero__cta:hover {
  transform: scale(1.05);
  text-decoration: none;
  color: #fff;
}

.review-hero__right {
  position: relative;
  width: 100%;
  max-width: 560px;
}

@media (min-width: 1024px) {
  .review-hero__right {
    width: 50%;
  }
}

.review-hero__mockup {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.25));
  border-radius: 12px;
}

.review-hero__mobile {
  position: absolute;
  bottom: -32px;
  right: -16px;
  width: 25%;
  box-shadow: 0 25px 25px rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #1f2937;
}

.review-hero__mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info Grid / Tabs */
.review-info {
  width: 100%;
  background: #fff;
  padding: 32px 0;
  border-top: 1px solid var(--silver-border);
  border-bottom: 1px solid var(--silver-border);
}

.review-info__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--silver-border);
  padding-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .review-info__tabs {
    gap: 48px;
  }
}

.review-info__tab {
  color: #94a3b8;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 16px;
  margin-bottom: -17px;
  transition: color 0.2s;
}

.review-info__tab:hover {
  color: var(--silver-text);
}

.review-info__tab--active {
  color: var(--silver-cta);
  border-bottom: 2px solid var(--silver-cta);
}

.review-info__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px 48px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .review-info__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.review-info__item h4 {
  color: var(--silver-cta);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  margin: 0 0 4px;
}

.review-info__item p,
.review-info__item a {
  color: #64748b;
  margin: 0;
}

.review-info__item a:hover {
  text-decoration: underline;
}

/* Bonus List */
.review-bonuses {
  width: 100%;
  background: var(--silver-bg);
  padding: 48px 0;
}

.review-bonuses__title {
  color: var(--silver-text);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin: 0 0 32px;
  letter-spacing: 0.05em;
}

.review-bonuses__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .review-bonuses__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.review-bonus-card {
  background: #fff;
  border: 1px solid var(--silver-border);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(13,17,38,0.04);
}

.review-bonus-card:hover {
  border-color: rgba(6,46,162,0.2);
  box-shadow: 0 8px 20px rgba(13,17,38,0.08);
}

.review-bonus-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: var(--silver-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 2rem;
}

.review-bonus-card__content h4 {
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 4px;
  color: var(--silver-text);
}

.review-bonus-card__content p {
  color: #64748b;
  font-size: 14px;
  margin: 0 0 12px;
  line-height: 1.6;
}

.review-bonus-card__content a {
  color: #062ea2;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
}

.review-bonus-card__content a:hover {
  color: #0842c8;
}

.review-bonus-card--green h4 {
  color: #4ade80;
}

.review-bonus-card--red h4 {
  color: #f87171;
}

.review-bonus-card--yellow h4 {
  color: #facc15;
}

.review-bonus-card--orange h4 {
  color: #fb923c;
}

/* Review Content */
.review-content {
  width: 100%;
  background: var(--silver-bg);
  padding: 48px 0;
}

.review-content__inner {
  color: #475569;
  font-size: 14px;
  line-height: 1.8;
}

.review-content__inner h3 {
  color: var(--silver-text);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.1rem;
  margin: 0 0 16px;
}

.review-content__inner p {
  margin: 0 0 24px;
}

.review-content__inner a {
  color: var(--silver-cta);
  text-decoration: underline;
}

.review-content__inner section {
  margin-bottom: 32px;
}

.review-content__inner section:last-child {
  margin-bottom: 0;
}

/* Pros and Cons */
.review-proscons {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  margin-top: 48px;
  border: 1px solid var(--silver-border);
  box-shadow: 0 4px 12px rgba(13,17,38,0.04);
}

.review-proscons__title {
  color: var(--silver-text);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin: 0 0 32px;
}

.review-proscons__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .review-proscons__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.review-proscons__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-proscons__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-proscons__icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-proscons__icon--pro {
  background: #22c55e;
  color: #fff;
}

.review-proscons__icon--con {
  background: #6b7280;
  color: #fff;
}

.review-proscons__icon svg {
  width: 12px;
  height: 12px;
}

/* FAQ Section (Review Style) */
.review-faq {
  width: 100%;
  background: var(--silver-bg);
  padding: 64px 0;
}

.review-faq__title {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 48px;
  color: var(--silver-text);
}

@media (min-width: 768px) {
  .review-faq__title {
    font-size: 2.25rem;
  }
}

.review-faq__title span {
  color: var(--silver-lime);
}

.review-faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-faq__item {
  background: #fff;
  border: 1px solid var(--silver-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(13,17,38,0.03);
  transition: border-color 0.3s;
}

.review-faq__item:hover {
  border-color: rgba(6,46,162,0.2);
}

.review-faq__item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--silver-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-faq__item summary::-webkit-details-marker {
  display: none;
}

.review-faq__item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: #6366f1;
  transition: transform 0.2s;
}

.review-faq__item[open] summary::after {
  transform: rotate(45deg);
  color: #062ea2;
}

.review-faq__item p {
  padding: 0 20px 16px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Recommended / Similar Casinos */
.review-recommended {
  width: 100%;
  background: var(--silver-bg);
  padding: 64px 0;
}

.review-recommended__title {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 48px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .review-recommended__title {
    font-size: 2.25rem;
  }
}

.review-recommended__title span {
  color: var(--silver-lime);
}

.review-recommended__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .review-recommended__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .review-recommended__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.review-rec-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--silver-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(13,17,38,0.04);
}

.review-rec-card:hover {
  border-color: rgba(6,46,162,0.2);
  box-shadow: 0 8px 20px rgba(13,17,38,0.08);
}

.review-rec-card__logo {
  width: 100%;
  height: 96px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--silver-bg);
  overflow: hidden;
}

.review-rec-card__logo img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.review-rec-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-rec-card__rating svg {
  width: 16px;
  height: 16px;
  fill: var(--silver-cta);
  color: var(--silver-cta);
}

.review-rec-card__rating span {
  font-weight: 700;
  color: var(--silver-text);
}

.review-rec-card__btn {
  background: linear-gradient(to right, #062ea2, #0842c8);
  color: #fff;
  font-weight: 900;
  padding: 8px 32px;
  border-radius: 9999px;
  text-transform: uppercase;
  font-size: 14px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(6,46,162,0.2);
}

.review-rec-card__btn:hover {
  box-shadow: 0 8px 20px rgba(6,46,162,0.35);
  text-decoration: none;
  color: #fff;
}

.review-rec-card__terms {
  font-size: 10px;
  color: #6b7280;
  text-align: center;
}

/* Blog içerik tabloları — tam responsive, satır kırma */
.seo-html .table-wrap {
  width: 100%;
  overflow-x: hidden;
  /* taşma yok */
  margin: 10px 0;
}

.seo-html table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  /* sütunlar eşitlenir, içerik kırılır */
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(16, 24, 40, .06);
}

.seo-html table thead th {
  background: #f8fafc;
  color: #111827;
  font-weight: 700;
  border-bottom: 1px solid #e6e8ef;
}

/* Hücrelerde satır kırma ve kelime bölme */
.seo-html table th,
.seo-html table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eef2f6;
  text-align: left;
  vertical-align: top;
  white-space: normal;
  /* tek satıra ZORLAMA YOK */
  word-break: break-word;
  /* uzun kelimeleri kır */
  overflow-wrap: anywhere;
  /* URL/uzun string kırılır */
  hyphens: auto;
  /* uygun yerde tire eklenir (destekleyenlerde) */
}

/* Zebra */
.seo-html table tbody tr:nth-child(even) td {
  background: #fbfcfe;
}

/* Başlık / açıklama */
.seo-html table caption {
  caption-side: top;
  text-align: left;
  margin: 8px 0;
  color: #667085;
  font-size: 14px;
}

/* Sayısal hücreleri gerektiğinde yine sağa hizalayabilirsin */
.seo-html table th.numeric,
.seo-html table td.numeric {
  text-align: right;
  white-space: nowrap;
}

/* Küçük ekranlarda tip boyutu bir tık küçült */
@media (max-width:640px) {

  .seo-html table th,
  .seo-html table td {
    padding: 8px;
    font-size: 14px;
  }
}

/* ================================
   Category Page - Silver Theme
=================================== */
.silver-category-header {
  position: relative;
  background: var(--silver-bg);
  padding: 60px 20px;
  margin-bottom: 40px;
  overflow: hidden;
}

.silver-category-header::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: rgba(6,46,162,0.06);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.silver-category-header::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: rgba(99,102,241,0.05);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.silver-category-title-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.silver-category-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--silver-text);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.silver-category-desc {
  font-size: 20px;
  color: var(--silver-muted);
  margin: 0;
  line-height: 1.6;
}

.silver-seo-section {
  position: relative;
  background: var(--silver-bg);
  padding: 60px 20px;
  margin-bottom: 40px;
  overflow: hidden;
}

.silver-seo-section::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 20%;
  width: 500px;
  height: 500px;
  background: rgba(6,46,162,0.06);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.silver-seo-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: rgba(99,102,241,0.05);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.silver-seo-content {
  position: relative;
  z-index: 1;
}

.silver-seo-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--silver-text);
  margin: 0 0 24px 0;
  text-align: center;
}

/* Blog Table of Contents */
.blog-toc {
  background: rgba(6,46,162,0.04);
  border: 1px solid rgba(6,46,162,0.12);
  border-radius: 12px;
  padding: 24px 28px;
  margin-bottom: 28px;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  min-width: 0;
}
.blog-toc__details {
  min-width: 0;
}
.blog-toc__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--silver-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-toc__title::-webkit-details-marker { display: none; }
.blog-toc__title::before {
  content: '☰';
  font-size: 16px;
  color: #062ea2;
}
.blog-toc__list {
  margin: 16px 0 0 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-reset: toc-counter;
  list-style: none;
}
.blog-toc__list li {
  counter-increment: toc-counter;
  font-size: 15px;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
}
.blog-toc__list li::before {
  content: counter(toc-counter) ". ";
  color: #062ea2;
  font-weight: 600;
}
.blog-toc__list li a {
  display: inline;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
}
.blog-toc__list li a:hover {
  color: #062ea2;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .blog-toc {
    padding: 14px;
    border-radius: 8px;
  }
  .blog-toc__title {
    font-size: 15px;
  }
  .blog-toc__list {
    padding-left: 12px;
  }
  .blog-toc__list li {
    font-size: 13px;
  }
}

.silver-seo-html {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(13,17,38,0.06);
  border: 1px solid var(--silver-border);
  overflow-wrap: break-word;
  word-break: break-word;
  overflow-x: auto;
  overflow-y: visible;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .silver-seo-html {
    padding: 14px;
    border-radius: 8px;
  }
  .silver-seo-html h2 {
    font-size: 20px;
  }
  .silver-seo-html h3 {
    font-size: 18px;
  }
}
.silver-seo-html img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.silver-seo-html iframe,
.silver-seo-html video,
.silver-seo-html embed {
  max-width: 100%;
}
.silver-seo-html pre {
  overflow-x: auto;
  max-width: 100%;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid var(--silver-border);
  border-radius: 8px;
  font-size: 14px;
}
.silver-seo-html blockquote {
  margin: 24px 0;
  padding: 16px 24px;
  border-left: 4px solid #062ea2;
  background: rgba(6,46,162,0.04);
  border-radius: 0 8px 8px 0;
  color: #475569;
  font-style: italic;
}
.silver-seo-html p {
  margin: 0 0 16px 0;
  line-height: 1.7;
  color: #475569;
}

.silver-seo-html h2,
.silver-seo-html h3 {
  margin: 24px 0 12px 0;
  color: var(--silver-text);
}

.silver-seo-html ul,
.silver-seo-html ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
  color: #475569;
}

.silver-seo-html a {
  color: #062ea2;
}

.silver-seo-html a:hover {
  color: #0842c8;
}

/* Tables in blog content */
.silver-seo-html table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0;
  background: #fff;
  border-radius: 8px;
  border: 1px solid var(--silver-border);
  box-shadow: 0 4px 12px rgba(13,17,38,0.06);
}

/* Mobile: make table scrollable */
@media (max-width: 768px) {
  .silver-seo-html table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .silver-seo-html table thead,
  .silver-seo-html table tbody {
    display: table;
    width: 100%;
    min-width: 600px;
  }

  .silver-seo-html table tr {
    display: table-row;
  }

  .silver-seo-html table th,
  .silver-seo-html table td {
    display: table-cell;
  }
}

/* Custom scrollbar for table */
.silver-seo-html table::-webkit-scrollbar {
  height: 8px;
}

.silver-seo-html table::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 4px;
}

.silver-seo-html table::-webkit-scrollbar-thumb {
  background: rgba(6,46,162,0.3);
  border-radius: 4px;
}

.silver-seo-html table::-webkit-scrollbar-thumb:hover {
  background: rgba(6,46,162,0.5);
}

@media (max-width: 768px) {
  .silver-seo-html table {
    scrollbar-width: thin;
    scrollbar-color: rgba(6,46,162,0.3) #f1f5f9;
  }
}

.silver-seo-html table thead {
  background: rgba(6,46,162,0.06);
}

.silver-seo-html table th {
  padding: 16px;
  text-align: left;
  font-weight: 700;
  color: var(--silver-text);
  border-bottom: 2px solid rgba(6,46,162,0.15);
  border-right: 1px solid var(--silver-border);
  white-space: nowrap;
}

.silver-seo-html table th:last-child {
  border-right: none;
}

.silver-seo-html table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--silver-border);
  border-right: 1px solid var(--silver-border);
  color: #475569;
}

.silver-seo-html table td:last-child {
  border-right: none;
}

.silver-seo-html table tbody tr:hover {
  background: rgba(6,46,162,0.03);
}

.silver-seo-html table tbody tr:last-child td {
  border-bottom: none;
}

.silver-seo-html table th.numeric,
.silver-seo-html table td.numeric {
  text-align: right;
}

.silver-seo-html .table-comparison {
  width: 100%;
}
.silver-seo-html .table-comparison .btn {
  display: inline-block;
  background: linear-gradient(135deg, #062ea2, #0842c8);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}
.silver-seo-html table caption {
  caption-side: top;
  text-align: left;
  margin: 0 0 12px 0;
  color: #94a3b8;
  font-size: 14px;
  font-style: italic;
}

.silver-empty-state {
  text-align: center;
  padding: 80px 20px;
  color: #64748b;
  font-size: 18px;
}

/* Responsive for category page */
@media (max-width: 768px) {
  .silver-category-title {
    font-size: 32px;
  }

  .silver-category-desc {
    font-size: 16px;
  }

  .silver-seo-title {
    font-size: 24px;
  }
}

/* ================================
   Blog Pages - Silver Theme
=================================== */

/* Blog Listing */
.silver-blog-section {
  padding: 60px 0 80px;
  background: var(--silver-bg);
}

.silver-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.silver-blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--silver-border);
  box-shadow: 0 8px 30px rgba(13,17,38,0.04);
}

.silver-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(13,17,38,0.08);
}

.silver-blog-card__inner {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.silver-blog-card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.silver-blog-card__title a {
  color: var(--silver-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.silver-blog-card__title a:hover {
  color: #062ea2;
  text-decoration: none;
}

.silver-blog-card__excerpt {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
  font-size: 15px;
  flex-grow: 1;
}

.silver-blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--silver-border);
  margin-top: auto;
}

.silver-blog-card__date {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 500;
}

.silver-blog-card__btn {
  color: #062ea2;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.silver-blog-card__btn:hover {
  color: #0842c8;
  transform: translateX(4px);
  text-decoration: none;
}

.silver-blog-loader {
  text-align: center;
  padding: 40px 20px;
  color: #94a3b8;
  font-size: 16px;
  font-weight: 600;
}

/* Blog Post Detail */
.silver-blog-post {
  padding: 60px 0 80px;
  background: var(--silver-bg);
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .silver-blog-post {
    padding: 32px 0 48px;
  }
}

/* Blog 3-Column Layout with Sidebar Ads */
.blog-layout-3col,
.blog-layout-centered {
  display: block;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  min-width: 0;
}
.blog-layout-3col > *,
.blog-layout-centered > * {
  min-width: 0;
}

@media (min-width: 1400px) {
  .blog-layout-3col.has-left-sidebar.has-right-sidebar {
    grid-template-columns: 160px 1fr 160px;
    max-width: 1300px;
  }

  .blog-layout-3col.has-left-sidebar:not(.has-right-sidebar) {
    grid-template-columns: 160px 1fr;
    max-width: 1100px;
  }

  .blog-layout-3col.has-right-sidebar:not(.has-left-sidebar) {
    grid-template-columns: 1fr 160px;
    max-width: 1100px;
  }
}

.blog-sidebar {
  display: none;
}

@media (min-width: 1400px) {
  .blog-sidebar {
    display: block;
  }
}

.blog-sidebar__sticky {
  position: sticky;
  top: 100px;
}

.blog-sidebar__img {
  width: 160px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Content Ad responsive */
.content-ad__mobile {
  display: none;
}

@media (max-width: 768px) {
  .content-ad__desktop {
    display: none !important;
  }

  .content-ad__mobile {
    display: block !important;
  }
}

.silver-blog-post__content {
  margin-bottom: 60px;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: visible;
}
@media (max-width: 768px) {
  .silver-blog-post__content {
    margin-bottom: 32px;
  }
}

.silver-blog-faq {
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  border: 1px solid var(--silver-border);
  box-shadow: 0 4px 20px rgba(13,17,38,0.04);
}

.silver-blog-faq__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--silver-text);
  margin: 0 0 32px 0;
  text-align: center;
}

.silver-blog-faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.silver-blog-faq__item {
  background: rgba(6,46,162,0.03);
  border: 1px solid var(--silver-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.silver-blog-faq__item:hover {
  border-color: rgba(6,46,162,0.2);
}

.silver-blog-faq__item[open] {
  background: rgba(6,46,162,0.05);
  border-color: rgba(6,46,162,0.3);
}

.silver-blog-faq__question {
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 700;
  color: var(--silver-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.2s ease;
}

.silver-blog-faq__question::-webkit-details-marker {
  display: none;
}

.silver-blog-faq__question::after {
  content: '+';
  font-size: 24px;
  font-weight: 700;
  color: #062ea2;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.silver-blog-faq__item[open] .silver-blog-faq__question::after {
  content: '−';
  transform: rotate(180deg);
}

.silver-blog-faq__question:hover {
  color: #062ea2;
}

.silver-blog-faq__answer {
  padding: 0 24px 24px 24px;
  color: #64748b;
  line-height: 1.7;
}

.silver-blog-faq__answer p {
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .silver-blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .silver-blog-card__inner {
    padding: 24px;
  }

  .silver-blog-faq {
    padding: 32px 24px;
  }

  .silver-blog-faq__title {
    font-size: 24px;
  }

  .silver-blog-faq__question {
    font-size: 16px;
    padding: 16px 20px;
  }
}

/* ================================
   Static Page - Silver Theme
=================================== */
.silver-static-page {
  padding: 60px 0 80px;
  background: var(--silver-bg);
}

.silver-static-page__content {
  max-width: 100%;
}

/* ================================
   Contact Page - Silver Theme
=================================== */
.silver-contact {
  padding: 60px 0 80px;
  background: var(--silver-bg);
}

.silver-contact__wrap {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  align-items: start;
}

.silver-contact__card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--silver-border);
  box-shadow: 0 4px 20px rgba(13,17,38,0.06);
}

.silver-contact__title {
  font-size: 28px;
  font-weight: 800;
  color: var(--silver-text);
  margin: 0 0 24px 0;
}

.silver-contact__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.silver-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.silver-contact__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.silver-contact__label {
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}

.silver-contact__input,
.silver-contact__textarea {
  background: var(--silver-bg);
  border: 2px solid var(--silver-border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--silver-text);
  font-size: 15px;
  transition: all 0.2s ease;
}

.silver-contact__input:focus,
.silver-contact__textarea:focus {
  outline: none;
  border-color: rgba(6,46,162,0.4);
  box-shadow: 0 0 0 3px rgba(6,46,162,0.08);
}

.silver-contact__textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.silver-contact__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
}

.silver-contact__checkbox input[type="checkbox"] {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #062ea2;
}

.silver-contact__captcha {
  padding-top: 8px;
}

.silver-contact__submit {
  background: linear-gradient(135deg, #062ea2 0%, #0842c8 100%);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(6,46,162,0.25);
}

.silver-contact__submit:hover {
  background: linear-gradient(135deg, #051e6e 0%, #062ea2 100%);
  box-shadow: 0 6px 20px rgba(6,46,162,0.4);
  transform: translateY(-2px);
}

.silver-contact__submit:active {
  transform: translateY(0);
}

.silver-alert {
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 24px;
}

.silver-alert--success {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #16a34a;
}

.silver-alert--error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}

/* Sidebar */
.silver-contact__sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.silver-contact__info-box {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--silver-border);
  box-shadow: 0 4px 12px rgba(13,17,38,0.04);
}

.silver-contact__info-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--silver-text);
  margin: 0 0 16px 0;
}

.silver-contact__info-text {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
}

.silver-contact__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.silver-contact__links li a {
  color: #062ea2;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.silver-contact__links li a::before {
  content: '→';
  font-weight: 700;
}

.silver-contact__links li a:hover {
  color: #0842c8;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 968px) {
  .silver-contact__wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .silver-contact__sidebar {
    order: -1;
  }
}

@media (max-width: 640px) {
  .silver-contact__card {
    padding: 28px 20px;
  }

  .silver-contact__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .silver-contact__title {
    font-size: 24px;
  }
}

/* ================================
   Language Switcher Dropdown
=================================== */
.lang-switcher {
  position: relative;
  margin-left: 12px;
  flex-shrink: 0;
}

.lang-switcher__current {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: #F4F6F9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  color: var(--brand-header-text);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lang-switcher__current:hover {
  background: #eef2ff;
  border-color: rgba(6,46,162,0.2);
}

.flag-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.flag-icon-small {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.lang-arrow {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.lang-switcher:hover .lang-arrow {
  transform: rotate(180deg);
}

.lang-switcher__menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 4px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  min-width: 120px;
  list-style: none;
  padding: 4px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s ease;
  z-index: 100;
  box-shadow: 0 10px 30px rgba(13,17,38,0.1);
}

.lang-switcher:hover .lang-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--brand-header-text);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease;
  border-radius: 4px;
}

.lang-switcher__menu li a:hover {
  background: #F4F6F9;
}

/* Search Toggle Icon */
.search-toggle {
  background: transparent;
  border: none;
  color: var(--brand-header-text);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.search-toggle:hover {
  opacity: 0.8;
}

.search-toggle svg {
  width: 20px;
  height: 20px;
}

/* Legacy button style (for compatibility) */
.lang-switch-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  margin-left: 12px;
  background: #F4F6F9;
  border-radius: 6px;
  color: var(--brand-header-text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.lang-switch-btn:hover {
  background: #eef2ff;
  text-decoration: none;
  color: var(--brand-header-text);
}

.lang-label {
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
  padding: 16px 20px;
  border-top: 1px solid #e2e8f0;
  margin-top: 16px;
}

.lang-switch-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-header-text);
  font-size: 15px;
  text-decoration: none;
  padding: 10px 0;
}

.lang-switch-link:hover {
  text-decoration: underline;
}

/* Mobile language switcher */
.mobile-lang-current {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--brand-header-text);
  margin-bottom: 12px;
}

.mobile-lang-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seo-html a,
.cr-content a,
.blog-content a,
.silver-seo-section a {
  text-decoration: underline;
  text-decoration-color: rgba(6, 46, 162, 0.4);
  text-underline-offset: 2px;
}

.seo-html a:hover,
.cr-content a:hover,
.blog-content a:hover,
.silver-seo-section a:hover {
  text-decoration-color: currentColor;
}

.sc__logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}