/* LightCasino — layout + component modules. Mobile-first throughout. */

/* ===== Announcement bar ===== */
.lc-announce {
  background: var(--c-primary);
  color: #fff;
}
.lc-announce-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--gap-2) var(--gap-4);
  padding: 8px var(--gutter);
  font-size: 12px;
  text-align: center;
}
.lc-announce-eyebrow { font-weight: 600; opacity: 0.85; }
.lc-announce-amount { font-weight: 800; }
.lc-announce-cta {
  text-decoration: underline;
  font-weight: 700;
}

/* ===== Top navigation ===== */
.lc-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow var(--ease);
}
.lc-topbar.is-scrolled { box-shadow: var(--shadow-raised); }

.lc-topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-4);
  height: 64px;
}

.lc-brand img { height: 26px; width: auto; }

.lc-nav {
  display: none;
  gap: var(--gap-5);
}
.lc-nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}
.lc-nav-link:hover { color: var(--c-primary); border-color: var(--c-primary); }

.lc-topbar-actions {
  display: flex;
  align-items: center;
  gap: var(--gap-3);
}

.lc-lang { position: relative; }
.lc-lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-pill);
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--c-text);
}
.lc-lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-raised);
  padding: 6px;
  z-index: 60;
}
.lc-lang-menu.is-open { display: block; }
.lc-lang-option {
  display: block;
  padding: 8px 10px;
  border-radius: var(--radius-s);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text);
}
.lc-lang-option:hover { background: var(--c-surface); }
.lc-lang-option.is-active { color: var(--c-primary); background: var(--c-accent-soft); }

.lc-hide-mobile { display: none; }

.lc-burger {
  width: 34px;
  height: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
}
.lc-burger span {
  width: 20px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.lc-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 84%;
  max-width: 320px;
  background: #fff;
  z-index: 90;
  padding: 84px var(--gutter) var(--gutter);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  overflow-y: auto;
}
.lc-drawer.is-open { transform: translateX(0); }
.lc-drawer-nav { display: flex; flex-direction: column; gap: 4px; }
.lc-drawer-nav a {
  padding: 12px 4px;
  border-bottom: 1px solid var(--c-border);
  font-weight: 600;
  font-size: 15px;
}

.lc-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(21, 26, 33, 0.4);
  z-index: 80;
}
.lc-drawer-overlay.is-open { display: block; }

@media (min-width: 960px) {
  .lc-nav { display: flex; }
  .lc-hide-mobile { display: inline-flex; }
  .lc-burger { display: none; }
}

/* ===== Page shell / shared section header ===== */
.lc-main { display: block; }

.lc-section { margin: var(--gap-6) auto; }
.lc-section-tight { margin-bottom: var(--gap-3); }

.lc-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--gap-2);
  margin-bottom: var(--gap-4);
}
.lc-section-title {
  font-size: 19px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
}
.lc-section-link {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-primary);
}
.lc-section-note { font-size: 12px; color: var(--c-text-muted); font-weight: 600; }

@media (min-width: 720px) {
  .lc-section-title { font-size: 22px; }
}

/* ===== Hero ===== */
.lc-hero { margin-top: var(--gap-5); }
.lc-hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-l);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-flat);
}
.lc-hero-track { display: flex; transition: transform 0.5s ease; }
.lc-hero-slide {
  min-width: 100%;
  min-height: 230px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  background-color: var(--c-surface);
  background-size: cover;
  background-position: center;
  position: relative;
}
.lc-hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, #fff 0%, rgba(255,255,255,0.65) 45%, rgba(255,255,255,0.15) 100%);
}
.lc-hero-slide > * { position: relative; z-index: 1; }
.lc-hero-title { font-size: 20px; font-weight: 800; max-width: 360px; margin: 0; }
.lc-hero-amount { font-size: 30px; font-weight: 900; color: var(--c-primary); margin: 0; }
.lc-hero-terms { font-size: 12px; color: var(--c-text-muted); max-width: 300px; margin: 0 0 4px; }

