/* pgph88 styles - prefix gd68- | palette: #2E4057 #D3D3D3 #FFB6C1 #FFCCCB #FF91A4 */
:root {
  --gd68-bg: #2E4057;
  --gd68-bg-soft: #354a63;
  --gd68-bg-card: #3a5068;
  --gd68-text: #D3D3D3;
  --gd68-text-light: #ffffff;
  --gd68-primary: #FF91A4;
  --gd68-secondary: #FFB6C1;
  --gd68-accent: #FFCCCB;
  --gd68-muted: #9aa8b8;
  --gd68-header-h: 5.6rem;
  --gd68-bottom-h: 6.2rem;
  --gd68-radius: 1rem;
  --gd68-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.25);
  --gd68-max: 43rem;
}

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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5rem;
  color: var(--gd68-text);
  background: var(--gd68-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gd68-secondary); text-decoration: none; }
a:hover { color: var(--gd68-primary); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.gd68-wrapper {
  width: 100%;
  max-width: var(--gd68-max);
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background: linear-gradient(180deg, #2E4057 0%, #263548 100%);
}

.gd68-container {
  width: 100%;
  padding: 0 1.2rem;
}

/* Header */
.gd68-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--gd68-header-h);
  background: rgba(46, 64, 87, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 145, 164, 0.25);
  box-shadow: var(--gd68-shadow);
}

.gd68-header-inner {
  max-width: var(--gd68-max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  gap: 0.8rem;
}

.gd68-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  flex-shrink: 1;
}

.gd68-logo img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.6rem;
  object-fit: cover;
}

.gd68-logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gd68-text-light);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.gd68-logo-text span { color: var(--gd68-primary); }

.gd68-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.gd68-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 4.4rem;
  min-width: 4.4rem;
  padding: 0.8rem 1.2rem;
  border-radius: 2.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.gd68-btn:active { transform: scale(0.96); }

.gd68-btn-primary {
  background: linear-gradient(135deg, #FF91A4, #FFB6C1);
  color: #2E4057;
  box-shadow: 0 0.2rem 0.8rem rgba(255, 145, 164, 0.4);
}

.gd68-btn-primary:hover { color: #1a2838; }

.gd68-btn-outline {
  border: 1px solid var(--gd68-primary);
  color: var(--gd68-primary);
  background: transparent;
}

.gd68-btn-outline:hover {
  background: rgba(255, 145, 164, 0.12);
  color: var(--gd68-secondary);
}

.gd68-btn-block {
  width: 100%;
  margin: 0.8rem 0;
}

.gd68-menu-toggle {
  width: 4.4rem;
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gd68-secondary);
  font-size: 2.2rem;
  border-radius: 0.8rem;
}

.gd68-menu-toggle:hover { background: rgba(255, 182, 193, 0.1); }

/* Mobile menu */
.gd68-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
}

.gd68-overlay-show {
  opacity: 1;
  visibility: visible;
}

.gd68-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(30rem, 82vw);
  height: 100%;
  background: #263548;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -0.4rem 0 1.6rem rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.gd68-menu-open { transform: translateX(0); }

.gd68-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.6rem;
  border-bottom: 1px solid rgba(255, 145, 164, 0.2);
}

.gd68-menu-header h3 {
  font-size: 1.6rem;
  color: var(--gd68-text-light);
}

.gd68-menu-close {
  width: 4.4rem;
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: var(--gd68-primary);
}

.gd68-menu-list {
  padding: 1.2rem 0;
  flex: 1;
}

.gd68-menu-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.6rem;
  min-height: 4.8rem;
  color: var(--gd68-text);
  font-size: 1.4rem;
  border-left: 3px solid transparent;
  transition: background 0.2s, border-color 0.2s;
}

.gd68-menu-list a:hover,
.gd68-menu-list a.gd68-nav-active {
  background: rgba(255, 145, 164, 0.1);
  border-left-color: var(--gd68-primary);
  color: var(--gd68-secondary);
}

.gd68-menu-list i,
.gd68-menu-list .material-icons,
.gd68-menu-list .bi {
  font-size: 2rem;
  width: 2.4rem;
  text-align: center;
  color: var(--gd68-primary);
}

/* Main */
.gd68-main {
  padding-top: calc(var(--gd68-header-h) + 1rem);
  padding-bottom: 2rem;
}

@media (max-width: 768px) {
  .gd68-main { padding-bottom: 8rem; }
}

/* Carousel */
.gd68-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--gd68-radius);
  margin-bottom: 1.6rem;
  box-shadow: var(--gd68-shadow);
}

