:root {
  --lggc-emerald: #0a3d2e;
  --lggc-forest: #062318;
  --lggc-casino: #1a7a52;
  --lggc-gold: #d4a437;
  --lggc-gold-dim: rgba(212, 164, 55, 0.35);
  --lggc-red: #c43b3b;
  --lggc-cream: #f5f0e6;
  --lggc-text: #e8f5ef;
  --lggc-muted: #a8c9b8;
  --lggc-wrap: min(1120px, 92vw);
  --lggc-font: "DM Sans", system-ui, sans-serif;
  --lggc-display: "Rajdhani", "DM Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body.lggc-body {
  margin: 0;
  font-family: var(--lggc-font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--lggc-text);
  background: var(--lggc-forest);
}

.lggc-wrap {
  width: var(--lggc-wrap);
  margin-inline: auto;
}

.lggc-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--lggc-gold);
  color: var(--lggc-forest);
}
.lggc-skip:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.lggc-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}
.lggc-header--solid {
  background: rgba(6, 35, 24, 0.92);
  border-color: var(--lggc-gold-dim);
  backdrop-filter: blur(8px);
}
.lggc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}
.lggc-brand {
  font-family: var(--lggc-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lggc-cream);
  text-decoration: none;
}
.lggc-age {
  font-size: 0.65rem;
  padding: 0.15rem 0.35rem;
  margin-left: 0.35rem;
  border: 1px solid var(--lggc-gold);
  color: var(--lggc-gold);
  vertical-align: middle;
}

.lggc-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.lggc-nav__list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.85rem;
}
.lggc-nav__list a {
  color: var(--lggc-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
}
.lggc-nav__list a:hover,
.lggc-nav__list a:focus-visible {
  color: var(--lggc-gold);
}
.lggc-nav__toggle {
  display: inline-flex;
  font: inherit;
  cursor: pointer;
  padding: 0.4rem 0.65rem;
  border: 1px solid var(--lggc-gold-dim);
  background: rgba(10, 61, 46, 0.6);
  color: var(--lggc-cream);
  border-radius: 4px;
}
.lggc-nav__panel {
  position: absolute;
  right: 4vw;
  top: 3.2rem;
  background: var(--lggc-emerald);
  border: 1px solid var(--lggc-gold-dim);
  padding: 0.75rem 1rem;
  min-width: 200px;
}
.lggc-nav__panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.lggc-nav__panel a {
  display: block;
  padding: 0.35rem 0;
  color: var(--lggc-text);
  text-decoration: none;
}

.lggc-locale {
  position: relative;
}
.lggc-locale__toggle {
  font: inherit;
  cursor: pointer;
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--lggc-gold);
  background: transparent;
  color: var(--lggc-gold);
  border-radius: 4px;
  font-size: 0.85rem;
}
.lggc-locale__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  min-width: 220px;
  max-height: 70vh;
  overflow: auto;
  background: var(--lggc-emerald);
  border: 1px solid var(--lggc-gold);
  padding: 0.5rem 0.75rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.lggc-locale__group-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lggc-gold);
  margin: 0.5rem 0 0.25rem;
}
.lggc-locale__group ul {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
}
.lggc-locale__group a {
  display: block;
  padding: 0.25rem 0;
  color: var(--lggc-text);
  text-decoration: none;
  font-size: 0.88rem;
}
.lggc-locale__group a.is-active {
  color: var(--lggc-gold);
  font-weight: 600;
}

@media (min-width: 1024px) {
  .lggc-nav__list {
    display: flex;
  }
  .lggc-nav__toggle,
  .lggc-nav__panel {
    display: none;
  }
  .lggc-nav {
    position: relative;
  }
}

.lggc-hero {
  position: relative;
  min-height: clamp(420px, 72vh, 640px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}
.lggc-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lggc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 42%;
}
.lggc-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(1, 8, 6, 0.97) 0%,
      rgba(2, 12, 9, 0.9) 18%,
      rgba(4, 20, 15, 0.65) 38%,
      rgba(6, 35, 24, 0.28) 50%,
      rgba(6, 35, 24, 0.08) 62%,
      transparent 78%
    ),
    linear-gradient(180deg, transparent 52%, rgba(4, 18, 13, 0.5) 100%);
}
.lggc-hero__rail {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 2;
  background: repeating-linear-gradient(
    90deg,
    var(--lggc-gold) 0,
    var(--lggc-gold) 12px,
    transparent 12px,
    transparent 24px
  );
  opacity: 0.7;
  animation: lggc-rail 12s linear infinite;
}
@keyframes lggc-rail {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 240px 0;
  }
}
.lggc-hero__shell {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 0 0 2.25rem;
}

