:root {
  --pm-bg: #132388;
  --pm-surface: rgba(255,255,255,0.07);
  --pm-surface-hover: rgba(255,255,255,0.12);
  --pm-surface-dark: #0d1a6e;
  --pm-surface-2: rgba(255,255,255,0.03);
  --pm-text: #ffffff;
  --pm-text-muted: #a0bedb;
  --pm-text-dim: #6880b0;
  --pm-border: rgba(255,255,255,0.12);
  --pm-border-strong: rgba(255,255,255,0.22);
  --pm-accent: #BEBEBE;
  --pm-accent-light: #d4daf0;
  --pm-gold: #f5c242;
  --pm-silver: #c0c8d8;
  --pm-bronze: #c87941;
  --pm-success: #3ddc84;
  --pm-success-bg: rgba(61,220,132,0.12);
  --pm-warning: #ff9f43;
  --pm-warning-bg: rgba(255,159,67,0.12);
  --pm-danger: #e74c3c;
  --pm-danger-bg: rgba(231,76,60,0.12);
  --pm-btn-primary: #222222;
  --pm-btn-primary-text: #ffffff;
  --pm-btn-accent: #1a3a9e;
  --pm-radius: 12px;
  --pm-radius-sm: 8px;
  --pm-radius-lg: 16px;
  --pm-shadow: 0 4px 24px rgba(0,0,0,0.32);
  --pm-shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --pm-container: 1200px;
  --pm-header-h: 72px;
  --pm-transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--pm-bg);
  color: var(--pm-text);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
}

a { color: var(--pm-accent-light); text-decoration: none; transition: color var(--pm-transition); }
a:hover { color: var(--pm-text); }
a:focus-visible { outline: 2px solid var(--pm-accent); outline-offset: 3px; border-radius: 4px; }

img, svg { max-width: 100%; display: block; }
ul, ol { padding-left: 1.4em; }
li { margin-bottom: 0.3em; }
button { cursor: pointer; font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--pm-text);
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(1.3rem, 3vw, 1.7rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.3rem); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.pm-ltc9-container {
  max-width: var(--pm-container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.pm-ltc9-section {
  padding-block: clamp(40px, 6vw, 72px);
}

.pm-ltc9-section + .pm-ltc9-section {
  border-top: 1px solid var(--pm-border);
}

.pm-ltc9-section__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
}

.pm-ltc9-section__title svg {
  flex-shrink: 0;
  color: var(--pm-accent);
}

.pm-ltc9-card {
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  padding: 20px;
  transition: background var(--pm-transition), border-color var(--pm-transition);
}

.pm-ltc9-card:hover {
  background: var(--pm-surface-hover);
  border-color: var(--pm-border-strong);
}

.pm-ltc9-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--pm-radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity var(--pm-transition), background var(--pm-transition), transform var(--pm-transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.pm-ltc9-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.pm-ltc9-btn:active { transform: translateY(0); }
.pm-ltc9-btn--primary { background: var(--pm-btn-primary); color: var(--pm-btn-primary-text); }
.pm-ltc9-btn--accent { background: transparent; color: var(--pm-text); border: 1px solid var(--pm-border-strong); }
.pm-ltc9-btn--accent:hover { background: var(--pm-surface); }
.pm-ltc9-btn--full { width: 100%; margin-top: 12px; }
.pm-ltc9-btn--lg { padding: 14px 32px; font-size: 1rem; }
.pm-ltc9-btn--sm { padding: 8px 16px; font-size: 0.82rem; }
.pm-ltc9-btn--play { background: var(--pm-btn-primary); color: #fff; }
.pm-ltc9-btn--bonus { background: var(--pm-gold); color: #111; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

.pm-ltc9-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--pm-header-h);
  background: var(--pm-surface-dark);
  border-bottom: 1px solid var(--pm-border);
  z-index: 900;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.pm-ltc9-header-spacer { height: var(--pm-header-h); }

.pm-ltc9-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}

.pm-ltc9-header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pm-text);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
  text-decoration: none;
}

.pm-ltc9-header__logo-accent { color: var(--pm-accent); }

.pm-ltc9-header__center {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--pm-text-muted);
  margin-left: 8px;
  flex-shrink: 0;
}

.pm-ltc9-header__flag { font-size: 1.2rem; }
.pm-ltc9-header__casino-count { display: none; }

@media (min-width: 900px) { .pm-ltc9-header__casino-count { display: inline; } }

.pm-ltc9-nav { margin-left: auto; }

.pm-ltc9-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pm-ltc9-nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  border-radius: var(--pm-radius-sm);
  font-size: 0.85rem;
  color: var(--pm-text-muted);
  transition: color var(--pm-transition), background var(--pm-transition);
  text-decoration: none;
}

.pm-ltc9-nav__link:hover {
  color: var(--pm-text);
  background: var(--pm-surface);
}

