/* ============================================================
   PHdream Casino - Base Palette Stylesheet
   Mobile-first 320-430px canvas. Prefix: s264-
   Palette: #2C3E50 (deep navy) | #E8F5E8 (mint cream)
            #F4A460 (sandy gold) | #8B4513 (saddle brown)
   ============================================================ */

:root {
  --s264-navy: #2C3E50;
  --s264-navy-2: #22303f;
  --s264-navy-3: #1a2632;
  --s264-mint: #E8F5E8;
  --s264-gold: #F4A460;
  --s264-gold-2: #ffb574;
  --s264-brown: #8B4513;
  --s264-brown-2: #6e3610;
  --s264-text: #f3f7f3;
  --s264-text-dim: #c3d1c3;
  --s264-muted: #8aa09a;
  --s264-line: rgba(244, 164, 96, 0.22);
  --s264-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  --s264-radius: 14px;
  --s264-radius-sm: 10px;
  --s264-header-h: 60px;
  --s264-bottomnav-h: 64px;
}

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

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, system-ui, sans-serif;
  background: linear-gradient(180deg, var(--s264-navy-3) 0%, var(--s264-navy) 35%, var(--s264-navy-2) 100%);
  color: var(--s264-text);
  line-height: 1.6;
  font-size: 15px;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Mobile canvas centered on wider screens */
.s264-shell {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  background: var(--s264-navy);
  position: relative;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

a { color: var(--s264-gold); text-decoration: none; }
a:hover { color: var(--s264-gold-2); }
img { max-width: 100%; display: block; }

/* ============================================================
   Header
   ============================================================ */
.s264-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--s264-header-h);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: linear-gradient(90deg, var(--s264-navy-2) 0%, var(--s264-navy) 60%, var(--s264-brown-2) 100%);
  border-bottom: 1px solid var(--s264-line);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.s264-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.s264-brand .s264-logo {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--s264-gold);
  flex-shrink: 0;
  background: var(--s264-navy-3);
}

.s264-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}

.s264-brand-text .s264-brand-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--s264-gold);
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.s264-brand-text .s264-brand-tag {
  font-size: 10px;
  color: var(--s264-text-dim);
  letter-spacing: 0.5px;
}

.s264-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.s264-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
  font-family: inherit;
  min-height: 36px;
}

.s264-btn:active { transform: scale(0.96); }

.s264-btn-login {
  background: transparent;
  color: var(--s264-mint);
  border: 1px solid var(--s264-mint);
}

.s264-btn-register {
  background: linear-gradient(135deg, var(--s264-gold) 0%, var(--s264-brown) 100%);
  color: #1a2632;
  box-shadow: 0 4px 14px rgba(244, 164, 96, 0.35);
}

.s264-btn-register:hover { filter: brightness(1.08); color: #1a2632; }

.s264-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(232, 245, 232, 0.08);
  color: var(--s264-mint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--s264-line);
  cursor: pointer;
  flex-shrink: 0;
}

.s264-icon-btn svg { width: 20px; height: 20px; }

/* ============================================================
   Mobile slide menu
   ============================================================ */
.s264-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 22, 0.55);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.s264-menu-backdrop.s264-open {
  opacity: 1;
  visibility: visible;
}

.s264-side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 78%;
  max-width: 320px;
  height: 100%;
  background: var(--s264-navy-3);
  z-index: 210;
  transform: translateX(-105%);
  transition: transform 0.28s ease;
  overflow-y: auto;
  padding: 18px 16px calc(var(--s264-bottomnav-h) + 20px);
  border-right: 1px solid var(--s264-line);
}

.s264-side-menu.s264-open { transform: translateX(0); }

.s264-menu-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--s264-line);
}

.s264-menu-header img { width: 36px; height: 36px; border-radius: 8px; }

.s264-menu-header .s264-menu-title {
  font-weight: 800;
  color: var(--s264-gold);
  font-size: 16px;
}

.s264-menu-section-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--s264-muted);
  margin: 14px 4px 6px;
}

.s264-menu-list { list-style: none; }