.lc-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-flat);
}
.lc-hero-arrow-prev { left: 12px; }
.lc-hero-arrow-next { right: 12px; }
.lc-hero-arrow svg { width: 16px; height: 16px; }

.lc-hero-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.lc-hero-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--c-border); }
.lc-hero-dot.is-active { background: var(--c-primary); width: 18px; border-radius: var(--radius-pill); }

@media (min-width: 640px) {
  .lc-hero-slide { min-height: 300px; padding: 40px; }
  .lc-hero-title { font-size: 27px; max-width: 440px; }
  .lc-hero-amount { font-size: 36px; }
  .lc-hero-arrow { display: flex; }
}

/* ===== Bonus offer cards ===== */
.lc-offer-grid { display: grid; grid-template-columns: 1fr; gap: var(--gap-3); }
.lc-offer-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--gap-2);
  padding: 20px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-l);
  overflow: hidden;
  transition: var(--ease);
}
.lc-offer-card:hover { border-color: var(--c-primary); box-shadow: var(--shadow-raised); transform: translateY(-2px); background: #fff; }
.lc-offer-icon {
  width: 42px; height: 42px; border-radius: var(--radius-m);
  display: flex; align-items: center; justify-content: center;
  background: var(--c-accent-soft); color: var(--c-primary);
}
.lc-offer-card-2 .lc-offer-icon { background: #FDEBD0; color: var(--c-warning); }
.lc-offer-card-3 .lc-offer-icon { background: #E3F6EC; color: var(--c-positive); }
.lc-offer-card-4 .lc-offer-icon { background: #FBE4E6; color: var(--c-danger); }
.lc-offer-card-5 .lc-offer-icon { background: var(--c-accent-soft); color: var(--c-primary-dark); }
.lc-offer-card-6 .lc-offer-icon { background: #FDEBD0; color: var(--c-warning); }
.lc-offer-icon svg { width: 22px; height: 22px; }
.lc-offer-label { font-size: 15px; font-weight: 800; }
.lc-offer-amount { font-size: 21px; font-weight: 900; color: var(--c-primary); }
.lc-offer-terms { font-size: 12px; line-height: 1.5; color: var(--c-text-muted); flex: 1; }
.lc-offer-cta {
  align-self: flex-start;
  margin-top: 4px;
  background: var(--c-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
}
.lc-offer-card:hover .lc-offer-cta { background: var(--c-primary-dark); }

@media (min-width: 640px) { .lc-offer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .lc-offer-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== Category tabs + win ticker ===== */
.lc-tab-row {
  display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; margin-bottom: var(--gap-3);
  scrollbar-width: none;
}
.lc-tab-row::-webkit-scrollbar { display: none; }
.lc-tab {
  flex-shrink: 0; font-size: 12px; font-weight: 700; color: var(--c-text-muted);
  background: var(--c-surface); border: 1px solid var(--c-border);
  padding: 8px 15px; border-radius: var(--radius-pill); white-space: nowrap;
}
.lc-tab:hover { color: var(--c-text); border-color: var(--c-primary); }
.lc-tab.is-active { color: #fff; background: var(--c-primary); border-color: var(--c-primary); }

.lc-ticker {
  display: flex; align-items: stretch; margin-bottom: var(--gap-4);
  background: #fff; border: 1px solid var(--c-primary); border-radius: var(--radius-m);
  box-shadow: 0 0 0 1px rgba(22,119,210,0.12), var(--shadow-flat);
  overflow: hidden;
}
.lc-ticker-live {
  flex-shrink: 0; display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 900; letter-spacing: 0.05em; color: #fff;
  background: var(--c-danger); padding: 0 14px;
}
.lc-ticker-dot { width: 7px; height: 7px; border-radius: 50%; background: #fff; animation: lcPulse 1.3s ease-in-out infinite; }
@keyframes lcPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.7); } }
.lc-ticker-viewport {
  flex: 1; min-width: 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
}
.lc-ticker-track { display: flex; width: max-content; gap: 10px; padding: 10px 12px; animation: lcMarquee 26s linear infinite; }
.lc-ticker:hover .lc-ticker-track { animation-play-state: paused; }
.lc-ticker-item {
  flex-shrink: 0; display: flex; align-items: center; gap: 7px; font-size: 12px;
  padding: 7px 14px; background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-pill); white-space: nowrap;
}
.lc-ticker-item strong { font-weight: 800; }
.lc-ticker-game { color: var(--c-text-muted); }
.lc-ticker-mult { color: #fff; font-weight: 900; background: var(--c-warning); padding: 2px 8px; border-radius: var(--radius-pill); font-size: 11px; }
@keyframes lcMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .lc-ticker-track, .lc-bank-track { animation: none; } }

/* ===== Game grid ===== */
.lc-game-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.lc-game-card {
  position: relative; display: block; aspect-ratio: 1 / 1; border-radius: var(--radius-m);
  overflow: hidden; background: var(--c-surface); border: 1px solid var(--c-border);
  transition: var(--ease);
}
.lc-game-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-raised); z-index: 1; }
.lc-game-thumb { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lc-game-overlay {
  position: absolute; inset: 0; background: rgba(21,26,33,0.55);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; transition: opacity var(--ease);
}
.lc-game-card:hover .lc-game-overlay { opacity: 1; }
.lc-game-play { font-size: 12px; font-weight: 800; color: #151A21; background: #fff; padding: 8px 16px; border-radius: var(--radius-pill); }
.lc-game-rtp { font-size: 10px; font-weight: 700; color: #fff; }
.lc-game-badge {
  position: absolute; top: 6px; right: 6px; font-size: 9px; font-weight: 900; text-transform: uppercase;
  padding: 3px 7px; border-radius: var(--radius-pill); color: #fff;
}
.lc-game-badge-new { background: var(--c-positive); }
.lc-game-badge-hot { background: var(--c-danger); }
.lc-game-badge-jackpot { background: var(--c-warning); color: #151A21; }
.lc-game-name {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 6px 8px; font-size: 11px; font-weight: 700; color: #fff;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 100%);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
@media (min-width: 560px) { .lc-game-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 860px) { .lc-game-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
@media (min-width: 1180px) { .lc-game-grid { grid-template-columns: repeat(6, 1fr); } }

/* ===== Category tiles ===== */
.lc-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.lc-cat-tile {
  position: relative; display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  gap: 10px; aspect-ratio: 1 / 1; border-radius: var(--radius-l); color: #fff; text-align: center; padding: 14px 12px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
  transition: filter var(--ease);
}
.lc-cat-tile:hover { filter: brightness(1.08); }
.lc-cat-tile-1 { background: linear-gradient(0deg, rgba(9,93,174,0.55), rgba(9,93,174,0.1)), url('/assets/image/categories/category-1.webp') center/cover; }
.lc-cat-tile-2 { background: linear-gradient(0deg, rgba(31,107,68,0.55), rgba(31,107,68,0.1)), url('/assets/image/categories/category-2.webp') center/cover; }
.lc-cat-tile-3 { background: linear-gradient(0deg, rgba(201,126,16,0.55), rgba(201,126,16,0.1)), url('/assets/image/categories/category-3.webp') center/cover; }
.lc-cat-tile-4 { background: linear-gradient(0deg, rgba(74,58,194,0.55), rgba(74,58,194,0.1)), url('/assets/image/categories/category-4.webp') center/cover; }
.lc-cat-tile-5 { background: linear-gradient(0deg, rgba(162,46,58,0.55), rgba(162,46,58,0.1)), url('/assets/image/categories/category-5.webp') center/cover; }
.lc-cat-tile-6 { background: linear-gradient(0deg, rgba(74,58,194,0.55), rgba(22,119,210,0.1)), url('/assets/image/categories/category-6.webp') center/cover; }
.lc-cat-tile svg { width: 30px; height: 30px; }
.lc-cat-tile span { font-size: 12px; font-weight: 700; }
@media (min-width: 560px) { .lc-cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .lc-cat-grid { grid-template-columns: repeat(6, 1fr); } .lc-cat-tile span { font-size: 13px; } }

/* ===== Jackpots ===== */
.lc-jackpot-intro { font-size: 13px; line-height: 1.6; color: var(--c-text-muted); max-width: 720px; margin-bottom: var(--gap-4); }
.lc-jackpot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: var(--gap-4); }
.lc-jackpot-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  padding: 22px 10px; border-radius: var(--radius-m); background: var(--c-surface);
  border: 1px solid var(--c-border); text-align: center; transition: var(--ease);
}
.lc-jackpot-tile:hover { border-color: var(--c-warning); background: #fff; transform: translateY(-2px); }
.lc-jackpot-tile-grand { background: #FEF6E7; border-color: var(--c-warning); }
.lc-jackpot-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--c-text-muted); }
.lc-jackpot-amount { font-size: 20px; font-weight: 900; color: var(--c-warning); font-variant-numeric: tabular-nums; }
.lc-jackpot-hint { font-size: 10px; color: var(--c-text-muted); }
@media (min-width: 640px) {
  .lc-jackpot-grid { grid-template-columns: repeat(4, 1fr); }
  .lc-jackpot-amount { font-size: 24px; }
}

/* ===== Software studios ===== */
.lc-studio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.lc-studio-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 8px; background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--radius-m); text-align: center; transition: var(--ease);
}
.lc-studio-card:hover { border-color: var(--c-primary); background: #fff; }
.lc-studio-logo { height: 52px; max-width: 85%; object-fit: contain; }
.lc-studio-count { font-size: 11px; font-weight: 700; color: var(--c-text-muted); }
@media (min-width: 560px) { .lc-studio-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1180px) { .lc-studio-grid { grid-template-columns: repeat(6, 1fr); } }

/* ===== Payment strip ===== */
.lc-bank-strip {
  width: 100%; overflow: hidden; margin-bottom: var(--gap-6); padding: 10px 0;
  background: var(--c-surface); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
.lc-bank-track { display: flex; width: max-content; gap: 10px; padding: 0 var(--gutter); animation: lcMarquee 22s linear infinite; }
.lc-bank-strip:hover .lc-bank-track { animation-play-state: paused; }
.lc-bank-chip {
  flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  width: 120px; padding: 14px 10px; background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-m);
}
.lc-bank-chip:hover { border-color: var(--c-primary); }
.lc-bank-logo { height: 38px; max-width: 85%; object-fit: contain; }
.lc-bank-name { font-size: 11px; font-weight: 700; color: var(--c-text-muted); white-space: nowrap; }

/* ===== Reviews / trust row ===== */
.lc-trust-row {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--gap-4);
  padding: 14px 16px; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-m);
}
.lc-trust-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--c-text-muted); }
.lc-trust-marks { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; }
.lc-trust-mark { color: var(--c-text-muted); }
.lc-trust-mark:hover { color: var(--c-text); }
.lc-trust-mark svg { height: 20px; width: auto; }
@media (min-width: 640px) { .lc-trust-row { flex-direction: row; align-items: center; justify-content: space-between; } }

.lc-review-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
.lc-review-card { display: flex; flex-direction: column; gap: 8px; padding: 18px; background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-m); }
.lc-review-stars { display: flex; gap: 3px; color: var(--c-warning); }
.lc-review-stars svg { width: 14px; height: 14px; }
.lc-review-quote { font-size: 13px; line-height: 1.55; color: var(--c-text-muted); flex: 1; }
.lc-review-author { font-size: 12px; font-weight: 800; }
@media (min-width: 640px) { .lc-review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .lc-review-grid { grid-template-columns: repeat(3, 1fr); } }

/* ===== On-page SEO block ===== */
.lc-seo { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: var(--radius-l); padding: 28px 30px; }
.lc-seo-body h1 { font-size: 22px; margin: 0 0 12px; }
.lc-seo-body h2 { font-size: 17px; margin: 20px 0 8px; clear: both; }
.lc-seo-body h3 { font-size: 15px; margin: 18px 0 8px; clear: both; color: var(--c-text); }
.lc-seo-body p { font-size: 14px; line-height: 1.65; color: var(--c-text-muted); margin: 0 0 10px; }
.lc-seo-body table { width: 100%; border-collapse: collapse; margin: 14px 0; font-size: 13px; }
.lc-seo-body th, .lc-seo-body td { padding: 9px 12px; border-bottom: 1px solid var(--c-border); text-align: left; }
.lc-seo-body th { background: #fff; font-size: 11px; text-transform: uppercase; letter-spacing: 0.03em; color: var(--c-text-muted); }
.lc-seo-body a { color: var(--c-primary); text-decoration: underline; }
.lc-seo-body img {
  display: block;
  float: right;
  width: 40%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-m);
  margin: 4px 0 16px 22px;
  border: 1px solid var(--c-border);
}
.lc-seo-body img:nth-of-type(even) {
  float: left;
  margin: 4px 22px 16px 0;
}
@media (max-width: 640px) {
  .lc-seo-body img {
    float: none;
    width: 100%;
    margin: 14px 0;
  }
}

.lc-seo-body {
  max-height: 30000px;
  overflow: visible;
}
/* Only pages that render the toggle button get the collapsed state — the
   button and the initial max-height clamp arrive together via #lcSeoBody. */
#lcSeoBody {
  max-height: 130px;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 65%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 65%, transparent 100%);
}
#lcSeoBody.is-open {
  max-height: 30000px;
  -webkit-mask-image: none;
  mask-image: none;
}
.lc-seo-toggle {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 14px;
  background: none; border: none; color: var(--c-primary); font-size: 13px; font-weight: 700; padding: 0;
}
.lc-seo-toggle svg { width: 15px; height: 15px; transition: transform 0.3s; }
.lc-seo-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