.pm-ltc9-nav__icon { opacity: 0.7; flex-shrink: 0; }

.pm-ltc9-header__cta {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  margin-left: 8px;
}

.pm-ltc9-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-sm);
  padding: 8px;
  margin-left: auto;
}

.pm-ltc9-burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--pm-text);
  border-radius: 2px;
  transition: transform var(--pm-transition), opacity var(--pm-transition);
}

.pm-ltc9-burger[aria-expanded="true"] .pm-ltc9-burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pm-ltc9-burger[aria-expanded="true"] .pm-ltc9-burger__line:nth-child(2) { opacity: 0; }
.pm-ltc9-burger[aria-expanded="true"] .pm-ltc9-burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .pm-ltc9-burger { display: flex; }
  .pm-ltc9-nav {
    position: fixed;
    top: var(--pm-header-h);
    left: 0; right: 0;
    background: var(--pm-surface-dark);
    border-bottom: 1px solid var(--pm-border);
    padding: 16px 20px 24px;
    display: none;
    z-index: 800;
  }
  .pm-ltc9-nav.is-open { display: block; }
  .pm-ltc9-nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .pm-ltc9-nav__link { padding: 12px 14px; font-size: 0.95rem; }
  .pm-ltc9-header__cta .pm-ltc9-btn--accent { display: none; }
}

.pm-ltc9-hero {
  padding-block: clamp(36px, 6vw, 72px) clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}

.pm-ltc9-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(190,190,190,0.08), transparent 70%);
  pointer-events: none;
}

.pm-ltc9-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 900px) {
  .pm-ltc9-hero__inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.pm-ltc9-hero__content {}

.pm-ltc9-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pm-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.pm-ltc9-hero__h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  margin-bottom: 16px;
  line-height: 1.18;
}

.pm-ltc9-hero__desc {
  font-size: 1.05rem;
  color: var(--pm-text-muted);
  max-width: 560px;
  margin-bottom: 24px;
}

.pm-ltc9-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.pm-ltc9-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pm-ltc9-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--pm-text-muted);
  white-space: nowrap;
}

.pm-ltc9-badge--accent { border-color: rgba(190,190,190,0.35); color: var(--pm-accent); }
.pm-ltc9-badge--success { border-color: rgba(61,220,132,0.35); color: var(--pm-success); }
.pm-ltc9-badge--warn { border-color: rgba(255,159,67,0.35); color: var(--pm-warning); }

.pm-ltc9-hero__visual {
  display: flex;
  justify-content: center;
}

.pm-ltc9-hero__visual img {
  border-radius: var(--pm-radius-lg);
  width: 100%;
  max-width: 440px;
}

.pm-ltc9-breadcrumb {
  padding-block: 12px;
  border-bottom: 1px solid var(--pm-border);
}

.pm-ltc9-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: var(--pm-text-muted);
}

.pm-ltc9-breadcrumb__item + .pm-ltc9-breadcrumb__item::before {
  content: '/';
  margin-right: 6px;
  opacity: 0.4;
}

.pm-ltc9-breadcrumb__link { color: var(--pm-text-muted); }
.pm-ltc9-breadcrumb__link:hover { color: var(--pm-text); }
.pm-ltc9-breadcrumb__item--current { color: var(--pm-accent); }

.pm-ltc9-toc {
  background: var(--pm-surface-2);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  padding: 20px 24px;
  margin-block: 32px;
}

.pm-ltc9-toc__title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pm-text-muted);
  margin-bottom: 14px;
}

.pm-ltc9-toc__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 4px 24px;
  list-style: none;
  padding: 0;
}

.pm-ltc9-toc__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.86rem;
  color: var(--pm-text-muted);
  transition: color var(--pm-transition);
}

.pm-ltc9-toc__link:hover { color: var(--pm-text); }
.pm-ltc9-toc__link svg { flex-shrink: 0; color: var(--pm-accent); opacity: 0.7; }
.pm-ltc9-toc__link.is-active { color: var(--pm-accent); }

.pm-ltc9-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  align-items: center;
}

.pm-ltc9-filters__label {
  font-size: 0.82rem;
  color: var(--pm-text-muted);
  margin-right: 4px;
}

.pm-ltc9-filter-btn {
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  color: var(--pm-text-muted);
  transition: all var(--pm-transition);
  cursor: pointer;
}

.pm-ltc9-filter-btn:hover,
.pm-ltc9-filter-btn.is-active {
  background: var(--pm-btn-primary);
  border-color: var(--pm-btn-primary);
  color: #fff;
}

.pm-ltc9-sort {
  margin-left: auto;
}

.pm-ltc9-sort select {
  padding: 7px 14px;
  border-radius: var(--pm-radius-sm);
  font-size: 0.82rem;
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  color: var(--pm-text);
  cursor: pointer;
  font-family: inherit;
}

.pm-ltc9-casino-list { display: flex; flex-direction: column; gap: 16px; }