.s264-menu-list li a {
  display: block;
  padding: 11px 12px;
  border-radius: var(--s264-radius-sm);
  color: var(--s264-text);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  transition: background 0.15s ease;
}

.s264-menu-list li a:hover,
.s264-menu-list li a:active {
  background: rgba(244, 164, 96, 0.12);
  color: var(--s264-gold);
}

.s264-menu-cta {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.s264-menu-cta .s264-btn { width: 100%; padding: 12px; }

/* ============================================================
   Hero
   ============================================================ */
.s264-hero {
  position: relative;
  padding: 14px 12px 4px;
}

.s264-hero-carousel {
  position: relative;
  border-radius: var(--s264-radius);
  overflow: hidden;
  box-shadow: var(--s264-shadow);
  border: 1px solid var(--s264-line);
}

.s264-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.s264-slide {
  flex: 0 0 100%;
  position: relative;
}

.s264-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.s264-slide-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  background: linear-gradient(180deg, rgba(26,38,50,0) 0%, rgba(26,38,50,0.85) 100%);
  padding: 18px 12px 10px;
  border-radius: 0 0 var(--s264-radius) var(--s264-radius);
}

.s264-slide-caption h2 {
  font-size: 18px;
  color: var(--s264-gold);
  font-weight: 800;
  margin-bottom: 3px;
}

.s264-slide-caption p {
  font-size: 12px;
  color: var(--s264-text);
}

.s264-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 8px 0 2px;
}

.s264-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(232, 245, 232, 0.25);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.s264-dot.s264-active {
  background: var(--s264-gold);
  width: 22px;
  border-radius: 4px;
}

/* ============================================================
   Quick stats / features strip
   ============================================================ */
.s264-quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 8px 12px 4px;
}

.s264-quick-item {
  background: rgba(232, 245, 232, 0.06);
  border: 1px solid var(--s264-line);
  border-radius: var(--s264-radius-sm);
  padding: 9px 4px;
  text-align: center;
}

.s264-quick-item .s264-qi-num {
  font-size: 16px;
  font-weight: 800;
  color: var(--s264-gold);
  line-height: 1.1;
}

.s264-quick-item .s264-qi-lbl {
  font-size: 10px;
  color: var(--s264-text-dim);
  margin-top: 2px;
}

/* ============================================================
   CTA band
   ============================================================ */
.s264-cta-band {
  margin: 12px;
  padding: 14px;
  border-radius: var(--s264-radius);
  background: linear-gradient(135deg, var(--s264-brown) 0%, var(--s264-brown-2) 60%, var(--s264-navy) 100%);
  border: 1px solid var(--s264-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: var(--s264-shadow);
}

.s264-cta-band .s264-cta-text {
  flex: 1;
  min-width: 0;
}

.s264-cta-band h3 {
  font-size: 15px;
  color: var(--s264-gold);
  font-weight: 800;
}

.s264-cta-band p {
  font-size: 11.5px;
  color: var(--s264-text);
  margin-top: 2px;
}

.s264-cta-band .s264-btn { padding: 10px 16px; }

/* ============================================================
   Section heads
   ============================================================ */
.s264-section {
  padding: 14px 12px 4px;
}

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

.s264-section-head h2 {
  font-size: 17px;
  font-weight: 800;
  color: var(--s264-gold);
  position: relative;
  padding-left: 12px;
}

.s264-section-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: linear-gradient(180deg, var(--s264-gold), var(--s264-brown));
  border-radius: 2px;
}

.s264-section-head a {
  font-size: 12px;
  color: var(--s264-mint);
  font-weight: 600;
}

/* ============================================================
   Category filter chips
   ============================================================ */
.s264-chips {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin: 0 -12px;
  padding-left: 12px;
  padding-right: 12px;
  scrollbar-width: none;
}

.s264-chips::-webkit-scrollbar { display: none; }

.s264-chip {
  flex-shrink: 0;
  padding: 7px 14px;
  border-radius: 20px;
  background: rgba(232, 245, 232, 0.07);
  border: 1px solid var(--s264-line);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--s264-text-dim);
  cursor: pointer;
  transition: all 0.18s ease;
  font-family: inherit;
}

