/* Love PH layout styles - prefix g611- */
html { font-size: 62.5%; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --g611-primary: #26A69A;
  --g611-primary-dark: #004D40;
  --g611-text: #F0FDFF;
  --g611-bg: #1C2833;
  --g611-bg-soft: #243342;
  --g611-accent: #4DB6AC;
  --g611-muted: #A8C5C1;
  --g611-card: #22303D;
  --g611-border: rgba(38, 166, 154, 0.28);
  --g611-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.35);
  --g611-radius: 1.2rem;
  --g611-header-h: 5.6rem;
  --g611-bottom-h: 6.2rem;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5rem;
  background: var(--g611-bg);
  color: var(--g611-text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
a { color: var(--g611-primary); text-decoration: none; }
a:hover { color: var(--g611-accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.g611-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.g611-wrapper { width: 100%; max-width: 430px; margin: 0 auto; }
.g611-main {
  padding-top: calc(var(--g611-header-h) + 1rem);
  padding-bottom: 8.5rem;
  min-height: 100vh;
}
@media (min-width: 769px) {
  .g611-main { padding-bottom: 3rem; }
  body { background: #121a22; }
  .g611-wrapper, .g611-container, .g611-header-inner, .g611-bottom-nav {
    max-width: 430px;
  }
}

/* Header */
.g611-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #004D40 0%, #1C2833 100%);
  border-bottom: 1px solid var(--g611-border);
  box-shadow: var(--g611-shadow);
}
.g611-header-inner {
  max-width: 430px;
  margin: 0 auto;
  height: var(--g611-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  gap: 0.8rem;
}
.g611-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  color: var(--g611-text);
}
.g611-logo img {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.8rem;
  object-fit: cover;
}
.g611-logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--g611-text);
}
.g611-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.g611-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.4rem;
  min-width: 4.4rem;
  padding: 0.8rem 1.4rem;
  border-radius: 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.g611-btn:active { transform: scale(0.96); }
.g611-btn-primary {
  background: linear-gradient(135deg, #26A69A, #00897B);
  color: #fff;
  box-shadow: 0 0.2rem 0.8rem rgba(38, 166, 154, 0.45);
}
.g611-btn-outline {
  background: transparent;
  color: var(--g611-text);
  border: 1px solid var(--g611-primary);
}
.g611-btn-sm {
  min-height: 3.6rem;
  padding: 0.6rem 1.1rem;
  font-size: 1.1rem;
}
.g611-btn-block {
  width: 100%;
  margin: 1rem 0;
}
.g611-menu-toggle {
  width: 4.4rem;
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--g611-text);
  font-size: 2.2rem;
}

/* Mobile menu */
.g611-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.g611-overlay-show {
  opacity: 1;
  visibility: visible;
}
.g611-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(82vw, 32rem);
  height: 100%;
  background: linear-gradient(180deg, #004D40 0%, #1C2833 100%);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  padding: 2rem 1.6rem;
  overflow-y: auto;
  box-shadow: -0.4rem 0 2rem rgba(0, 0, 0, 0.4);
}
.g611-menu-open { transform: translateX(0); }
.g611-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.g611-menu-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0.8rem;
  color: var(--g611-text);
  font-size: 1.4rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(240, 253, 255, 0.08);
  min-height: 4.4rem;
}
.g611-menu-list a:hover { color: var(--g611-primary); }
.g611-menu-list i, .g611-menu-list .material-icons {
  font-size: 2rem;
  width: 2.4rem;
  color: var(--g611-primary);
}

/* Carousel */
.g611-carousel {
  position: relative;
  width: 100%;
  border-radius: var(--g611-radius);
  overflow: hidden;
  margin-bottom: 1.6rem;
  aspect-ratio: 16 / 9;
  background: var(--g611-card);
  box-shadow: var(--g611-shadow);
}
.g611-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  cursor: pointer;
}
.g611-slide-active { opacity: 1; z-index: 1; }
.g611-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.g611-carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}
.g611-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(240, 253, 255, 0.4);
  transition: background 0.2s, transform 0.2s;
}
.g611-dot-active {
  background: var(--g611-primary);
  transform: scale(1.25);
}