.pm-ltc9-casino-card {
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  overflow: hidden;
  transition: border-color var(--pm-transition), box-shadow var(--pm-transition);
  position: relative;
}

.pm-ltc9-casino-card:hover {
  border-color: var(--pm-border-strong);
  box-shadow: var(--pm-shadow);
}

.pm-ltc9-casino-card--top-1 { border-color: rgba(245,194,66,0.4); box-shadow: 0 0 0 1px rgba(245,194,66,0.12); }
.pm-ltc9-casino-card--top-2 { border-color: rgba(192,200,216,0.3); }
.pm-ltc9-casino-card--top-3 { border-color: rgba(200,121,65,0.3); }

.pm-ltc9-casino-card__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  padding: 20px;
  align-items: center;
}

@media (max-width: 600px) {
  .pm-ltc9-casino-card__top {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }
}

.pm-ltc9-casino-card__pos {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  flex-shrink: 0;
}

.pm-ltc9-casino-card--top-1 .pm-ltc9-casino-card__pos { background: rgba(245,194,66,0.2); color: var(--pm-gold); border-color: rgba(245,194,66,0.4); }
.pm-ltc9-casino-card--top-2 .pm-ltc9-casino-card__pos { background: rgba(192,200,216,0.15); color: var(--pm-silver); border-color: rgba(192,200,216,0.3); }
.pm-ltc9-casino-card--top-3 .pm-ltc9-casino-card__pos { background: rgba(200,121,65,0.15); color: var(--pm-bronze); border-color: rgba(200,121,65,0.3); }

.pm-ltc9-casino-card__identity {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.pm-ltc9-casino-card__logo {
  width: 80px;
  height: 40px;
  border-radius: var(--pm-radius-sm);
  flex-shrink: 0;
  object-fit: contain;
  background: rgba(0,0,0,0.2);
}

.pm-ltc9-casino-card__name { font-size: 1.05rem; font-weight: 700; margin-bottom: 3px; }

.pm-ltc9-casino-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pm-ltc9-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pm-ltc9-tag--au { background: rgba(255,255,255,0.08); color: var(--pm-text-muted); }
.pm-ltc9-tag--deposit { background: var(--pm-success-bg); color: var(--pm-success); }
.pm-ltc9-tag--withdraw { background: var(--pm-success-bg); color: var(--pm-success); }
.pm-ltc9-tag--unconfirmed { background: var(--pm-warning-bg); color: var(--pm-warning); }
.pm-ltc9-tag--curacao { background: var(--pm-surface); color: var(--pm-text-muted); }

.pm-ltc9-casino-card__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  align-items: flex-end;
}

@media (max-width: 600px) {
  .pm-ltc9-casino-card__actions { grid-column: 1 / -1; flex-direction: row; align-items: stretch; }
  .pm-ltc9-casino-card__actions .pm-ltc9-btn { flex: 1; }
}

