

:root {
  --hue-anchor: 288;
  --hue-secondary: 198;
  --chroma-ceiling: 0.125;

  --paper: oklch(8% 0.015 var(--hue-anchor));
  --paper-elevated: oklch(12% 0.020 var(--hue-anchor));
  --paper-card: oklch(14% 0.022 var(--hue-anchor));
  --paper-border: oklch(24% 0.028 var(--hue-anchor));
  --paper-border-subtle: oklch(18% 0.020 var(--hue-anchor));

  --ink: oklch(96% 0.010 var(--hue-anchor));
  --ink-muted: oklch(76% 0.020 var(--hue-anchor));
  --ink-subtle: oklch(58% 0.020 var(--hue-anchor));

  --accent: oklch(62% 0.125 var(--hue-anchor));
  --accent-hover: oklch(68% 0.125 var(--hue-anchor));
  --accent-ink: oklch(98% 0.008 var(--hue-anchor));

  --secondary: oklch(65% 0.120 var(--hue-secondary));
  --secondary-ink: oklch(98% 0.008 var(--hue-secondary));

  --aurora-1: oklch(48% 0.120 var(--hue-anchor));
  --aurora-2: oklch(44% 0.115 var(--hue-secondary));

  --font-display: 'Hanken Grotesk', sans-serif;
  --font-body: 'Noto Sans Thai', sans-serif;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
  --space-6: 96px;
  --space-7: 128px;

  --radius-chip: 4px;
  --radius-card: 14px;
  --radius-pill: 999px;

  --container-max: 1180px;

  --dur: 180ms;
  --ease: cubic-bezier(.2,.7,.3,1);
}

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

html, body {
  overflow-x: clip;
  background-color: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.pgt-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-3);
}

.pgt-latin-brand-light {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.pgt-latin-brand-heavy {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.pgt-thai-head-light {
  font-family: var(--font-body);
  font-weight: 400;
}

.pgt-thai-head-heavy {
  font-family: var(--font-body);
  font-weight: 700;
}

.pgt-section-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 6px 14px;
  border-radius: var(--radius-chip);
  background: var(--paper-elevated);
  border: 1px solid var(--paper-border-subtle);
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: var(--space-2);
  line-height: 1;
}

.pgt-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: var(--radius-pill);
  background-color: var(--secondary);
  display: inline-block;
  flex-shrink: 0;
}

.pgt-btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--paper-border);
  background: var(--paper-elevated);
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.pgt-btn-pill:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.pgt-btn-pill-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.pgt-btn-pill-primary:hover {
  background: var(--accent-hover);
  color: var(--accent-ink);
}

/* NAV - N28 Centered Pill Nav */
.pgt-nav-wrapper {
  position: sticky;
  top: var(--space-2);
  z-index: 300;
  width: 100%;
  padding-inline: var(--space-3);
  margin-bottom: var(--space-4);
}

.pgt-nav-pill {
  max-width: 980px;
  margin-inline: auto;
  border-radius: var(--radius-pill);
  background: var(--paper-elevated);
  border: 1px solid var(--paper-border);
  padding: 8px var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 20px oklch(0% 0 0 / 0.4);
}

.pgt-nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  color: var(--ink);
}

.pgt-nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  list-style: none;
}

.pgt-nav-links a {
  font-size: 15px;
  color: var(--ink-muted);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.pgt-nav-links a:hover {
  color: var(--ink);
}

.pgt-nav-mobile-toggle {
  display: none;
}

.pgt-nav-toggle-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: var(--radius-chip);
  border: 1px solid var(--paper-border-subtle);
  background: var(--paper-card);
  color: var(--ink);
}

/* HERO AURORA */
.pgt-hero-section {
  position: relative;
  padding-block-start: var(--space-4);
  padding-block-end: var(--space-7);
  text-align: center;
  overflow: hidden;
}

.pgt-hero-aurora-bg {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  height: 55%;
  background: radial-gradient(ellipse at 50% 50%, var(--aurora-1) 0%, var(--aurora-2) 40%, transparent 70%);
  filter: blur(80px);
  opacity: 0.45;
  z-index: -1;
  pointer-events: none;
  border-radius: var(--radius-pill);
}

.pgt-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-inline: auto;
}

.pgt-hero-title {
  overflow-wrap: anywhere;
  min-width: 0;
  font-size: clamp(28px, 5vw, 54px);
  line-height: 1.25;
  margin-bottom: var(--space-3);
}

.pgt-hero-title-line {
  display: block;
}

.pgt-hero-lede {
  color: var(--ink-muted);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: var(--space-4);
}

.pgt-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.pgt-hero-devices {
  position: relative;
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  pointer-events: none;
}

.pgt-device-card-left,
.pgt-device-card-right {
  position: absolute;
  top: -120px;
  width: 250px;
  background: var(--paper-card);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-card);
  padding: 10px;
  box-shadow: 0 16px 36px oklch(0% 0 0 / 0.5);
  z-index: 1;
}

.pgt-device-card-left {
  left: -40px;
  transform: rotate(-8deg);
}

.pgt-device-card-right {
  right: -40px;
  transform: rotate(8deg);
}

