/* Golden Throne theme */
html, body { margin: 0; padding: 0; }
body.gt-body {
  min-height: 100%;
  overflow-x: hidden;
  background-color: #190922;
  background-image: var(--gt-bg);
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #f8f7f2;
  font-family: "Nunito Sans", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
}
* { box-sizing: border-box; }
a { color: #ffe747; text-decoration: none; }
a:hover { color: #ff9147; }
a:focus-visible, button:focus-visible {
  outline: 2px solid #ffe747;
  outline-offset: 2px;
}
img { max-width: 100%; }

@keyframes gt-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.gt-shell { position: relative; min-height: 100vh; }
.gt-shell::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: linear-gradient(180deg, rgba(25,9,34,0.72) 0%, rgba(25,9,34,0.58) 30%, rgba(25,9,34,0.86) 70%, rgba(25,9,34,0.96) 100%);
}
.gt-shell > * { position: relative; z-index: 1; }

/* Header */
.gt-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(25,9,34,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,231,71,0.16);
}
.gt-header-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 10px clamp(12px, 3vw, 24px);
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
}
.gt-logo-link { display: block; flex: 0 0 auto; border-radius: 12px; overflow: hidden; }
.gt-logo--header {
  width: 188px; height: 56px; object-fit: contain; display: block;
}
.gt-nav-slot--desktop { flex: 1 1 200px; min-width: 0; overflow-x: auto; scrollbar-width: none; }
.gt-nav-slot--desktop::-webkit-scrollbar { display: none; }
.gt-nav-slot--desktop .gt-main-nav {
  display: flex; flex-wrap: nowrap; align-items: center; gap: 8px; padding: 2px 0;
}
.gt-nav-slot--desktop .gt-nav-link {
  display: inline-flex; align-items: center; flex: 0 0 auto; white-space: nowrap;
  padding: 7px 14px; border-radius: 9999px;
  font-size: 14px; font-weight: 800; color: #f8f7f2;
  background: rgba(248,247,242,0.07); border: 1px solid rgba(255,231,71,0.3);
}
.gt-nav-slot--desktop .gt-nav-link:hover {
  background: linear-gradient(135deg, rgba(255,231,71,0.24), rgba(178,107,245,0.24));
  border-color: #ffe747; color: #ffe747;
  box-shadow: rgba(255,231,71,0.35) 0px 0px 16px -2px;
}
.gt-header-actions {
  display: flex; align-items: center; gap: 8px; flex: 0 0 auto; margin-left: auto;
}
.gt-burger {
  display: none; flex-direction: column; justify-content: center; gap: 4px;
  width: 44px; height: 44px; padding: 0 12px; border-radius: 12px; cursor: pointer;
  background: rgba(255,231,71,0.12); border: 1px solid rgba(255,231,71,0.45);
  box-shadow: rgba(255,231,71,0.3) 0px 4px 16px -6px;
}
.gt-burger span { display: block; height: 2px; background: #ffe747; border-radius: 9999px; }

.gt-nav-slot--mobile {
  display: none; flex-basis: 100%; flex-direction: column;
  padding-top: 8px;
}
.gt-nav-slot--mobile[hidden] { display: none !important; }
.gt-header.is-open .gt-nav-slot--mobile:not([hidden]) { display: flex; }
.gt-nav-slot--mobile .gt-main-nav {
  display: flex; flex-direction: column; gap: 4px;
  background: #190922; border: 1px solid rgba(255,231,71,0.35);
  border-radius: 12px; padding: 8px;
  box-shadow: rgba(0,0,0,0.55) 0px 16px 36px -10px;
}
.gt-nav-slot--mobile .gt-nav-link {
  display: block; padding: 11px 14px; border-radius: 12px; min-height: 44px;
  font-size: 15px; font-weight: 800; color: #f8f7f2; background: rgba(248,247,242,0.05);
}
.gt-nav-slot--mobile .gt-nav-link:hover {
  background: linear-gradient(135deg, rgba(255,231,71,0.22), rgba(178,107,245,0.22));
  color: #ffe747;
}

/* Buttons Example 5 */
.gt-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 800; letter-spacing: -0.011em;
  border-radius: 12px; cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: box-shadow .15s ease, transform .15s ease, background .15s ease;
}
.gt-btn--ghost {
  background: rgba(178,107,245,0.14); border: 1px solid #b26bf5; color: #f8f7f2;
  font-size: clamp(13px, 1.6vw, 14px); padding: 11px clamp(13px, 2.4vw, 22px);
  box-shadow: rgba(178,107,245,0.4) 0px 4px 18px -4px;
}
.gt-btn--ghost:hover {
  background: rgba(178,107,245,0.3);
  box-shadow: rgba(178,107,245,0.7) 0px 6px 26px -4px;
  color: #f8f7f2;
}
.gt-btn--gold {
  background: linear-gradient(135deg, #ffe747 0%, #ff9147 55%, #ee5968 100%);
  border: none; color: #1d1d1c;
  font-size: clamp(13px, 1.6vw, 14px); padding: 12px clamp(14px, 2.6vw, 24px);
  box-shadow: rgba(255,145,71,0.55) 0px 6px 22px -4px, rgba(255,231,71,0.45) 0px 0px 0px 1px, rgba(255,255,255,0.45) 0px 1px 0px 0px inset;
}
.gt-btn--gold:hover {
  box-shadow: rgba(255,145,71,0.85) 0px 10px 34px -6px, rgba(255,231,71,0.6) 0px 0px 0px 1px, rgba(255,255,255,0.5) 0px 1px 0px 0px inset;
  transform: translateY(-1px); color: #1d1d1c;
}
.gt-btn--lg {
  font-size: clamp(15px, 2.2vw, 18px); letter-spacing: -0.012em;
  padding: clamp(13px, 1.8vw, 16px) clamp(20px, 3.4vw, 32px);
  box-shadow: rgba(255,145,71,0.6) 0px 10px 34px -6px, rgba(255,231,71,0.5) 0px 0px 0px 1px, rgba(255,255,255,0.5) 0px 1px 0px 0px inset;
}
.gt-btn--purple {
  background: linear-gradient(135deg, #b26bf5 0%, #ee5968 100%);
  border: none; color: #ffffff;
  font-size: clamp(14px, 1.8vw, 16px); padding: 14px clamp(24px, 5vw, 40px);
  box-shadow: rgba(178,107,245,0.6) 0px 10px 32px -8px, rgba(255,255,255,0.35) 0px 1px 0px 0px inset;
}
.gt-btn--purple:hover {
  box-shadow: rgba(238,89,104,0.85) 0px 14px 40px -8px, rgba(255,255,255,0.4) 0px 1px 0px 0px inset;
  color: #ffffff;
}

/* Hero */
.gt-hero {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(16px, 3vw, 32px) clamp(12px, 3vw, 24px) 0;
}
.gt-hero-card {
  position: relative; border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(255,231,71,0.28);
  box-shadow: rgba(0,0,0,0.5) 0px 24px 48px -24px;
  min-height: clamp(280px, 42vw, 520px);
  display: flex; align-items: center;
}
.gt-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: right center; display: block;
}
.gt-hero-fade {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(25,9,34,0.62) 0%, rgba(25,9,34,0.3) 40%, rgba(25,9,34,0) 72%);
}
.gt-hero-copy {
  position: relative; max-width: 560px;
  padding: clamp(24px, 3vw, 40px) clamp(20px, 4vw, 56px);
  display: flex; flex-direction: column; align-items: flex-start; gap: 20px;
}
.gt-hero-title {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif; font-weight: 400;
  font-size: clamp(30px, 4.2vw, 64px); line-height: 1.2; letter-spacing: -0.023em;
  color: #ffffff;
  text-shadow: rgba(25,9,34,0.85) 0px 2px 16px, rgba(25,9,34,0.6) 0px 0px 40px;
}