.pm-ltc9-casino-card__body {
  border-top: 1px solid var(--pm-border);
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.pm-ltc9-casino-card__stat {}
.pm-ltc9-casino-card__stat-label { font-size: 0.73rem; color: var(--pm-text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.pm-ltc9-casino-card__stat-value { font-size: 0.92rem; font-weight: 600; }

.pm-ltc9-casino-card__bonus {
  border-top: 1px solid var(--pm-border);
  padding: 16px 20px;
  background: rgba(245,194,66,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pm-ltc9-casino-card__bonus-icon { color: var(--pm-gold); flex-shrink: 0; }
.pm-ltc9-casino-card__bonus-text { font-size: 0.9rem; font-weight: 600; flex: 1; }
.pm-ltc9-casino-card__bonus-note { font-size: 0.78rem; color: var(--pm-text-muted); }

.pm-ltc9-casino-card__expand {
  border-top: 1px solid var(--pm-border);
  padding: 12px 20px;
}

.pm-ltc9-expand-btn {
  background: none;
  border: none;
  font-size: 0.82rem;
  color: var(--pm-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color var(--pm-transition);
}

.pm-ltc9-expand-btn:hover { color: var(--pm-text); }

.pm-ltc9-casino-card__details {
  display: none;
  padding: 0 20px 20px;
  border-top: 1px dashed var(--pm-border);
}

.pm-ltc9-casino-card__details.is-open { display: block; }

.pm-ltc9-casino-card__pros {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pm-ltc9-casino-card__pros li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--pm-text-muted);
  margin: 0;
}

.pm-ltc9-casino-card__pros li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pm-success);
  flex-shrink: 0;
}

.pm-ltc9-info-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.pm-ltc9-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.pm-ltc9-info-table th,
.pm-ltc9-info-table td {
  padding: 12px 16px;
  border: 1px solid var(--pm-border);
  text-align: left;
  vertical-align: top;
}

.pm-ltc9-info-table th {
  background: var(--pm-surface);
  font-weight: 600;
  color: var(--pm-text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pm-ltc9-info-table td:first-child {
  width: 220px;
  background: var(--pm-surface-2);
  color: var(--pm-text-muted);
  font-size: 0.85rem;
  white-space: nowrap;
}

.pm-ltc9-info-table tr:hover td { background: var(--pm-surface); }
.pm-ltc9-info-table td:first-child:hover { background: var(--pm-surface); }

.pm-ltc9-info-table__icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pm-ltc9-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 640px) { .pm-ltc9-pros-cons { grid-template-columns: 1fr; } }

.pm-ltc9-pros-cons__col {
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  padding: 20px;
}

.pm-ltc9-pros-cons__col--pros { border-color: rgba(61,220,132,0.25); }
.pm-ltc9-pros-cons__col--cons { border-color: rgba(231,76,60,0.25); }

.pm-ltc9-pros-cons__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.pm-ltc9-pros-cons__col--pros .pm-ltc9-pros-cons__title { color: var(--pm-success); }
.pm-ltc9-pros-cons__col--cons .pm-ltc9-pros-cons__title { color: var(--pm-danger); }

.pm-ltc9-pros-cons__list { list-style: none; padding: 0; }
.pm-ltc9-pros-cons__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--pm-border);
  font-size: 0.9rem;
  margin: 0;
}

.pm-ltc9-pros-cons__list li:last-child { border-bottom: none; }

.pm-ltc9-pros-cons__list li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.pm-ltc9-pros-cons__col--pros li::before { background: var(--pm-success); }
.pm-ltc9-pros-cons__col--cons li::before { background: var(--pm-danger); }

.pm-ltc9-steps { display: flex; flex-direction: column; gap: 16px; }

.pm-ltc9-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  padding: 18px 20px;
}

.pm-ltc9-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pm-btn-primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pm-ltc9-step__title { font-weight: 600; margin-bottom: 6px; }
.pm-ltc9-step__body { font-size: 0.9rem; color: var(--pm-text-muted); }

.pm-ltc9-alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 18px;
  border-radius: var(--pm-radius-sm);
  font-size: 0.88rem;
  margin-top: 16px;
}

.pm-ltc9-alert--warn { background: var(--pm-warning-bg); border: 1px solid rgba(255,159,67,0.25); color: var(--pm-warning); }
.pm-ltc9-alert--info { background: var(--pm-surface); border: 1px solid var(--pm-border); color: var(--pm-text-muted); }

.pm-ltc9-timeline {
  position: relative;
  padding-left: 28px;
}

.pm-ltc9-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: var(--pm-border);
}

.pm-ltc9-timeline__item {
  position: relative;
  padding: 0 0 28px 24px;
}

.pm-ltc9-timeline__item:last-child { padding-bottom: 0; }

.pm-ltc9-timeline__dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--pm-surface);
  border: 2px solid var(--pm-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-ltc9-timeline__dot--active {
  border-color: var(--pm-success);
  background: var(--pm-success-bg);
}

.pm-ltc9-timeline__dot--done { border-color: var(--pm-accent); background: rgba(190,190,190,0.1); }

.pm-ltc9-timeline__title { font-weight: 600; margin-bottom: 4px; }
.pm-ltc9-timeline__time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pm-success);
  background: var(--pm-success-bg);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 6px;
}

.pm-ltc9-timeline__body { font-size: 0.88rem; color: var(--pm-text-muted); }

.pm-ltc9-bonus-cards {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
}

.pm-ltc9-bonus-card {
  flex: 0 0 min(340px, 88vw);
  scroll-snap-align: start;
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  padding: 22px;
}

.pm-ltc9-bonus-card__casino {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.pm-ltc9-bonus-card__logo {
  width: 72px;
  height: 36px;
  object-fit: contain;
  border-radius: var(--pm-radius-sm);
  background: rgba(0,0,0,0.2);
}

.pm-ltc9-bonus-card__title { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.pm-ltc9-bonus-card__sub { font-size: 0.82rem; color: var(--pm-text-muted); }

.pm-ltc9-bonus-card__facts { display: flex; flex-direction: column; gap: 8px; margin-block: 16px; }
.pm-ltc9-bonus-card__fact { display: flex; justify-content: space-between; font-size: 0.85rem; }
.pm-ltc9-bonus-card__fact-label { color: var(--pm-text-muted); }
.pm-ltc9-bonus-card__fact-value { font-weight: 600; }

.pm-ltc9-bonus-card__compat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pm-success);
  background: var(--pm-success-bg);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.pm-ltc9-alt-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.pm-ltc9-alt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.pm-ltc9-alt-table th,
.pm-ltc9-alt-table td {
  padding: 11px 14px;
  border: 1px solid var(--pm-border);
  text-align: left;
}

.pm-ltc9-alt-table th {
  background: var(--pm-surface);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--pm-text-muted);
  white-space: nowrap;
}