/* ===== FAQ ===== */
.lc-faq-title { font-size: 19px; font-weight: 800; margin: 0 0 var(--gap-3); }
.lc-faq-list { display: flex; flex-direction: column; gap: 8px; }
.lc-faq-item { border: 1px solid var(--c-border); border-radius: var(--radius-m); overflow: hidden; }
.lc-faq-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 16px; background: #fff; border: none; text-align: left;
}
.lc-faq-q { margin: 0; font-size: 14px; font-weight: 700; }
.lc-faq-chevron { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.25s; color: var(--c-text-muted); }
.lc-faq-toggle[aria-expanded="true"] .lc-faq-chevron { transform: rotate(180deg); }
.lc-faq-a { max-height: 0; overflow: hidden; background: var(--c-surface); transition: max-height 0.3s ease; }
.lc-faq-a.is-open { max-height: 400px; }
.lc-faq-a p { margin: 0; padding: 14px 16px; font-size: 13px; line-height: 1.6; color: var(--c-text-muted); }

/* ===== Welcome modal ===== */
.lc-modal { position: fixed; inset: 0; z-index: 1000; display: flex; align-items: center; justify-content: center; padding: 16px; }
.lc-modal[hidden] { display: none; }
.lc-modal-backdrop { position: absolute; inset: 0; background: rgba(21,26,33,0.55); backdrop-filter: blur(2px); }
.lc-modal-card {
  position: relative; z-index: 1; width: 100%; max-width: 380px; max-height: 90vh; overflow-y: auto;
  background: #fff; border-radius: var(--radius-l); box-shadow: var(--shadow-raised);
  display: flex; flex-direction: column;
}
.lc-modal-close {
  position: absolute; top: 10px; right: 10px; z-index: 2; width: 30px; height: 30px; border-radius: 50%;
  background: rgba(21,26,33,0.06); font-size: 18px; line-height: 1; display: flex; align-items: center; justify-content: center; border: none;
}
.lc-modal-media { aspect-ratio: 16 / 9; background: var(--c-surface); }
.lc-modal-media img { width: 100%; height: 100%; object-fit: cover; }
.lc-modal-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.lc-modal-title { font-size: 19px; font-weight: 800; margin: 0; line-height: 1.3; }
.lc-modal-text { font-size: 12px; color: var(--c-text-muted); margin: 0; line-height: 1.5; }
.lc-modal-cta { display: block; text-align: center; margin-top: 6px; }
@media (min-width: 640px) { .lc-modal-card { max-width: 420px; } }