/* Providers marquee */
.gt-providers-wrap {
  margin: 24px 0 0; padding: 20px 0; overflow: hidden;
  background: linear-gradient(90deg, rgba(178,107,245,0.2) 0%, rgba(25,9,34,0.7) 25%, rgba(25,9,34,0.7) 75%, rgba(74,213,232,0.2) 100%);
  border-top: 1px solid rgba(255,231,71,0.28);
  border-bottom: 1px solid rgba(255,231,71,0.28);
}
.gt-prov-track {
  display: flex; width: max-content; align-items: center; gap: 16px;
  animation: gt-marquee 48s linear infinite;
}
.gt-prov {
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  height: 56px; width: 148px; border-radius: 12px;
  border: 1px solid rgba(255,231,71,0.45);
  background: linear-gradient(160deg, rgba(178,107,245,0.22) 0%, rgba(25,9,34,0.6) 100%);
  box-shadow: rgba(255,231,71,0.25) 0px 4px 18px -6px;
}
.gt-prov--1 { border-color: rgba(255,145,71,0.5); background: linear-gradient(160deg, rgba(255,145,71,0.2) 0%, rgba(25,9,34,0.6) 100%); }
.gt-prov--2 { border-color: rgba(238,89,104,0.5); background: linear-gradient(160deg, rgba(238,89,104,0.2) 0%, rgba(25,9,34,0.6) 100%); }
.gt-prov--3 { border-color: rgba(178,107,245,0.5); background: linear-gradient(160deg, rgba(178,107,245,0.22) 0%, rgba(25,9,34,0.6) 100%); }
.gt-prov--4 { border-color: rgba(74,213,232,0.5); background: linear-gradient(160deg, rgba(74,213,232,0.2) 0%, rgba(25,9,34,0.6) 100%); }
.gt-prov--5 { border-color: rgba(88,223,140,0.5); background: linear-gradient(160deg, rgba(88,223,140,0.2) 0%, rgba(25,9,34,0.6) 100%); }
.gt-prov--6 { border-color: rgba(247,136,210,0.5); background: linear-gradient(160deg, rgba(247,136,210,0.2) 0%, rgba(25,9,34,0.6) 100%); }
.gt-prov--7 { border-color: rgba(81,177,251,0.5); background: linear-gradient(160deg, rgba(81,177,251,0.2) 0%, rgba(25,9,34,0.6) 100%); }
.gt-prov img { height: 32px; width: 112px; object-fit: contain; display: block; }