.pm-ltc9-alt-table td:first-child { font-weight: 600; white-space: nowrap; }
.pm-ltc9-alt-table tr:hover td { background: var(--pm-surface); }
.pm-ltc9-alt-table tr.pm-ltc9-alt-table__highlight td { background: rgba(190,190,190,0.06); }

.pm-ltc9-review-content {
  background: var(--pm-surface-2);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  padding: clamp(20px, 4vw, 40px);
}

.pm-ltc9-prose h2 { margin-top: 1.6em; margin-bottom: 0.6em; }
.pm-ltc9-prose h3 { margin-top: 1.3em; margin-bottom: 0.5em; font-size: 1.1rem; }
.pm-ltc9-prose h4 { margin-top: 1.1em; margin-bottom: 0.4em; font-size: 1rem; }
.pm-ltc9-prose p { margin-bottom: 1em; color: var(--pm-text-muted); }
.pm-ltc9-prose strong { color: var(--pm-text); }
.pm-ltc9-prose ul, .pm-ltc9-prose ol { margin-bottom: 1em; color: var(--pm-text-muted); }
.pm-ltc9-prose a { color: var(--pm-accent-light); }
.pm-ltc9-prose a:hover { color: var(--pm-text); }
.pm-ltc9-prose table { width: 100%; border-collapse: collapse; margin-bottom: 1.2em; font-size: 0.9rem; }
.pm-ltc9-prose table th, .pm-ltc9-prose table td { padding: 10px 14px; border: 1px solid var(--pm-border); text-align: left; }
.pm-ltc9-prose table th { background: var(--pm-surface); font-weight: 600; }
.pm-ltc9-prose blockquote { border-left: 3px solid var(--pm-accent); padding-left: 16px; color: var(--pm-text-muted); font-style: italic; margin-bottom: 1em; }
.pm-ltc9-prose img { border-radius: var(--pm-radius-sm); margin-bottom: 1em; }
.pm-ltc9-prose figure { margin-bottom: 1.2em; }
.pm-ltc9-prose figcaption { font-size: 0.82rem; color: var(--pm-text-dim); text-align: center; margin-top: 6px; }
.pm-ltc9-prose:empty { display: none; }

.pm-ltc9-faq { display: flex; flex-direction: column; gap: 8px; }

.pm-ltc9-faq details {
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  overflow: hidden;
}

.pm-ltc9-faq details[open] { border-color: var(--pm-border-strong); }

.pm-ltc9-faq summary {
  list-style: none;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  transition: background var(--pm-transition);
}

.pm-ltc9-faq summary::-webkit-details-marker { display: none; }
.pm-ltc9-faq summary:hover { background: var(--pm-surface-hover); }

.pm-ltc9-faq summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--pm-text-muted);
  flex-shrink: 0;
  transition: transform var(--pm-transition);
}

.pm-ltc9-faq details[open] summary::after {
  content: '−';
}

.pm-ltc9-faq__answer {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--pm-text-muted);
  border-top: 1px solid var(--pm-border);
  margin-top: -1px;
  padding-top: 14px;
}

.pm-ltc9-faq__answer p:last-child { margin-bottom: 0; }

.pm-ltc9-reviews-empty {
  text-align: center;
  padding: 32px 20px;
  background: var(--pm-surface-2);
  border: 1px dashed var(--pm-border);
  border-radius: var(--pm-radius);
  margin-bottom: 28px;
}

.pm-ltc9-reviews-empty__icon { margin: 0 auto 12px; opacity: 0.3; }
.pm-ltc9-reviews-empty__title { font-size: 1rem; font-weight: 600; margin-bottom: 6px; }
.pm-ltc9-reviews-empty__sub { font-size: 0.85rem; color: var(--pm-text-muted); }

.pm-ltc9-form { display: flex; flex-direction: column; gap: 16px; max-width: 540px; }

.pm-ltc9-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .pm-ltc9-form-row { grid-template-columns: 1fr; } }

.pm-ltc9-field { display: flex; flex-direction: column; gap: 6px; }

.pm-ltc9-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--pm-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pm-ltc9-field input,
.pm-ltc9-field textarea {
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--pm-text);
  font-family: inherit;
  transition: border-color var(--pm-transition);
  width: 100%;
}

.pm-ltc9-field input:focus,
.pm-ltc9-field textarea:focus {
  outline: none;
  border-color: var(--pm-border-strong);
}

.pm-ltc9-field input::placeholder,
.pm-ltc9-field textarea::placeholder { color: var(--pm-text-dim); }

.pm-ltc9-field textarea { min-height: 100px; resize: vertical; }

.pm-ltc9-field input.is-invalid,
.pm-ltc9-field textarea.is-invalid { border-color: var(--pm-danger); }

.pm-ltc9-field__error { font-size: 0.78rem; color: var(--pm-danger); }

.pm-ltc9-field__note {
  font-size: 0.75rem;
  color: var(--pm-text-dim);
}

.pm-ltc9-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--pm-text-muted);
  cursor: pointer;
}

