/* ── Live casino page — light theme, AMB provider ── */
.lc-page {
  position: relative;
  overflow: hidden;
  padding: 28px 14px 52px;
  color: #3f3f46;
  background:
    radial-gradient(circle at 8% 0%, rgba(124, 58, 237, 0.10), transparent 38%),
    radial-gradient(circle at 92% 4%, rgba(245, 158, 11, 0.10), transparent 40%),
    linear-gradient(180deg, #f0f0f0 0%, #f8f5ff 45%, #f0f0f0 100%);
}

.lc-wrap {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  margin: 0 auto;
}

/* ── Hero ── */
.lc-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 20px;
  margin-bottom: 16px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(192, 132, 252, 0.14), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
  border: 1px solid rgba(124, 58, 237, 0.12);
  box-shadow: 0 16px 40px rgba(76, 29, 149, 0.08);
  text-align: center;
}

.lc-hero__media {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(124, 58, 237, 0.10);
  box-shadow: 0 12px 28px rgba(76, 29, 149, 0.12);
}

.lc-hero__copy {
  min-width: 0;
}

.lc-hero__brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.lc-hero__brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.12);
  box-shadow: 0 4px 14px rgba(76, 29, 149, 0.06);
}

.lc-hero__brand img {
  display: block;
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.lc-hero__brand--amb img {
  height: 42px;
  max-width: 100px;
}

.lc-hero__eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.16);
  color: #7c3aed;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
}

.lc-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 4.6vw, 2rem);
  font-weight: var(--fw-extrabold);
  line-height: 1.35;
  color: #4c1d95;
  text-wrap: balance;
}

.lc-hero__line {
  display: block;
}

.lc-hero__line--accent {
  color: #7c3aed;
}

.lc-hero__lead {
  margin: 0 auto 14px;
  max-width: 560px;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
}

.lc-hero__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lc-hero__tags li {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff7e0;
  border: 1px solid rgba(245, 158, 11, 0.28);
  color: #b45309;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  white-space: nowrap;
}

/* ── Cards ── */
.lc-card {
  padding: 24px 20px;
  margin-bottom: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(124, 58, 237, 0.10);
  box-shadow: 0 12px 30px rgba(76, 29, 149, 0.06);
}

.lc-card h2 {
  margin: 0 0 12px;
  font-size: clamp(var(--fs-lg), 3.4vw, var(--fs-2xl));
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--color-heading);
}

.lc-section__lead {
  margin: -4px 0 18px;
  max-width: 860px;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
}

.lc-card p {
  margin: 0 0 12px;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
}

/* ── AMB highlight ── */
.lc-amb {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 18px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, #faf5ff 0%, #f3ecff 100%);
  border: 1px solid rgba(124, 58, 237, 0.16);
  text-align: center;
}

.lc-amb__logo {
  display: block;
  width: min(100%, 120px);
  height: auto;
  border-radius: 12px;
}

.lc-amb__text b {
  display: block;
  margin-bottom: 4px;
  font-size: var(--fs-md);
  color: var(--color-heading);
}

.lc-amb__text span {
  display: block;
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* ── Features ── */
.lc-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.lc-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: linear-gradient(160deg, #faf8ff, #f3ecff);
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.lc-feature__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  font-size: 18px;
  font-weight: var(--fw-bold);
}

.lc-feature b {
  display: block;
  margin-bottom: 3px;
  font-size: var(--fs-base);
  color: var(--color-heading);
  line-height: 1.35;
}

.lc-feature span {
  display: block;
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* ── Game grid ── */
.lc-games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.lc-game {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.12);
  box-shadow: 0 8px 22px rgba(76, 29, 149, 0.06);
  transition: transform 0.18s, box-shadow 0.18s;
}

.lc-game:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(76, 29, 149, 0.12);
}

.lc-game__img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.lc-game__body {
  padding: 12px 12px 14px;
}

.lc-game__body b {
  display: block;
  margin-bottom: 3px;
  font-size: var(--fs-base);
  color: var(--color-heading);
}

.lc-game__body span {
  display: block;
  font-size: var(--fs-xs);
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* ── Provider directory links ── */
.lc-providers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.lc-provider-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 6px 12px;
  border-radius: 14px;
  background: linear-gradient(160deg, #faf8ff, #f5f0ff);
  border: 1px solid rgba(124, 58, 237, 0.12);
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}

.lc-provider-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(76, 29, 149, 0.10);
}