.s264-chip.s264-active {
  background: linear-gradient(135deg, var(--s264-gold), var(--s264-brown));
  color: #1a2632;
  border-color: var(--s264-gold);
}

/* ============================================================
   Game grid
   ============================================================ */
.s264-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

@media (min-width: 375px) {
  .s264-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
}

@media (min-width: 415px) {
  .s264-grid { grid-template-columns: repeat(5, 1fr); }
}

.s264-card {
  background: var(--s264-navy-2);
  border: 1px solid var(--s264-line);
  border-radius: var(--s264-radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  display: block;
  position: relative;
}

.s264-card:hover,
.s264-card:focus {
  transform: translateY(-3px);
  border-color: var(--s264-gold);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.5);
}

.s264-card .s264-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--s264-navy-3);
}

.s264-card-tag {
  position: absolute;
  top: 4px;
  left: 4px;
  background: rgba(139, 69, 19, 0.85);
  color: var(--s264-mint);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.s264-card-name {
  padding: 5px 6px 7px;
  font-size: 11px;
  font-weight: 600;
  color: var(--s264-text);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Larger featured game tiles for hot section */
.s264-grid-featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.s264-feature-card {
  background: linear-gradient(135deg, var(--s264-navy-2), var(--s264-navy-3));
  border: 1px solid var(--s264-line);
  border-radius: var(--s264-radius);
  overflow: hidden;
  display: block;
  position: relative;
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.s264-feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--s264-gold);
}

.s264-feature-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
}

.s264-feature-body {
  padding: 8px 10px 10px;
}

.s264-feature-body h3 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--s264-gold);
  margin-bottom: 3px;
}

.s264-feature-body p {
  font-size: 11.5px;
  color: var(--s264-text-dim);
  line-height: 1.4;
}

.s264-play-badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: rgba(244, 164, 96, 0.92);
  color: #1a2632;
  font-size: 9.5px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 5px;
  letter-spacing: 0.4px;
}

/* ============================================================
   Info / promo / about blocks
   ============================================================ */
.s264-info {
  background: rgba(232, 245, 232, 0.04);
  border: 1px solid var(--s264-line);
  border-radius: var(--s264-radius);
  padding: 14px;
  margin: 4px 12px 8px;
}

.s264-info h3 {
  font-size: 15px;
  color: var(--s264-gold);
  margin-bottom: 6px;
  font-weight: 800;
}

.s264-info p {
  font-size: 13px;
  color: var(--s264-text-dim);
  margin-bottom: 8px;
}

.s264-info ul {
  list-style: none;
  padding: 0;
}

.s264-info ul li {
  font-size: 12.5px;
  color: var(--s264-text-dim);
  padding: 5px 0 5px 18px;
  position: relative;
  border-bottom: 1px dashed rgba(232, 245, 232, 0.08);
}

.s264-info ul li:last-child { border-bottom: none; }

.s264-info ul li::before {
  content: "▸";
  position: absolute;
  left: 4px;
  color: var(--s264-gold);
}

.s264-info a { font-weight: 600; }

.s264-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.s264-pill {
  background: rgba(244, 164, 96, 0.12);
  color: var(--s264-gold);
  border: 1px solid var(--s264-gold);
  border-radius: 14px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
}

/* Two-column promo */
.s264-promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 4px 12px;
}

.s264-promo-card {
  background: linear-gradient(140deg, var(--s264-brown-2), var(--s264-navy-2));
  border: 1px solid var(--s264-gold);
  border-radius: var(--s264-radius);
  padding: 12px;
  text-align: center;
  display: block;
}

.s264-promo-card .s264-promo-icon {
  font-size: 22px;
  margin-bottom: 4px;
}

.s264-promo-card h4 {
  font-size: 13px;
  color: var(--s264-gold);
  font-weight: 800;
  margin-bottom: 3px;
}

.s264-promo-card p {
  font-size: 11px;
  color: var(--s264-text-dim);
  line-height: 1.35;
}