.pm-ltc9-checkbox input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }

.pm-ltc9-form-status { display: none; padding: 12px 16px; border-radius: var(--pm-radius-sm); font-size: 0.9rem; }
.pm-ltc9-form-status--info { display: block; background: var(--pm-surface); border: 1px solid var(--pm-border); color: var(--pm-text-muted); }

.pm-ltc9-author {
  display: flex;
  gap: 24px;
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius-lg);
  padding: 28px;
  align-items: flex-start;
}

@media (max-width: 600px) { .pm-ltc9-author { flex-direction: column; } }

.pm-ltc9-author__photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--pm-surface-dark);
  object-fit: cover;
}

.pm-ltc9-author__name { font-size: 1.1rem; font-weight: 700; margin-bottom: 3px; }
.pm-ltc9-author__title { font-size: 0.82rem; color: var(--pm-accent); margin-bottom: 10px; }
.pm-ltc9-author__bio { font-size: 0.9rem; color: var(--pm-text-muted); margin-bottom: 14px; }
.pm-ltc9-author__methodology { font-size: 0.85rem; color: var(--pm-text-muted); margin-bottom: 14px; }

.pm-ltc9-author__links { display: flex; flex-wrap: wrap; gap: 10px; }
.pm-ltc9-author__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  padding: 6px 12px;
  border-radius: var(--pm-radius-sm);
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  color: var(--pm-text-muted);
  transition: all var(--pm-transition);
  text-decoration: none;
}

.pm-ltc9-author__link:hover { color: var(--pm-text); border-color: var(--pm-border-strong); }

.pm-ltc9-author__date { font-size: 0.78rem; color: var(--pm-text-dim); margin-top: 10px; }

.pm-ltc9-sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--pm-surface-dark);
  border-top: 1px solid var(--pm-border-strong);
  padding: 12px clamp(16px, 4vw, 32px);
  padding-bottom: max(12px, env(safe-area-inset-bottom, 12px));
  z-index: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.pm-ltc9-sticky-widget.is-hidden { transform: translateY(110%); }

.pm-ltc9-sticky-widget__text {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
}

.pm-ltc9-sticky-widget__sub {
  display: block;
  font-size: 0.75rem;
  color: var(--pm-text-muted);
  font-weight: 400;
}

.pm-ltc9-sticky-widget__close {
  background: none;
  border: none;
  color: var(--pm-text-muted);
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.pm-ltc9-sticky-spacer { height: 68px; }

@media (min-width: 900px) {
  .pm-ltc9-sticky-widget { justify-content: center; gap: 24px; }
  .pm-ltc9-sticky-widget__text { flex: 0; white-space: nowrap; }
}

.pm-ltc9-footer {
  background: var(--pm-surface-dark);
  border-top: 1px solid var(--pm-border);
  padding-top: 48px;
  padding-bottom: 28px;
  margin-top: 0;
}

.pm-ltc9-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 40px;
  margin-bottom: 32px;
}

@media (max-width: 900px) {
  .pm-ltc9-footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .pm-ltc9-footer__top { grid-template-columns: 1fr; gap: 28px; }
}

.pm-ltc9-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--pm-text);
  margin-bottom: 12px;
  text-decoration: none;
}

.pm-ltc9-footer__desc { font-size: 0.85rem; color: var(--pm-text-muted); margin-bottom: 12px; line-height: 1.55; }
.pm-ltc9-footer__country { font-size: 0.82rem; color: var(--pm-text-dim); }

.pm-ltc9-footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.pm-ltc9-footer__nav-heading {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pm-text-muted);
  margin-bottom: 12px;
}

.pm-ltc9-footer__nav-list { list-style: none; padding: 0; }
.pm-ltc9-footer__nav-list li { margin-bottom: 8px; }
.pm-ltc9-footer__nav-list a { font-size: 0.85rem; color: var(--pm-text-muted); }
.pm-ltc9-footer__nav-list a:hover { color: var(--pm-text); }

.pm-ltc9-footer__payment-logos { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }

.pm-ltc9-footer__payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: var(--pm-radius-sm);
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pm-text-muted);
}

.pm-ltc9-footer__payment-badge--primary { border-color: rgba(190,190,190,0.3); color: var(--pm-accent); }

.pm-ltc9-footer__trust { display: flex; flex-wrap: wrap; gap: 8px; }
.pm-ltc9-footer__trust-badge {
  font-size: 0.72rem;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  color: var(--pm-text-muted);
}

.pm-ltc9-footer__responsible {
  background: var(--pm-surface);
  border: 1px solid var(--pm-border);
  border-radius: var(--pm-radius);
  padding: 16px 20px;
  margin-bottom: 24px;
}

.pm-ltc9-footer__responsible-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.pm-ltc9-footer__age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pm-danger-bg);
  border: 1px solid rgba(231,76,60,0.3);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pm-danger);
  flex-shrink: 0;
  line-height: 1;
}