.lc-provider-card img {
  width: 100%;
  max-width: 90px;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  border-radius: 10px;
}

.lc-provider-card span {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-heading);
  line-height: 1.3;
}

/* ── Game guides and supporting SEO content ── */
.lc-guides,
.lc-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.lc-guide,
.lc-info {
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(160deg, #faf8ff, #f5f0ff);
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.lc-guide h3,
.lc-info h3 {
  margin: 0 0 8px;
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  color: var(--color-heading);
}

.lc-guide p,
.lc-info p {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.75;
  color: var(--color-text-muted);
}

.lc-guide .lc-guide__tip {
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid rgba(124, 58, 237, 0.10);
  color: #6d28d9;
}

.lc-guide__tip strong {
  font-weight: var(--fw-bold);
}

.lc-info {
  background: #fafafa;
}

.lc-safe {
  background:
    radial-gradient(circle at 100% 0%, rgba(16, 185, 129, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.94);
  border-color: rgba(16, 185, 129, 0.18);
}

.lc-safe > p {
  color: var(--color-text-muted);
}

.lc-safe__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.lc-safe__list li {
  position: relative;
  padding: 10px 12px 10px 34px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.14);
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: #065f46;
}

.lc-safe__list li::before {
  content: "✓";
  position: absolute;
  top: 10px;
  left: 12px;
  color: #059669;
  font-weight: var(--fw-bold);
}

/* ── Steps ── */
.lc-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 4px;
}

.lc-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(160deg, #fffdf5, #fff7e0);
  border: 1px solid rgba(245, 158, 11, 0.24);
}

.lc-step__no {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #fff;
  font-size: 15px;
  font-weight: var(--fw-bold);
}

.lc-step b {
  display: block;
  margin-bottom: 2px;
  font-size: var(--fs-base);
  color: #92400e;
}

.lc-step span {
  display: block;
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: #78350f;
}

/* ── FAQ ── */
.lc-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lc-faq__item {
  padding: 14px 16px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid rgba(124, 58, 237, 0.10);
}

.lc-faq__item h3 {
  margin: 0 0 6px;
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--color-heading);
  line-height: 1.4;
}

.lc-faq__item p {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: var(--color-text-muted);
}

/* ── CTA ── */
.lc-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.lc-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 14px;
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  transition: transform 0.15s, filter 0.15s, box-shadow 0.15s;
}

.lc-cta__btn--login {
  border: none;
  background: linear-gradient(135deg, #6d28d9 0%, #9333ea 45%, #db2777 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.32);
}

.lc-cta__btn--login:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.lc-cta__btn--register {
  background: #fff;
  color: #6d28d9;
  border: 1.5px solid rgba(124, 58, 237, 0.35);
  box-shadow: 0 4px 14px rgba(76, 29, 149, 0.06);
}

.lc-cta__btn--register:hover {
  background: #faf5ff;
  transform: translateY(-1px);
}

.lc-note {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.07);
  border: 1px solid rgba(16, 185, 129, 0.22);
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: #047857;
  text-align: center;
}

@media (min-width: 600px) {
  .lc-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .lc-games {
    grid-template-columns: repeat(4, 1fr);
  }

  .lc-guides,
  .lc-info-grid,
  .lc-safe__list {
    grid-template-columns: repeat(2, 1fr);
  }

  .lc-providers {
    grid-template-columns: repeat(4, 1fr);
  }

  .lc-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .lc-cta {
    flex-direction: row;
  }

  .lc-cta__btn {
    flex: 1 1 0;
  }
}

@media (min-width: 860px) {
  .lc-page {
    padding: 34px 20px 60px;
  }

  .lc-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 28px;
    text-align: left;
    padding: 32px 36px;
  }

  .lc-hero__brands,
  .lc-hero__tags {
    justify-content: flex-start;
  }

  .lc-hero__lead {
    margin: 0 0 16px;
    max-width: none;
  }

  .lc-amb {
    flex-direction: row;
    text-align: left;
  }

  .lc-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .lc-providers {
    grid-template-columns: repeat(7, 1fr);
  }
}