.gd68-carousel-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.gd68-slide {
  min-width: 100%;
  position: relative;
  cursor: pointer;
}

.gd68-slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.gd68-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.2rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
}

.gd68-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: rgba(46, 64, 87, 0.7);
  color: var(--gd68-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 2;
}

.gd68-carousel-prev { left: 0.8rem; }
.gd68-carousel-next { right: 0.8rem; }

.gd68-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  z-index: 2;
}

.gd68-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.2s, transform 0.2s;
}

.gd68-dot-active {
  background: var(--gd68-primary);
  transform: scale(1.25);
}

/* Sections */
.gd68-section {
  margin-bottom: 2rem;
  padding: 0 1.2rem;
}

.gd68-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gd68-text-light);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.4;
}

.gd68-section-title i,
.gd68-section-title .material-icons {
  color: var(--gd68-primary);
  font-size: 2.2rem;
}

.gd68-h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gd68-text-light);
  line-height: 1.35;
  margin: 0 1.2rem 1.2rem;
  text-align: center;
}

.gd68-h1 span { color: var(--gd68-primary); }

.gd68-lead {
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--gd68-text);
  margin: 0 1.2rem 1.6rem;
  text-align: center;
}

/* Game grid */
.gd68-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.gd68-game-card {
  background: var(--gd68-bg-card);
  border-radius: 0.8rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(255, 182, 193, 0.12);
  text-align: center;
}

.gd68-game-card:hover,
.gd68-game-card:active {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0.4rem 1rem rgba(255, 145, 164, 0.25);
  border-color: var(--gd68-primary);
}

.gd68-game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #1f2d3d;
}

.gd68-game-card span {
  display: block;
  padding: 0.5rem 0.3rem;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--gd68-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Cards / content */
.gd68-card {
  background: var(--gd68-bg-card);
  border-radius: var(--gd68-radius);
  padding: 1.4rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 182, 193, 0.1);
  box-shadow: var(--gd68-shadow);
}

.gd68-card h3 {
  font-size: 1.5rem;
  color: var(--gd68-secondary);
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.gd68-card p {
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--gd68-text);
  margin-bottom: 0.8rem;
}

.gd68-card p:last-child { margin-bottom: 0; }

.gd68-text-link {
  color: var(--gd68-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.gd68-text-link:hover { color: var(--gd68-secondary); }

.gd68-list {
  margin: 0.8rem 0;
}

.gd68-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.8rem;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--gd68-text);
}

.gd68-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--gd68-primary);
}

/* FAQ */
.gd68-faq-item {
  background: var(--gd68-bg-card);
  border-radius: 0.8rem;
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--gd68-primary);
}

.gd68-faq-item h3 {
  font-size: 1.35rem;
  color: var(--gd68-secondary);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.gd68-faq-item p {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--gd68-text);
}

/* Stats / RTP */
.gd68-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.gd68-stat {
  background: linear-gradient(145deg, #3a5068, #2E4057);
  border-radius: 0.8rem;
  padding: 1.2rem;
  text-align: center;
  border: 1px solid rgba(255, 145, 164, 0.2);
}

.gd68-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gd68-primary);
  line-height: 1.2;
}

.gd68-stat-label {
  font-size: 1.1rem;
  color: var(--gd68-muted);
  margin-top: 0.4rem;
}

/* Testimonials */
.gd68-review {
  background: var(--gd68-bg-card);
  border-radius: 0.8rem;
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  border: 1px solid rgba(255, 204, 203, 0.15);
}

.gd68-review-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}

.gd68-avatar {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF91A4, #FFB6C1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2E4057;
  font-weight: 700;
  font-size: 1.4rem;
}

.gd68-review-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gd68-text-light);
}

.gd68-stars { color: #FFB6C1; font-size: 1.2rem; letter-spacing: 0.1rem; }

.gd68-review p {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--gd68-text);
}

/* Payment / winners */
.gd68-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.gd68-chip {
  background: rgba(255, 145, 164, 0.15);
  border: 1px solid rgba(255, 145, 164, 0.35);
  color: var(--gd68-secondary);
  padding: 0.6rem 1rem;
  border-radius: 2rem;
  font-size: 1.15rem;
  font-weight: 600;
  min-height: 3.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.gd68-winner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(211, 211, 211, 0.1);
  font-size: 1.25rem;
}

.gd68-winner:last-child { border-bottom: none; }
.gd68-winner strong { color: var(--gd68-primary); }