.lggc-hero__shell.lggc-wrap {
  width: var(--lggc-wrap);
  margin-inline: auto;
}

.lggc-hero__content {
  width: min(100%, 29.5rem);
  max-width: 29.5rem;
  margin-inline: 0;
  margin-right: auto;
  text-align: left;
  padding-top: 1.35rem;
}
.lggc-hero__title {
  font-family: var(--lggc-display);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--lggc-cream);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
  max-width: 29.5rem;
}
.lggc-hero__lead,
.lggc-hero__status {
  margin: 0 0 0.65rem;
  font-size: 0.98rem;
  color: #e8f5ef;
  line-height: 1.55;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  max-width: 29.5rem;
}
.lggc-hero__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.65rem;
  margin-top: 0.35rem;
  width: min(100%, 29.5rem);
  max-width: 29.5rem;
}

.lggc-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.85rem;
  padding: 0.55rem 0.65rem;
  font-weight: 600;
  font-size: clamp(0.78rem, 2.4vw, 0.88rem);
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  color: var(--lggc-forest);
  background: var(--lggc-gold);
  border: 1px solid #f0c85a;
  box-shadow: 0 0 20px var(--lggc-gold-dim);
  transition: transform 0.15s, box-shadow 0.15s;
}
.lggc-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(212, 164, 55, 0.55);
}
.lggc-hero__cta:focus-visible {
  outline: 2px solid var(--lggc-cream);
  outline-offset: 2px;
}

.lggc-hero__affiliate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.85rem;
  padding: 0.55rem 0.65rem;
  font-size: clamp(0.78rem, 2.4vw, 0.88rem);
  line-height: 1.25;
  text-align: center;
  border-radius: 4px;
  box-sizing: border-box;
}
.lggc-hero__affiliate--pending {
  font-weight: 600;
  color: rgba(212, 164, 55, 0.92);
  border: 1px solid rgba(212, 164, 55, 0.45);
  background: rgba(6, 35, 24, 0.55);
  cursor: default;
  pointer-events: none;
  text-shadow: none;
}
.lggc-hero__affiliate--live {
  color: var(--lggc-cream);
  border: 1px solid var(--lggc-gold);
  background: rgba(10, 61, 46, 0.75);
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s;
}
.lggc-hero__affiliate--live:hover {
  box-shadow: 0 0 18px rgba(212, 164, 55, 0.35);
  transform: translateY(-1px);
}
.lggc-hero__affiliate--live:focus-visible {
  outline: 2px solid var(--lggc-cream);
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .lggc-hero__content,
  .lggc-hero__title,
  .lggc-hero__lead,
  .lggc-hero__status,
  .lggc-hero__actions {
    width: min(100%, 26.5rem);
    max-width: 26.5rem;
  }
}

@media (max-width: 480px) {
  .lggc-hero__title {
    font-size: clamp(1.35rem, 5.5vw, 1.65rem);
  }
  .lggc-hero__actions {
    grid-template-columns: 1fr;
  }
}

.lggc-strip {
  background: linear-gradient(180deg, var(--lggc-emerald), #083528);
  border-block: 2px solid var(--lggc-gold-dim);
  padding: 0.85rem 0;
}
.lggc-strip__track {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  border: 1px solid var(--lggc-gold-dim);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.25);
}
.lggc-strip__cell {
  flex: 1 1 140px;
  padding: 0.65rem 0.85rem;
  border-right: 1px solid var(--lggc-gold-dim);
  text-align: center;
}
.lggc-strip__cell:last-child {
  border-right: none;
}
.lggc-strip__cell dt {
  font-family: var(--lggc-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lggc-gold);
  margin: 0 0 0.25rem;
}
.lggc-strip__cell dd {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
}
.lggc-strip__tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--lggc-muted);
  margin-top: 0.15rem;
}

.lggc-section {
  padding: 3rem 0;
  background: var(--lggc-forest);
}
.lggc-section--mid {
  background: var(--lggc-emerald);
}
.lggc-section__title {
  font-family: var(--lggc-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--lggc-cream);
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--lggc-gold-dim);
}