/* ============================================================
   Footer
   ============================================================ */
.s264-footer {
  background: var(--s264-navy-3);
  border-top: 1px solid var(--s264-line);
  padding: 18px 14px calc(var(--s264-bottomnav-h) + 18px);
  margin-top: 16px;
}

.s264-footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.s264-footer-brand img { width: 36px; height: 36px; border-radius: 8px; }

.s264-footer-brand .s264-fb-text h4 {
  color: var(--s264-gold);
  font-size: 15px;
  font-weight: 800;
}

.s264-footer-brand .s264-fb-text p {
  font-size: 11px;
  color: var(--s264-text-dim);
}

.s264-footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.s264-footer-col h5 {
  font-size: 12px;
  color: var(--s264-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.s264-footer-col ul { list-style: none; }

.s264-footer-col ul li { margin-bottom: 5px; }

.s264-footer-col ul li a {
  font-size: 12px;
  color: var(--s264-text-dim);
}

.s264-footer-col ul li a:hover { color: var(--s264-gold); }

.s264-footer-pay {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0;
}

.s264-pay-chip {
  background: rgba(232, 245, 232, 0.08);
  border: 1px solid var(--s264-line);
  color: var(--s264-mint);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 10.5px;
  font-weight: 600;
}

.s264-footer-bottom {
  border-top: 1px solid var(--s264-line);
  padding-top: 10px;
  font-size: 11px;
  color: var(--s264-muted);
  text-align: center;
}

.s264-footer-bottom a { color: var(--s264-mint); }

.s264-disclaimer {
  font-size: 10.5px;
  color: var(--s264-muted);
  margin-top: 8px;
  line-height: 1.5;
  padding: 8px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

/* ============================================================
   Bottom navigation (mobile only)
   ============================================================ */
.s264-bottomnav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: var(--s264-bottomnav-h);
  background: linear-gradient(180deg, var(--s264-navy-2) 0%, var(--s264-navy-3) 100%);
  border-top: 1px solid var(--s264-line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 150;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.5);
}

.s264-bottomnav button {
  background: none;
  border: none;
  color: var(--s264-text-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  cursor: pointer;
  font-family: inherit;
  padding: 6px 2px;
  transition: color 0.2s ease;
  position: relative;
}

.s264-bottomnav button svg {
  width: 22px;
  height: 22px;
}

.s264-bottomnav button .s264-bn-label {
  font-size: 10px;
  font-weight: 600;
}

.s264-bottomnav button.s264-active {
  color: var(--s264-gold);
}

.s264-bottomnav button.s264-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 3px;
  background: var(--s264-gold);
  border-radius: 0 0 3px 3px;
}

.s264-bottomnav button.s264-promo-center {
  color: #1a2632;
}

.s264-bottomnav button.s264-promo-center .s264-bn-icon {
  background: linear-gradient(135deg, var(--s264-gold), var(--s264-brown));
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -16px;
  border: 3px solid var(--s264-navy-3);
  box-shadow: 0 4px 12px rgba(244, 164, 96, 0.45);
}

.s264-bottomnav button.s264-promo-center .s264-bn-icon svg {
  width: 20px;
  height: 20px;
  color: #1a2632;
}

.s264-bottomnav button.s264-promo-center .s264-bn-label {
  margin-top: 2px;
  color: var(--s264-gold);
}

/* Hide bottomnav on desktops (> 430px container not visible anyway due to shell) */
@media (min-width: 768px) {
  .s264-bottomnav { display: none; }
  .s264-footer { padding-bottom: 24px; }
  body { padding-bottom: 0; }
}

/* ============================================================
   Utility / misc
   ============================================================ */
.s264-clearfix::after { content: ""; display: table; clear: both; }

.s264-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--s264-gold);
  color: #1a2632;
  padding: 8px 14px;
  z-index: 999;
}

.s264-skip-link:focus { left: 8px; top: 8px; }