/* PROVIDER STRIP */
.pgt-provider-strip-section {
  padding-block: var(--space-4);
  border-top: 1px solid var(--paper-border-subtle);
  border-bottom: 1px solid var(--paper-border-subtle);
  margin-bottom: var(--space-6);
}

.pgt-provider-logos-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.pgt-provider-logo-img {
  height: 28px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.7;
  transition: opacity var(--dur) var(--ease);
}

.pgt-provider-logo-img:hover {
  opacity: 1;
}

/* FEATURE TRIO */
.pgt-feature-section {
  padding-block: var(--space-5);
}

.pgt-section-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: var(--space-4);
}

.pgt-section-title {
  overflow-wrap: anywhere;
  min-width: 0;
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.3;
  margin-bottom: var(--space-1);
}

.pgt-feature-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.9fr;
  gap: var(--space-3);
}

.pgt-feature-card {
  background: var(--paper-card);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-card);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.pgt-feature-img-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--paper-border-subtle);
}

.pgt-feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: var(--space-1);
}

.pgt-feature-icon-svg {
  width: 20px;
  height: 20px;
  color: var(--secondary);
  flex-shrink: 0;
}

.pgt-feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}

.pgt-feature-card p {
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* GAME INDEX */
.pgt-game-section {
  padding-block: var(--space-5);
}

.pgt-game-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-3);
}

.pgt-game-card {
  background: var(--paper-card);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-card);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.pgt-game-thumb {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
}

.pgt-game-name {
  font-size: 18px;
  font-weight: 700;
  margin-top: var(--space-1);
}

.pgt-game-stats-row {
  display: flex;
  justify-content: space-between;
  padding-top: var(--space-2);
  border-top: 1px solid var(--paper-border-subtle);
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.4;
}

.pgt-stat-item strong {
  display: block;
  color: var(--secondary);
  font-size: 14px;
}

/* PLAY STEPS */
.pgt-steps-section {
  padding-block: var(--space-5);
}

.pgt-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.pgt-step-card {
  background: var(--paper-card);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-card);
  padding: var(--space-3);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.pgt-step-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: var(--accent);
  flex-shrink: 0;
  width: 54px;
}

.pgt-step-body h4 {
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 700;
}

.pgt-step-body p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* STAT BAND */
.pgt-stat-band-section {
  padding-block: var(--space-5);
}

.pgt-stat-band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-3);
  background: var(--paper-elevated);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-card);
  padding: var(--space-4);
  text-align: center;
}

.pgt-stat-cell {
  padding: var(--space-2);
}

.pgt-stat-value {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
  margin-bottom: var(--space-1);
}

.pgt-stat-label {
  font-size: 15px;
  color: var(--ink-muted);
}

/* FAQ TEASER */
.pgt-faq-section {
  padding-block: var(--space-5);
}

.pgt-faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 860px;
}

.pgt-faq-item {
  background: var(--paper-card);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.pgt-faq-summary {
  padding: var(--space-3);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}

.pgt-faq-summary::-webkit-details-marker {
  display: none;
}

.pgt-faq-summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--accent);
  transition: transform var(--dur) var(--ease);
}

.pgt-faq-item[open] .pgt-faq-summary::after {
  content: "-";
}

.pgt-faq-content {
  padding: 0 var(--space-3) var(--space-3);
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* CTA BAND */
.pgt-cta-band-section {
  padding-block: var(--space-6);
}

.pgt-cta-box {
  position: relative;
  background: var(--paper-card);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-card);
  padding: var(--space-5) var(--space-3);
  text-align: center;
  overflow: hidden;
}

.pgt-cta-box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, var(--aurora-1) 0%, transparent 65%);
  filter: blur(60px);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.pgt-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin-inline: auto;
}

.pgt-cta-title {
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.3;
  margin-bottom: var(--space-2);
}

.pgt-cta-desc {
  color: var(--ink-muted);
  font-size: 16px;
  margin-bottom: var(--space-4);
}

/* SITE FOOTER - Ft25 trust-logo strip */
.pgt-site-footer {
  border-top: 1px solid var(--paper-border);
  background: var(--paper-elevated);
  padding-block-start: var(--space-5);
  padding-block-end: var(--space-4);
}

.pgt-footer-trust-strip {
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--paper-border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.pgt-footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.pgt-footer-col h5 {
  font-size: 16px;
  margin-bottom: var(--space-2);
  color: var(--ink);
  font-weight: 700;
}

.pgt-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.pgt-footer-links a {
  color: var(--ink-muted);
  font-size: 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.pgt-footer-links a:hover {
  color: var(--ink);
}

.pgt-footer-bottom {
  text-align: center;
  font-size: 14px;
  color: var(--ink-subtle);
  border-top: 1px solid var(--paper-border-subtle);
  padding-top: var(--space-3);
}

/* SUB PAGE SPECIFIC STYLES */
.pgt-page-head-section {
  padding-block-start: var(--space-4);
  padding-block-end: var(--space-4);
}

.pgt-breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: var(--space-2);
}

.pgt-breadcrumb-nav a:hover {
  color: var(--ink);
}

.pgt-breadcrumb-sep {
  color: var(--ink-subtle);
}

.pgt-prose-section {
  padding-block-end: var(--space-5);
}

.pgt-prose-container {
  max-width: 860px;
}

.pgt-prose-content h2 {
  font-size: 26px;
  margin-top: var(--space-4);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.pgt-prose-content p {
  margin-bottom: var(--space-3);
  color: var(--ink-muted);
}

.pgt-prose-list {
  margin-bottom: var(--space-4);
  padding-left: var(--space-3);
  color: var(--ink-muted);
}

.pgt-prose-list li {
  margin-bottom: var(--space-1);
}

.pgt-prose-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-block: var(--space-4);
  border: 1px solid var(--paper-border);
  border-radius: var(--radius-card);
}

.pgt-prose-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 15px;
}