/* Sections */
.gt-section {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(40px, 6vw, 64px) clamp(12px, 3vw, 24px) 0;
}
.gt-section-head { margin-bottom: 20px; }
.gt-eyebrow {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px;
}
.gt-eyebrow--gold { color: #ffe747; }
.gt-eyebrow--cyan { color: #4ad5e8; }
.gt-section-title {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif; font-weight: 400;
  font-size: clamp(28px, 3vw, 48px); line-height: 1.2; letter-spacing: -0.013em;
  color: #f8f7f2;
}
.gt-section .gt-section-title { text-shadow: rgba(255,231,71,0.35) 0px 0px 28px; }
#popular .gt-section-title { text-shadow: rgba(74,213,232,0.35) 0px 0px 28px; }

/* Winners */
.gt-scroll {
  display: flex; gap: 16px; overflow-x: auto; padding-bottom: 16px;
  scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
}
.gt-scroll::-webkit-scrollbar { height: 8px; }
.gt-scroll::-webkit-scrollbar-track { background: rgba(248,247,242,0.06); border-radius: 9999px; }
.gt-scroll::-webkit-scrollbar-thumb { background: rgba(255,231,71,0.35); border-radius: 9999px; }
.gt-winner {
  flex: 0 0 auto; width: 200px; scroll-snap-align: start;
  background: linear-gradient(180deg, rgba(178,107,245,0.16) 0%, rgba(25,9,34,0.85) 60%);
  border: 1px solid rgba(255,231,71,0.3); border-radius: 12px; padding: 12px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: rgba(255,231,71,0.12) 0px 6px 22px -8px; color: inherit;
}
.gt-winner:hover {
  border-color: #ffe747;
  box-shadow: rgba(255,231,71,0.45) 0px 10px 30px -8px;
  color: inherit;
}
.gt-winner img {
  display: block; width: 100%; aspect-ratio: 2 / 3; object-fit: cover;
  border-radius: 12px; background: #1d1d1c;
}
.gt-winner-meta { display: flex; flex-direction: column; gap: 4px; }
.gt-winner-user { font-size: 14px; font-weight: 600; color: #f8f7f2; }
.gt-winner-amt {
  font-size: 22px; font-weight: 800; letter-spacing: -0.012em; color: #ffe747;
  text-shadow: rgba(255,231,71,0.5) 0px 0px 18px;
}

/* Games */
.gt-games-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 16px);
}
.gt-game { display: flex; flex-direction: column; gap: 8px; }
.gt-game.is-hidden { display: none !important; }
.gt-game-card {
  display: block; border-radius: 12px; overflow: hidden;
  border: 2px solid var(--gt-frame, #ffe747); background: #1d1d1c;
  box-shadow: 0 6px 20px -8px rgba(255,231,71,0.45);
}
.gt-game-card img {
  display: block; width: 100%; aspect-ratio: 2 / 3; object-fit: cover;
}
.gt-likes {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 500; color: rgba(248,247,242,0.72);
}
.gt-heart { font-size: 14px; line-height: 1; color: #ee5968; }
.gt-more-wrap { display: flex; justify-content: center; margin-top: 32px; }
.gt-more-wrap.is-hidden { display: none; }

/* Content */
.gt-prose-section { padding-bottom: 0; }
.gt-article {
  background:
    linear-gradient(90deg, #ffe747, #ff9147, #ee5968, #b26bf5, #4ad5e8) top left / 100% 6px no-repeat,
    #f8f7f2;
  color: #1d1d1c; border-radius: 24px; overflow: hidden;
  padding: clamp(30px, 4vw, 64px) clamp(24px, 4vw, 64px);
  box-shadow: rgba(255,145,71,0.28) 0px 18px 48px -18px;
}
.gt-content { max-width: 76ch; font-size: 16px; line-height: 1.5; color: #43423e; }
.gt-content h1, .gt-content h2, .gt-content h3 {
  font-family: "DM Serif Display", Georgia, serif; font-weight: 400; color: #1d1d1c;
}
.gt-content h1, .gt-content h2 {
  font-size: clamp(28px, 3vw, 48px); line-height: 1.2; letter-spacing: -0.013em; margin: 0 0 20px;
}
.gt-content h3 {
  font-size: 28px; line-height: 1.35; letter-spacing: -0.01em; margin: 0 0 12px;
}
.gt-content p { margin: 0 0 16px; }
.gt-content ul, .gt-content ol { margin: 0 0 32px; padding-left: 20px; }
.gt-content li { margin: 8px 0; }
.gt-content a { color: #8200db; }
.gt-content blockquote {
  margin: 0 0 32px; padding: 24px 0;
  border-top: 2px solid #ffe747; border-bottom: 1px solid #d8d6ce;
}
.gt-content blockquote p {
  font-family: "DM Serif Display", Georgia, serif; font-size: 28px;
  line-height: 1.35; color: #1d1d1c; margin: 0 0 12px;
}
.gt-content table { width: 100%; border-collapse: collapse; font-size: 14px; line-height: 1.43; }
.gt-content table th, .gt-content table td {
  text-align: left; padding: 12px 16px; border-bottom: 1px solid #d8d6ce;
}
.gt-content table th {
  border-bottom: 2px solid #1d1d1c; font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: #43423e;
}
.gt-content table td { color: #43423e; }
.gt-content-cta { margin-top: 28px; display: flex; justify-content: center; }

@media (max-width: 768px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }
}

/* Footer */
.gt-footer {
  margin-top: 64px;
  border-top: 1px solid rgba(248,247,242,0.12);
  background: rgba(25,9,34,0.9);
}
.gt-footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(32px, 5vw, 48px) clamp(12px, 3vw, 24px);
}
.gt-footer-top {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 24px;
  padding-bottom: 24px; border-bottom: 1px solid rgba(248,247,242,0.12);
}
.gt-logo--footer {
  width: 188px; height: 56px; object-fit: contain; display: block; flex: 0 0 auto;
}
.gt-nav-slot--footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 22px 0 8px;
  box-sizing: border-box;
}
.gt-nav-slot--footer .gt-footer-nav {
  display: flex; flex-direction: row; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 10px 22px; width: 100%;
  margin: 0 auto; text-align: center;
}
.gt-footer-link {
  font-size: 14px; font-weight: 600; color: #f8f7f2; white-space: nowrap;
}
.gt-footer-link:hover { color: #ffe747; }
.gt-sec-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  margin-left: auto;
}
.gt-sec-img {
  height: 28px; width: auto; object-fit: contain; border-radius: 4px; display: block;
}
.gt-pay-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px; padding: 32px 0;
}
.gt-pay {
  display: flex; align-items: center; justify-content: center;
  height: 44px; width: 84px; border-radius: 12px;
  background: #ffffff; border: 1px solid rgba(255,231,71,0.4);
  box-shadow: rgba(255,231,71,0.2) 0px 4px 14px -6px;
}
.gt-pay img { height: 22px; width: 60px; object-fit: contain; display: block; }
.gt-pay--invert img { filter: brightness(0) saturate(100%); }
.gt-footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  padding-top: 24px; border-top: 1px solid rgba(248,247,242,0.12);
}
.gt-age {
  display: inline-flex; align-items: center; justify-content: center;
  height: 32px; min-width: 32px; padding: 0 8px; border-radius: 9999px;
  border: 1px solid #ee5968; background: rgba(238,89,104,0.16);
  font-size: 12px; font-weight: 700; color: #f8f7f2;
}
.gt-rg {
  margin: 0; flex: 1 1 320px; font-size: 12px; line-height: 1.5; color: #99978f;
}

@media (prefers-reduced-motion: reduce) {
  .gt-prov-track { animation: none !important; }
}

@media (max-width: 759px) {
  .gt-nav-slot--desktop { display: none !important; }
  .gt-burger { display: flex; }
  .gt-header-actions { flex: 1 1 auto; justify-content: flex-end; }
  .gt-btn--ghost { display: none; }
  .gt-header-actions .gt-btn--gold { flex: 1 1 auto; }

  .gt-hero-card {
    flex-direction: column; align-items: stretch; min-height: 0;
  }
  .gt-hero-img {
    position: relative; inset: auto; height: clamp(190px, 58vw, 300px);
    object-position: 88% center;
  }
  .gt-hero-fade { display: none; }
  .gt-hero-copy {
    max-width: none; padding: 20px 0 0; gap: 18px;
  }
  .gt-hero-title {
    font-size: clamp(28px, 8.4vw, 40px);
    text-shadow: none;
  }
  .gt-hero-copy .gt-btn--lg { width: 100%; box-sizing: border-box; }

  .gt-footer-top {
    flex-direction: column; align-items: center; text-align: center;
  }
  .gt-sec-row { margin-left: 0; justify-content: center; }
  .gt-nav-slot--footer .gt-footer-nav {
    justify-content: center; align-items: center; gap: 10px 18px;
  }

  .gt-games-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1099px) and (min-width: 760px) {
  .gt-games-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .gt-games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