.pm-ltc9-footer__responsible p { font-size: 0.82rem; color: var(--pm-text-muted); margin: 0; }

.pm-ltc9-footer__bottom { border-top: 1px solid var(--pm-border); padding-top: 20px; }
.pm-ltc9-footer__disclosure { font-size: 0.78rem; color: var(--pm-text-dim); margin-bottom: 10px; line-height: 1.55; }
.pm-ltc9-footer__copy { font-size: 0.78rem; color: var(--pm-text-dim); }

.pm-ltc9-info-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  padding-block: 32px;
}

@media (max-width: 900px) {
  .pm-ltc9-info-layout { grid-template-columns: 1fr; }
  .pm-ltc9-info-sidebar { order: -1; }
}

.pm-ltc9-info-content__h1 { font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: 28px; }
.pm-ltc9-info-content__body { font-size: 0.93rem; }

.pm-ltc9-info-sidebar { display: flex; flex-direction: column; gap: 16px; }

.pm-ltc9-sidebar-widget__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--pm-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pm-ltc9-sidebar-widget__title--warn { color: var(--pm-warning); }
.pm-ltc9-sidebar-widget__list { list-style: none; padding: 0; }
.pm-ltc9-sidebar-widget__list li { padding: 8px 0; border-bottom: 1px solid var(--pm-border); margin: 0; }
.pm-ltc9-sidebar-widget__list li:last-child { border-bottom: none; }
.pm-ltc9-sidebar-widget__list a { font-size: 0.85rem; color: var(--pm-text-muted); }
.pm-ltc9-sidebar-widget__list a:hover { color: var(--pm-text); }
.pm-ltc9-sidebar-widget--responsible { border-color: rgba(255,159,67,0.2); }
.pm-ltc9-sidebar-widget--responsible p { font-size: 0.82rem; color: var(--pm-text-muted); }

.pm-ltc9-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (max-width: 700px) { .pm-ltc9-two-col { grid-template-columns: 1fr; } }

.pm-ltc9-divider { height: 1px; background: var(--pm-border); margin-block: 8px; }

.pm-ltc9-note {
  font-size: 0.8rem;
  color: var(--pm-text-dim);
  font-style: italic;
  margin-top: 12px;
}

.wp-block-paragraph { display: block; }
.entry-content { display: block; }
.site-main { display: block; }
.has-text-align-left { text-align: left; }
.wp-element-caption { display: none; }
.elementor-element { display: inline; }
.yoast-schema-graph { display: none; }

.pm-ltc9-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; }

.pm-ltc9-body--info .pm-ltc9-main--info { padding-bottom: 48px; }

@media (max-width: 360px) {
  .pm-ltc9-hero__cta { flex-direction: column; }
  .pm-ltc9-hero__cta .pm-ltc9-btn { width: 100%; }
}