.pgt-prose-table th,
.pgt-prose-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--paper-border-subtle);
}

.pgt-prose-table th {
  background: var(--paper-card);
  color: var(--ink);
  font-weight: 700;
}

.pgt-prose-table tr:last-child td {
  border-bottom: none;
}

.pgt-media-row-section {
  padding-block-end: var(--space-5);
}

.pgt-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
}

.pgt-media-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--paper-border);
  background: var(--paper-card);
}

/* RESPONSIVE QUERIES */
@media (max-width: 900px) {
  .pgt-hero-devices {
    display: none;
  }
  .pgt-feature-grid {
    grid-template-columns: 1fr;
  }
  .pgt-game-grid {
    grid-template-columns: 1fr;
  }
  .pgt-steps-grid {
    grid-template-columns: 1fr;
  }
  .pgt-stat-band-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .pgt-nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: var(--space-3);
    right: var(--space-3);
    background: var(--paper-elevated);
    border: 1px solid var(--paper-border);
    border-radius: var(--radius-card);
    padding: var(--space-3);
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 10px 30px oklch(0% 0 0 / 0.6);
  }

  .pgt-nav-toggle-btn {
    display: flex;
  }

  .pgt-nav-mobile-toggle:checked ~ .pgt-nav-links {
    display: flex;
  }

  .pgt-stat-band-grid {
    grid-template-columns: 1fr;
  }

  .pgt-footer-nav-grid {
    grid-template-columns: 1fr;
  }

  .pgt-media-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* lop lap rap SOP6 */
.pgt-footer-trust-strip{display:flex;flex-wrap:wrap;gap:28px;align-items:center;justify-content:center;padding:24px 0;border-bottom:1px solid var(--color-rule,#222)}
.pgt-trust-logo{display:block;width:60px;height:30px;background-repeat:no-repeat;background-position:center;background-size:contain;filter:grayscale(1);opacity:.5}
.pgt-strip-caption{text-align:center;font-size:14px;opacity:.6;margin:0 0 16px}
.pgt-provider-logo{height:28px;width:auto;max-width:112px;object-fit:contain;filter:grayscale(1);opacity:.7}
.pgt-feature-img,.pgt-game-img,.pgt-media-img{width:100%;height:auto;display:block}
.pgt-media-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:20px}
.pgt-prose-list li{margin-bottom:8px}
html,body{overflow-x:clip;max-width:100%}
img{max-width:100%;height:auto}
.pgt-prose-table-wrap{overflow-x:auto;max-width:100%}
.pgt-silo-nav{margin:24px 0;padding:16px 20px;border:1px solid var(--paper-border,#2a2340);border-radius:14px;background:var(--paper-card,rgba(255,255,255,.03))}
.pgt-silo-nav-title{margin:0 0 8px;font-size:14px;opacity:.7}
.pgt-silo-nav-list{margin:0;padding-left:18px}
.pgt-silo-nav-list li{margin-bottom:6px}
.pgt-footer-note{margin:0;font-size:14px;line-height:1.7;opacity:.68}
.pgt-hero-devices{min-height:190px;margin-top:24px}
@media (max-width:900px){.pgt-hero-devices{display:flex;gap:12px;justify-content:center;min-height:0;margin-top:16px}.pgt-device-card-left,.pgt-device-card-right{position:static;width:46%;display:inline-block;margin:0;top:auto;left:auto;right:auto;transform:rotate(-4deg)}.pgt-device-card-right{transform:rotate(4deg)}}
.pgt-provider-logos-row{display:flex;flex-wrap:wrap;gap:18px;align-items:center;justify-content:center}
.pgt-provider-logo{height:44px;width:auto;max-width:104px;object-fit:contain;border-radius:8px;filter:grayscale(1) brightness(1.55);opacity:.85}
.pgt-trust-logo{width:64px;height:32px;border-radius:6px;filter:grayscale(1) brightness(1.6);opacity:.7}
.pgt-trust-logo-1{background-image:url(/assets/img/mp.png)}
.pgt-trust-logo-2{background-image:url(/assets/img/s-mark.webp)}
.pgt-trust-logo-3{background-image:url(/assets/img/pc-mark.png)}
.pgt-trust-logo-4{background-image:url(/assets/img/sexy-slot.png)}
.pgt-trust-logo-5{background-image:url(/assets/img/es-mark.png)}