/* Hero / sections */
.g611-hero {
  text-align: center;
  padding: 0.4rem 0 1.6rem;
}
.g611-h1 {
  font-size: 2rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--g611-text);
  margin-bottom: 1rem;
}
.g611-h2 {
  font-size: 1.7rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--g611-primary);
  margin: 2rem 0 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--g611-border);
}
.g611-h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--g611-accent);
  margin: 1.4rem 0 0.8rem;
}
.g611-lead {
  font-size: 1.35rem;
  line-height: 1.65;
  color: var(--g611-muted);
  margin-bottom: 1.2rem;
}
.g611-section {
  margin-bottom: 2rem;
  padding: 1.4rem;
  background: var(--g611-card);
  border-radius: var(--g611-radius);
  border: 1px solid var(--g611-border);
}
.g611-section p {
  font-size: 1.35rem;
  line-height: 1.65;
  color: var(--g611-muted);
  margin-bottom: 1rem;
}
.g611-section p:last-child { margin-bottom: 0; }
.g611-text-link {
  color: var(--g611-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
.g611-promo-text {
  color: var(--g611-primary);
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
}

/* Game grids */
.g611-cat-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--g611-text);
  margin: 1.8rem 0 1rem;
}
.g611-cat-title i, .g611-cat-title .material-icons,
.g611-cat-title ion-icon { color: var(--g611-primary); font-size: 2.2rem; }
.g611-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}
.g611-game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.15s ease;
  min-width: 0;
}
.g611-game-card:active { transform: scale(0.95); }
.g611-game-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  object-fit: cover;
  border: 1px solid var(--g611-border);
  background: var(--g611-bg-soft);
  box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.25);
}
.g611-game-name {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.25;
  text-align: center;
  color: var(--g611-text);
  font-weight: 600;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Cards / lists */
.g611-card {
  background: var(--g611-bg-soft);
  border-radius: var(--g611-radius);
  padding: 1.2rem;
  border: 1px solid var(--g611-border);
  margin-bottom: 1rem;
}
.g611-steps { counter-reset: g611step; }
.g611-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}
.g611-step-num {
  flex-shrink: 0;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--g611-primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.g611-step-body { flex: 1; min-width: 0; }
.g611-step-body strong {
  display: block;
  color: var(--g611-text);
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
}
.g611-step-body span {
  color: var(--g611-muted);
  font-size: 1.25rem;
  line-height: 1.55;
}
.g611-faq-item {
  border-bottom: 1px solid var(--g611-border);
  padding: 1.2rem 0;
}
.g611-faq-item:last-child { border-bottom: none; }
.g611-faq-q {
  font-weight: 700;
  color: var(--g611-text);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.g611-faq-a {
  color: var(--g611-muted);
  font-size: 1.25rem;
  line-height: 1.55;
}
.g611-feature-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--g611-muted);
}
.g611-feature-list li i,
.g611-feature-list li .material-icons {
  color: var(--g611-primary);
  font-size: 1.8rem;
  margin-top: 0.1rem;
}
.g611-rtp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(240, 253, 255, 0.06);
  font-size: 1.25rem;
}
.g611-rtp-bar {
  height: 0.6rem;
  background: rgba(38, 166, 154, 0.15);
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 0.4rem;
}
.g611-rtp-fill {
  height: 100%;
  background: linear-gradient(90deg, #26A69A, #4DB6AC);
  border-radius: 1rem;
}
.g611-testimonial {
  background: var(--g611-bg-soft);
  border-left: 3px solid var(--g611-primary);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border-radius: 0 0.8rem 0.8rem 0;
}
.g611-testimonial p {
  font-style: italic;
  color: var(--g611-muted);
  margin-bottom: 0.6rem;
}
.g611-testimonial cite {
  color: var(--g611-primary);
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 700;
}
.g611-pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  text-align: center;
}
.g611-pay-item {
  background: var(--g611-bg-soft);
  border-radius: 0.8rem;
  padding: 1.2rem 0.6rem;
  border: 1px solid var(--g611-border);
  font-size: 1.1rem;
  color: var(--g611-text);
  font-weight: 600;
}
.g611-pay-item i, .g611-pay-item .material-icons {
  display: block;
  font-size: 2.4rem;
  color: var(--g611-primary);
  margin-bottom: 0.5rem;
}
.g611-cta-box {
  text-align: center;
  padding: 2rem 1.4rem;
  background: linear-gradient(145deg, #004D40, #1C2833);
  border-radius: var(--g611-radius);
  border: 1px solid var(--g611-primary);
  margin: 1.6rem 0;
}
.g611-cta-box h3 {
  color: var(--g611-text);
  margin-bottom: 0.8rem;
}
.g611-badge {
  display: inline-block;
  background: rgba(38, 166, 154, 0.18);
  color: var(--g611-primary);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 2rem;
  margin-bottom: 0.8rem;
}
.g611-winner-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(240, 253, 255, 0.06);
  font-size: 1.25rem;
  color: var(--g611-muted);
}
.g611-winner-list strong { color: var(--g611-primary); }
.g611-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0;
}
.g611-seo-links a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--g611-primary);
  text-decoration: underline;
}