.lggc-lane {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .lggc-lane {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
}
.lggc-station {
  position: relative;
  padding: 1rem 1rem 1.1rem;
  background: rgba(6, 35, 24, 0.65);
  border: 1px solid var(--lggc-gold-dim);
  border-top: 3px solid var(--lggc-gold);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lggc-station::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--lggc-gold), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.lggc-station:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.lggc-station:hover::before {
  opacity: 1;
}
.lggc-station h3 {
  font-family: var(--lggc-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--lggc-gold);
}
.lggc-station p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--lggc-muted);
}

.lggc-board {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.lggc-board th,
.lggc-board td {
  padding: 0.65rem 0.75rem;
  border-bottom: 1px solid var(--lggc-gold-dim);
  text-align: left;
  vertical-align: top;
}
.lggc-board th {
  width: 38%;
  font-weight: 500;
  color: var(--lggc-muted);
}
.lggc-board tr:last-child th,
.lggc-board tr:last-child td {
  border-bottom: none;
}
.lggc-board__note {
  display: block;
  font-size: 0.78rem;
  color: var(--lggc-gold);
  margin-top: 0.15rem;
}

.lggc-departure {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 2px solid var(--lggc-gold);
  background: repeating-linear-gradient(
    -45deg,
    rgba(10, 61, 46, 0.4),
    rgba(10, 61, 46, 0.4) 8px,
    rgba(6, 35, 24, 0.5) 8px,
    rgba(6, 35, 24, 0.5) 16px
  );
  box-shadow: 0 0 40px rgba(212, 164, 55, 0.12);
}
.lggc-departure__date {
  font-family: var(--lggc-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--lggc-gold);
  margin: 0;
  letter-spacing: 0.04em;
}
.lggc-departure__meta {
  font-size: 0.85rem;
  color: var(--lggc-muted);
  margin: 0.75rem 0 0;
}

.lggc-unknown p {
  max-width: 52rem;
  color: var(--lggc-muted);
}

.lggc-world {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .lggc-world {
    grid-template-columns: 1fr 1.1fr;
  }
}
.lggc-world__frame {
  border: 2px solid var(--lggc-gold-dim);
  overflow: hidden;
  position: relative;
}
.lggc-world__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px rgba(6, 35, 24, 0.5);
  pointer-events: none;
}
.lggc-world__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.lggc-faq__item {
  border-bottom: 1px solid var(--lggc-gold-dim);
}
.lggc-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--lggc-cream);
}
.lggc-faq__q:focus-visible {
  outline: 2px solid var(--lggc-gold);
  outline-offset: 2px;
}
.lggc-faq__icon {
  color: var(--lggc-gold);
  font-size: 1.25rem;
}
.lggc-faq__a {
  padding: 0 0 1rem;
  color: var(--lggc-muted);
}
.lggc-faq__a p {
  margin: 0;
}

.lggc-footer {
  padding: 2rem 0 2.5rem;
  background: #041912;
  border-top: 1px solid var(--lggc-gold-dim);
}
.lggc-footer__note {
  font-size: 0.88rem;
  color: var(--lggc-muted);
  margin: 0 0 0.65rem;
}
.lggc-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 1rem 0;
}
.lggc-footer__links a {
  color: var(--lggc-gold);
  font-size: 0.88rem;
  text-decoration: none;
}
.lggc-footer__copy {
  font-size: 0.8rem;
  color: var(--lggc-muted);
  margin: 1rem 0 0;
}

.lggc-body--trust .lggc-trust {
  padding: 2rem 0 3rem;
}
.lggc-trust__back a {
  color: var(--lggc-gold);
}
.lggc-trust__title {
  font-family: var(--lggc-display);
  font-size: 1.75rem;
  color: var(--lggc-cream);
}
.lggc-trust__section {
  margin-top: 1.75rem;
}
.lggc-trust__section h2 {
  font-family: var(--lggc-display);
  color: var(--lggc-gold);
  font-size: 1.15rem;
}
.lggc-trust__callout {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--lggc-gold);
  background: rgba(10, 61, 46, 0.5);
}
.lggc-trust__sources dt {
  font-weight: 600;
  color: var(--lggc-gold);
  margin-top: 0.75rem;
}
.lggc-trust__sources a {
  color: var(--lggc-cream);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .lggc-hero__rail {
    animation: none;
  }
  .lggc-station:hover {
    transform: none;
  }
  .lggc-hero__cta:hover {
    transform: none;
  }
}