.s264-noscript-banner {
  margin: 12px;
  padding: 10px;
  background: var(--s264-brown);
  color: var(--s264-mint);
  border-radius: 8px;
  font-size: 12.5px;
  text-align: center;
}

/* Long-form SEO content section */
.s264-seo-content {
  padding: 14px 12px;
}

.s264-seo-content h2 {
  font-size: 16px;
  color: var(--s264-gold);
  margin: 14px 0 8px;
  font-weight: 800;
}

.s264-seo-content h3 {
  font-size: 14px;
  color: var(--s264-gold-2);
  margin: 12px 0 6px;
  font-weight: 700;
}

.s264-seo-content p {
  font-size: 13px;
  color: var(--s264-text-dim);
  margin-bottom: 8px;
}

.s264-seo-content a { font-weight: 600; }

/* Responsiveness safety */
@media (max-width: 359px) {
  .s264-grid { grid-template-columns: repeat(3, 1fr); }
  .s264-quick { grid-template-columns: repeat(2, 1fr); }
  .s264-promo-grid { grid-template-columns: 1fr; }
  .s264-footer-cols { grid-template-columns: 1fr; }
}

/* Part1 long-form pages and centered mobile identity treatment */
.s264-identity {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border-bottom: 1px solid var(--s264-line);
  background: rgba(232,245,232,0.05);
  color: var(--s264-mint);
  text-align: center;
  font-size: 11px;
  letter-spacing: .65px;
  text-transform: uppercase;
}
.s264-route-panel {
  margin: 10px 12px 2px;
  padding: 10px 12px;
  border: 1px solid var(--s264-line);
  border-radius: var(--s264-radius-sm);
  background: linear-gradient(135deg, rgba(244,164,96,.12), rgba(26,38,50,.7));
  overflow-x: auto;
  scrollbar-width: none;
}
.s264-route-panel::-webkit-scrollbar { display: none; }
.s264-route-panel ul { display:flex; gap:8px; list-style:none; min-width:max-content; }
.s264-route-panel a { display:block; padding:5px 9px; border:1px solid var(--s264-line); border-radius:14px; color:var(--s264-mint); font-size:11px; }
.s264-article { padding: 14px 12px 6px; }
.s264-article h1 { color:var(--s264-gold); font-size:24px; line-height:1.2; margin:10px 0 12px; }
.s264-article h2 { color:var(--s264-gold); font-size:18px; line-height:1.3; margin:22px 0 8px; padding-left:11px; border-left:4px solid var(--s264-gold); }
.s264-article h3 { color:var(--s264-gold-2); font-size:15px; margin:16px 0 6px; }
.s264-article p, .s264-article li { color:var(--s264-text-dim); font-size:13px; line-height:1.7; }
.s264-article p { margin-bottom:10px; }
.s264-article ul, .s264-article ol { padding-left:20px; margin:6px 0 12px; }
.s264-article li { margin-bottom:7px; padding-left:3px; }
.s264-article strong { color:var(--s264-mint); }
.s264-article .s264-callout { margin:14px 0; padding:13px; border:1px solid var(--s264-gold); border-radius:var(--s264-radius-sm); background:rgba(139,69,19,.22); }
.s264-promo-stack { display:grid; gap:9px; margin:12px 0 16px; }
.s264-promo-stack a { display:block; padding:12px; border:1px solid var(--s264-gold); border-radius:var(--s264-radius-sm); background:linear-gradient(120deg,rgba(139,69,19,.55),rgba(34,48,63,.9)); color:var(--s264-mint); font-size:13px; font-weight:700; }
.s264-promo-stack a span { display:block; color:var(--s264-text-dim); font-size:11px; font-weight:400; margin-top:2px; }
.s264-game-list { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:7px; list-style:none; padding:0 !important; }
.s264-game-list li { margin:0; padding:8px; border:1px solid var(--s264-line); border-radius:8px; color:var(--s264-mint); font-size:12px; background:rgba(232,245,232,.04); }
.s264-faq-item { padding:10px 0; border-bottom:1px dashed rgba(232,245,232,.15); }
.s264-faq-item h3 { margin-top:0; }