/* ===== Footer ===== */
.lc-foot { background: var(--c-surface); border-top: 1px solid var(--c-border); padding: var(--gap-7) 0 var(--gap-5); margin-top: var(--gap-7); }
.lc-foot-cols { display: grid; grid-template-columns: 1fr; gap: var(--gap-5); margin-bottom: var(--gap-6); }
.lc-foot-col-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--c-text-muted); margin: 0 0 10px; }
.lc-foot-col a { display: block; font-size: 13px; padding: 5px 0; color: var(--c-text); }
.lc-foot-col a:hover { color: var(--c-primary); }
@media (min-width: 720px) { .lc-foot-cols { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1080px) { .lc-foot-cols { grid-template-columns: repeat(5, 1fr); } }

.lc-foot-trust { display: flex; flex-direction: column; gap: var(--gap-4); padding: var(--gap-4) 0; border-top: 1px solid var(--c-border); }
.lc-foot-trust-label { display: block; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--c-text-muted); margin-bottom: 8px; }
.lc-foot-chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.lc-foot-chip { padding: 6px 12px; border-radius: var(--radius-pill); background: #fff; border: 1px solid var(--c-border); font-size: 12px; font-weight: 700; }

.lc-foot-bottom { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: var(--gap-4) 0; }
.lc-foot-age { width: 30px; height: 30px; border: 1px solid var(--c-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900; }
.lc-foot-copy { font-size: 12px; color: var(--c-text-muted); margin: 0; }

.lc-foot-legal { max-width: 760px; margin: 0 auto var(--gap-3); padding: 14px 18px; border-radius: var(--radius-m); background: #fff; border: 1px solid var(--c-border); }
.lc-foot-legal-text { font-size: 12px; line-height: 1.6; color: var(--c-text-muted); margin: 0; }
.lc-foot-legal-text a { color: var(--c-primary); text-decoration: underline; }

.lc-foot-disclaimer { max-width: 720px; margin: 0 auto; padding: 14px 18px; border-radius: var(--radius-m); background: #fff; border: 1px solid var(--c-border); }
.lc-foot-disclaimer-text { font-size: 12px; font-weight: 700; line-height: 1.7; color: var(--c-text); text-align: center; margin: 0; }

/* ===== Cookie notice + chat FAB ===== */
.lc-cookie-notice {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px;
  padding: 14px 16px; background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius-m); box-shadow: var(--shadow-raised);
}
.lc-cookie-notice.is-hidden { display: none; }
.lc-cookie-notice p { font-size: 12px; margin: 0; color: var(--c-text-muted); }
.lc-cookie-notice a { color: var(--c-primary); text-decoration: underline; }

.lc-chat-fab {
  position: fixed; right: 16px; bottom: 90px; z-index: 150;
  background: var(--c-primary); color: #fff; font-size: 12px; font-weight: 800;
  padding: 10px 16px; border-radius: var(--radius-pill); box-shadow: var(--shadow-raised);
}

/* ===== 404 ===== */
.lc-notfound { text-align: center; padding: var(--gap-7) 0; }
.lc-notfound-code { font-size: 64px; font-weight: 900; color: var(--c-border); margin: 0; }