/* CTA */
.gd68-cta {
  text-align: center;
  padding: 2rem 1.4rem;
  background: linear-gradient(135deg, rgba(255, 145, 164, 0.18), rgba(255, 182, 193, 0.08));
  border-radius: var(--gd68-radius);
  border: 1px solid rgba(255, 145, 164, 0.3);
  margin: 0 1.2rem 2rem;
}

.gd68-cta h2 {
  font-size: 1.8rem;
  color: var(--gd68-text-light);
  margin-bottom: 0.8rem;
  line-height: 1.35;
}

.gd68-cta p {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 1.2rem;
  color: var(--gd68-text);
}

/* Footer */
.gd68-footer {
  background: #243447;
  padding: 2.4rem 1.2rem 2rem;
  border-top: 1px solid rgba(255, 145, 164, 0.2);
}

.gd68-footer-brand {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gd68-text-light);
  margin-bottom: 0.8rem;
}

.gd68-footer-brand span { color: var(--gd68-primary); }

.gd68-footer-desc {
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--gd68-muted);
  margin-bottom: 1.4rem;
}

.gd68-footer-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}

.gd68-footer-btns .gd68-btn {
  min-height: 4rem;
  padding: 0.6rem 1rem;
  font-size: 1.15rem;
}

.gd68-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.2rem;
  margin-bottom: 1.6rem;
}

.gd68-footer-links a {
  font-size: 1.2rem;
  color: var(--gd68-secondary);
  min-height: 3.6rem;
  display: flex;
  align-items: center;
}

.gd68-footer-links a:hover { color: var(--gd68-primary); }

.gd68-copyright {
  text-align: center;
  font-size: 1.1rem;
  color: var(--gd68-muted);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(211, 211, 211, 0.08);
}

/* Bottom navigation */
.gd68-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--gd68-bottom-h);
  background: linear-gradient(180deg, #354a63 0%, #2E4057 100%);
  border-top: 2px solid rgba(255, 145, 164, 0.35);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 0.4rem;
  box-shadow: 0 -0.3rem 1.2rem rgba(0, 0, 0, 0.3);
  max-width: var(--gd68-max);
  margin: 0 auto;
}

.gd68-bottom-nav a,
.gd68-bottom-nav button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 6rem;
  min-height: 6rem;
  color: var(--gd68-muted);
  font-size: 1rem;
  transition: color 0.2s, transform 0.2s;
  background: transparent;
  border: none;
  padding: 0.4rem;
}

.gd68-bottom-nav a i,
.gd68-bottom-nav a .material-icons,
.gd68-bottom-nav a .bi,
.gd68-bottom-nav button i,
.gd68-bottom-nav button .material-icons,
.gd68-bottom-nav button .bi {
  font-size: 2.2rem;
  line-height: 1;
  transition: transform 0.2s;
}

.gd68-bottom-nav a .material-icons,
.gd68-bottom-nav button .material-icons {
  font-size: 2.4rem;
}

.gd68-bottom-nav a:active,
.gd68-bottom-nav button:active {
  transform: scale(0.92);
}

.gd68-bottom-nav a:hover,
.gd68-bottom-nav a.gd68-nav-active,
.gd68-bottom-nav button:hover {
  color: var(--gd68-primary);
}

.gd68-bottom-nav a.gd68-nav-active i,
.gd68-bottom-nav a.gd68-nav-active .material-icons {
  transform: scale(1.1);
  color: var(--gd68-primary);
}

.gd68-bottom-nav .gd68-nav-label {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 600;
}

/* Desktop */
@media (min-width: 769px) {
  .gd68-bottom-nav { display: none; }
  .gd68-main { padding-bottom: 3rem; }
  .gd68-wrapper { box-shadow: 0 0 4rem rgba(0, 0, 0, 0.4); }
  .gd68-game-grid { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
  .gd68-stats { grid-template-columns: repeat(4, 1fr); }
  .gd68-header { left: 50%; right: auto; width: 100%; max-width: var(--gd68-max); transform: translateX(-50%); }
}

@media (max-width: 360px) {
  .gd68-game-grid { grid-template-columns: repeat(3, 1fr); }
  .gd68-btn { padding: 0.7rem 0.9rem; font-size: 1.1rem; }
  .gd68-logo-text { font-size: 1.4rem; }
}

/* Utility */
.gd68-mt-1 { margin-top: 0.8rem; }
.gd68-mb-1 { margin-bottom: 0.8rem; }
.gd68-mb-2 { margin-bottom: 1.6rem; }
.gd68-center { text-align: center; }
.gd68-bold { font-weight: 700; }
.gd68-promo-text {
  color: var(--gd68-primary);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}
.gd68-promo-text:hover { color: var(--gd68-secondary); }