/* Footer */
.g611-footer {
  background: #121a22;
  border-top: 1px solid var(--g611-border);
  padding: 2.4rem 1.2rem 2rem;
  max-width: 430px;
  margin: 0 auto;
}
.g611-footer-brand {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--g611-muted);
  margin-bottom: 1.4rem;
}
.g611-footer-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}
.g611-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.2rem;
  margin-bottom: 1.6rem;
}
.g611-footer-links a {
  color: var(--g611-muted);
  font-size: 1.25rem;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
}
.g611-footer-links a:hover { color: var(--g611-primary); }
.g611-copyright {
  text-align: center;
  font-size: 1.1rem;
  color: rgba(240, 253, 255, 0.45);
  padding-top: 1rem;
  border-top: 1px solid rgba(240, 253, 255, 0.06);
}

/* Bottom nav - unique teal capsule style */
.g611-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--g611-bottom-h);
  background: linear-gradient(180deg, #0f3d38 0%, #004D40 100%);
  border-top: 2px solid var(--g611-primary);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  max-width: 430px;
  margin: 0 auto;
  box-shadow: 0 -0.4rem 1.6rem rgba(0, 77, 64, 0.5);
  padding: 0.3rem 0.4rem calc(0.3rem + env(safe-area-inset-bottom, 0px));
}
.g611-bottom-nav a,
.g611-bottom-nav button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  color: rgba(240, 253, 255, 0.7);
  font-size: 1rem;
  gap: 0.25rem;
  border-radius: 1rem;
  transition: color 0.2s, background 0.2s, transform 0.15s;
}
.g611-bottom-nav a i,
.g611-bottom-nav a .material-icons,
.g611-bottom-nav a ion-icon,
.g611-bottom-nav button i,
.g611-bottom-nav button .material-icons,
.g611-bottom-nav button ion-icon {
  font-size: 2.2rem;
  line-height: 1;
}
.g611-bottom-nav a span,
.g611-bottom-nav button span {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.1;
}
.g611-bottom-nav a:active,
.g611-bottom-nav button:active {
  transform: scale(0.92);
  color: #fff;
}
.g611-nav-active {
  color: #fff !important;
  background: rgba(38, 166, 154, 0.28);
}
.g611-nav-active i,
.g611-nav-active .material-icons,
.g611-nav-active ion-icon {
  color: var(--g611-primary);
}
@media (min-width: 769px) {
  .g611-bottom-nav { display: none; }
}

/* Desktop center shell */
@media (min-width: 769px) {
  .g611-header { background: transparent; box-shadow: none; border: none; }
  .g611-header-inner {
    background: linear-gradient(180deg, #004D40 0%, #1C2833 100%);
    border: 1px solid var(--g611-border);
    border-radius: 0 0 1.2rem 1.2rem;
    box-shadow: var(--g611-shadow);
  }
  .g611-page-shell {
    max-width: 430px;
    margin: 0 auto;
    background: var(--g611-bg);
    min-height: 100vh;
    box-shadow: 0 0 4rem rgba(0, 0, 0, 0.45);
  }
}

/* Utilities */
.g611-mt-1 { margin-top: 1rem; }
.g611-mb-1 { margin-bottom: 1rem; }
.g611-center { text-align: center; }
.g611-muted { color: var(--g611-muted); }
.g611-strong { color: var(--g611-text); font-weight: 700; }