@media (min-width: 640px) {
  .pm-ltc9-steps { display: grid; grid-template-columns: 1fr 1fr; }
}
.pm-ltc9-header__logo img,.pm-ltc9-footer__logo img{width:auto;height:44px;max-width:180px;object-fit:contain;display:block}
.pm-ltc9-casino-card__logo{width:112px;height:64px;padding:8px 10px;border-radius:12px;border:1px solid rgba(255,255,255,.14);background:linear-gradient(160deg,#1d2440,#0c1020);object-fit:contain;flex-shrink:0}
.pm-ltc9-bonus-card__logo{width:92px;height:52px;padding:6px 8px;border-radius:10px;border:1px solid rgba(255,255,255,.14);background:linear-gradient(160deg,#1d2440,#0c1020);object-fit:contain}
.pm-ltc9-casino-card__logo[src*="ricky-casino"],.pm-ltc9-bonus-card__logo[src*="ricky-casino"]{background:#fff;border-color:rgba(0,0,0,.14)}
.pm-ltc9-hero{background-color:#132388;background-image:url('/assets/img/litecoin-banner.png');background-size:cover;background-position:center;background-repeat:no-repeat}
.pm-ltc9-hero::before{content:'';position:absolute;inset:0;background:linear-gradient(105deg,rgba(10,14,50,.95) 0%,rgba(19,35,136,.9) 55%,rgba(27,56,165,.82) 100%);z-index:0}
.pm-ltc9-hero>*{position:relative;z-index:1}
.pm-ltc9-promo-banner{position:relative;overflow:hidden;margin:0 0 24px;padding:24px;border-radius:14px;color:#fff;display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap;background-color:#132388;background-image:url('/assets/img/litecoin-banner.png');background-size:cover;background-position:center}
.pm-ltc9-promo-banner::before{content:'';position:absolute;inset:0;background:linear-gradient(100deg,rgba(10,14,50,.95),rgba(27,56,165,.8))}
.pm-ltc9-promo-banner>*{position:relative;z-index:1}
.pm-ltc9-promo-banner span{display:block;font-size:.72rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase;opacity:.85;margin-bottom:6px}
.pm-ltc9-promo-banner strong{display:block;font-size:1.15rem;margin-bottom:4px}
.pm-ltc9-promo-banner p{margin:0;font-size:.9rem;opacity:.85}
.pm-ltc9-author img{width:120px;height:120px;border-radius:50%;object-fit:cover;background:rgba(255,255,255,.08);border:2px solid var(--pm-border);flex-shrink:0}
.pm-ltc9-prose{background:rgba(255,255,255,.04);border:2px solid var(--pm-accent);border-radius:14px;padding:28px 26px}
.pm-ltc9-prose>*{max-width:100%}
.pm-ltc9-prose img{max-width:100%;height:auto}
.pm-ltc9-prose pre,.pm-ltc9-prose code{white-space:pre-wrap;word-break:break-word}
.pm-ltc9-prose table{display:block;overflow-x:auto;-webkit-overflow-scrolling:touch;max-width:100%;min-width:0;width:100%;white-space:nowrap;border-collapse:collapse;margin:22px 0;border:2px solid var(--pm-accent);border-radius:10px}
.pm-ltc9-prose th,.pm-ltc9-prose td{border:1px solid var(--pm-border);padding:12px;text-align:left;vertical-align:top;white-space:nowrap}
.pm-ltc9-prose th{background:rgba(255,255,255,.08)}
.pm-ltc9-prose tbody tr:nth-child(even){background:rgba(255,255,255,.04)}
.pm-ltc9-prose ul,.pm-ltc9-prose ol{background:rgba(255,255,255,.05);border:1px solid var(--pm-border);border-radius:10px;padding:16px 18px 16px 38px;margin:18px 0}
.pm-ltc9-prose blockquote{margin:18px 0;padding:16px 18px;background:rgba(255,255,255,.05);border:1px solid var(--pm-border);border-left:5px solid var(--pm-accent);border-radius:10px}
.pm-ltc9-prose h2,.pm-ltc9-prose h3{border-left:5px solid var(--pm-accent);padding-left:12px}
@media (max-width:900px){
  .pm-ltc9-header__inner{justify-content:flex-end;gap:10px}
  .pm-ltc9-header__logo{margin-right:auto}
  .pm-ltc9-header__center{display:none}
  .pm-ltc9-header__cta{display:none}
  .pm-ltc9-burger{order:9;margin-left:0}
  .pm-ltc9-nav{position:absolute;top:100%;left:auto;right:10px;width:min(300px,calc(100vw - 20px));border:1px solid var(--pm-border);border-radius:0 0 14px 14px;box-shadow:0 14px 34px rgba(0,0,0,.45);max-height:calc(100vh - var(--pm-header-h));overflow-y:auto}
  .pm-ltc9-nav .pm-ltc9-header__cta{display:flex;flex-direction:column;gap:10px;margin-top:14px;padding-top:14px;border-top:1px solid var(--pm-border)}
  .pm-ltc9-nav .pm-ltc9-header__cta .pm-ltc9-btn{width:100%;justify-content:center;text-align:center;display:inline-flex}
  .pm-ltc9-nav .pm-ltc9-header__cta .pm-ltc9-btn--accent{display:inline-flex}
  .pm-ltc9-header__logo img,.pm-ltc9-footer__logo img{height:34px;max-width:140px}
  .pm-ltc9-casino-card__logo{width:92px;height:54px}
  .pm-ltc9-author img{width:96px;height:96px}
  .pm-ltc9-prose{padding:18px 16px}
}
.pm-ltc9-hero::before{background:linear-gradient(105deg,rgba(6,10,36,.96) 0%,rgba(10,18,70,.93) 45%,rgba(12,22,80,.9) 100%)}
@media (min-width:901px){
  .pm-ltc9-header__inner{display:flex;align-items:center;gap:16px}
  .pm-ltc9-nav{display:flex;align-items:center;gap:14px;margin-left:auto}
  .pm-ltc9-nav__list{display:flex;flex-direction:row;align-items:center;gap:6px;list-style:none;margin:0;padding:0}
  .pm-ltc9-nav .pm-ltc9-header__cta{display:flex;flex-direction:row;align-items:center;gap:8px;margin:0 0 0 12px;padding:0;border:0}
  .pm-ltc9-nav .pm-ltc9-header__cta .pm-ltc9-btn{width:auto}
}
.pm-ltc9-hero{background-image:linear-gradient(rgba(7,11,40,.9),rgba(7,11,40,.9)),url('/assets/img/litecoin-banner.png');background-size:cover,cover;background-position:center,center;background-repeat:no-repeat,no-repeat}
.pm-ltc9-hero::before{top:-60px;right:-80px;left:auto;bottom:auto;width:500px;height:500px;inset:auto -80px auto auto;background:radial-gradient(ellipse at center,rgba(190,190,190,.08),transparent 70%)}
