/* luckyking.homes - Core Styles | prefix: pg23- */
html { font-size: 62.5%; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --pg23-primary: #00E5FF;
  --pg23-secondary: #48D1CC;
  --pg23-bg: #1E1E1E;
  --pg23-bg2: #2A2A2A;
  --pg23-bg3: #161616;
  --pg23-text: #C0C0C0;
  --pg23-text-light: #F0F0F0;
  --pg23-muted: #8A8A8A;
  --pg23-border: #333;
  --pg23-danger: #FF6B6B;
  --pg23-gold: #FFD700;
  --pg23-radius: 0.8rem;
  --pg23-shadow: 0 0.4rem 1.2rem rgba(0, 229, 255, 0.15);
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--pg23-bg);
  color: var(--pg23-text);
  font-size: 1.4rem;
  line-height: 1.5rem;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: var(--pg23-primary); text-decoration: none; font-weight: 600; }
a:hover { color: var(--pg23-secondary); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.pg23-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.pg23-wrapper { max-width: 430px; margin: 0 auto; position: relative; }
.pg23-main { padding-top: 5.6rem; padding-bottom: 8rem; min-height: 60vh; }
@media (min-width: 769px) {
  .pg23-wrapper, .pg23-container { max-width: 430px; }
  .pg23-main { padding-bottom: 3rem; }
  .pg23-bottom-nav { display: none !important; }
}

/* Header */
.pg23-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, #1a1a1a 0%, #1E1E1E 100%);
  border-bottom: 1px solid rgba(0, 229, 255, 0.25);
  height: 5.6rem;
}
.pg23-header-inner {
  max-width: 430px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.2rem; gap: 0.8rem;
}
.pg23-logo { display: flex; align-items: center; gap: 0.6rem; min-width: 0; }
.pg23-logo img { width: 3.2rem; height: 3.2rem; border-radius: 0.6rem; }
.pg23-logo-text {
  font-size: 1.6rem; font-weight: 700; color: var(--pg23-primary);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pg23-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.pg23-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 4.4rem; min-width: 4.4rem; padding: 0.6rem 1.2rem;
  border-radius: 2.2rem; font-size: 1.2rem; font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.pg23-btn:active { transform: scale(0.95); }
.pg23-btn-primary {
  background: linear-gradient(135deg, #00E5FF, #48D1CC);
  color: #0a0a0a; box-shadow: 0 0.2rem 0.8rem rgba(0, 229, 255, 0.35);
}
.pg23-btn-outline {
  background: transparent; color: var(--pg23-primary);
  border: 1.5px solid var(--pg23-primary);
}
.pg23-btn-sm { min-height: 3.6rem; padding: 0.4rem 1rem; font-size: 1.1rem; }
.pg23-btn-block { width: 100%; }
.pg23-menu-btn {
  width: 4.4rem; height: 4.4rem; display: flex; align-items: center;
  justify-content: center; color: var(--pg23-primary); font-size: 2.2rem;
}

/* Mobile Menu */
.pg23-menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 9998; opacity: 0; visibility: hidden; transition: opacity 0.3s;
}
.pg23-overlay-show { opacity: 1; visibility: visible; }
.pg23-mobile-menu {
  position: fixed; top: 0; right: -28rem; width: 26rem; max-width: 85vw;
  height: 100%; background: var(--pg23-bg3); z-index: 9999;
  transition: right 0.3s ease; overflow-y: auto; padding: 2rem 1.6rem;
  border-left: 1px solid rgba(0, 229, 255, 0.2);
}
.pg23-menu-open { right: 0; }
.pg23-menu-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  color: var(--pg23-text); font-size: 2.4rem; width: 4.4rem; height: 4.4rem;
  display: flex; align-items: center; justify-content: center;
}
.pg23-menu-title {
  font-size: 1.6rem; color: var(--pg23-primary); font-weight: 700;
  margin: 1rem 0 1.6rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--pg23-border);
}
.pg23-menu-list a {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 0.8rem; color: var(--pg23-text-light);
  font-size: 1.4rem; border-bottom: 1px solid rgba(255,255,255,0.05);
  min-height: 4.4rem;
}
.pg23-menu-list a:hover { color: var(--pg23-primary); background: rgba(0,229,255,0.05); }
.pg23-menu-list i, .pg23-menu-list .material-icons { font-size: 2rem; width: 2.4rem; color: var(--pg23-secondary); }

/* Carousel */
.pg23-carousel {
  position: relative; width: 100%; overflow: hidden;
  border-radius: 0 0 var(--pg23-radius) var(--pg23-radius);
  margin-bottom: 1.6rem;
}
.pg23-slides { position: relative; width: 100%; aspect-ratio: 16/9; background: var(--pg23-bg2); }
.pg23-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.5s ease; cursor: pointer;
}
.pg23-slide-active { opacity: 1; z-index: 1; }
.pg23-slide img { width: 100%; height: 100%; object-fit: cover; }
.pg23-slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem; background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--pg23-text-light); font-size: 1.3rem; font-weight: 600; z-index: 2;
}
.pg23-dots {
  position: absolute; bottom: 0.8rem; right: 1.2rem; z-index: 3;
  display: flex; gap: 0.6rem;
}
.pg23-dot {
  width: 0.8rem; height: 0.8rem; border-radius: 50%;
  background: rgba(255,255,255,0.4); transition: background 0.3s, transform 0.3s;
}
.pg23-dot-active { background: var(--pg23-primary); transform: scale(1.3); }
.pg23-carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 3.6rem; height: 3.6rem; border-radius: 50%;
  background: rgba(0,0,0,0.45); color: var(--pg23-primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.pg23-carousel-prev { left: 0.8rem; }
.pg23-carousel-next { right: 0.8rem; }

/* Sections */
.pg23-section { padding: 1.6rem 0; }
.pg23-section-title {
  font-size: 1.8rem; font-weight: 700; color: var(--pg23-text-light);
  margin-bottom: 1.2rem; display: flex; align-items: center; gap: 0.8rem;
  line-height: 1.4;
}
.pg23-section-title i, .pg23-section-title .material-icons {
  color: var(--pg23-primary); font-size: 2.2rem;
}
.pg23-h1 {
  font-size: 2rem; font-weight: 800; color: var(--pg23-primary);
  line-height: 1.35; margin: 1.2rem 0; text-align: center;
}
.pg23-h2 {
  font-size: 1.7rem; font-weight: 700; color: var(--pg23-text-light);
  margin: 1.6rem 0 1rem; line-height: 1.4;
}
.pg23-h3 {
  font-size: 1.5rem; font-weight: 600; color: var(--pg23-secondary);
  margin: 1.2rem 0 0.8rem; line-height: 1.4;
}
.pg23-text { font-size: 1.35rem; line-height: 1.7; color: var(--pg23-text); margin-bottom: 1rem; }
.pg23-text strong { color: var(--pg23-primary); }

/* Game Grid */
.pg23-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem; margin-bottom: 1.6rem;
}
.pg23-game-card {
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer; transition: transform 0.2s;
  min-width: 0;
}
.pg23-game-card:active { transform: scale(0.94); }
.pg23-game-icon {
  width: 100%; aspect-ratio: 1; border-radius: 1rem;
  overflow: hidden; background: var(--pg23-bg2);
  border: 1.5px solid rgba(0, 229, 255, 0.15);
  box-shadow: 0 0.2rem 0.6rem rgba(0,0,0,0.3);
}
.pg23-game-icon img { width: 100%; height: 100%; object-fit: cover; }
.pg23-game-name {
  font-size: 1rem; color: var(--pg23-text); text-align: center;
  margin-top: 0.4rem; line-height: 1.3; width: 100%;
  overflow: hidden; text-overflow: ellipsis;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  word-break: break-word;
}
.pg23-cat-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0, 229, 255, 0.1); color: var(--pg23-primary);
  padding: 0.4rem 1rem; border-radius: 2rem; font-size: 1.2rem;
  font-weight: 600; margin-bottom: 1rem;
  border: 1px solid rgba(0, 229, 255, 0.25);
}

/* Cards & Content */
.pg23-card {
  background: var(--pg23-bg2); border-radius: var(--pg23-radius);
  padding: 1.4rem; margin-bottom: 1.2rem;
  border: 1px solid var(--pg23-border);
}
.pg23-card-accent { border-left: 3px solid var(--pg23-primary); }
.pg23-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pg23-feature-item {
  background: var(--pg23-bg3); border-radius: var(--pg23-radius);
  padding: 1.2rem; text-align: center;
  border: 1px solid rgba(0, 229, 255, 0.1);
}
.pg23-feature-item i, .pg23-feature-item .material-icons {
  font-size: 2.8rem; color: var(--pg23-primary); margin-bottom: 0.6rem;
}
.pg23-feature-item h3 { font-size: 1.3rem; color: var(--pg23-text-light); margin-bottom: 0.4rem; }
.pg23-feature-item p { font-size: 1.15rem; color: var(--pg23-muted); line-height: 1.5; }

/* FAQ */
.pg23-faq-item {
  background: var(--pg23-bg2); border-radius: var(--pg23-radius);
  margin-bottom: 0.8rem; border: 1px solid var(--pg23-border); overflow: hidden;
}
.pg23-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem; cursor: pointer; min-height: 4.4rem;
  font-size: 1.3rem; font-weight: 600; color: var(--pg23-text-light);
  gap: 1rem;
}
.pg23-faq-q i { color: var(--pg23-primary); transition: transform 0.3s; flex-shrink: 0; }
.pg23-faq-open .pg23-faq-q i { transform: rotate(180deg); }
.pg23-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  padding: 0 1.2rem; font-size: 1.25rem; line-height: 1.6; color: var(--pg23-text);
}
.pg23-faq-open .pg23-faq-a { max-height: 30rem; padding-bottom: 1.2rem; }

/* RTP Table */
.pg23-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.2rem; }
.pg23-rtp-table th, .pg23-rtp-table td {
  padding: 0.8rem; text-align: left; border-bottom: 1px solid var(--pg23-border);
}
.pg23-rtp-table th { color: var(--pg23-primary); font-weight: 700; }
.pg23-rtp-table td { color: var(--pg23-text); }
.pg23-rtp-high { color: #4ADE80; font-weight: 700; }

/* Winners / Testimonials */
.pg23-winner-row, .pg23-review-card {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem; background: var(--pg23-bg3); border-radius: var(--pg23-radius);
  margin-bottom: 0.8rem; border: 1px solid rgba(255,255,255,0.04);
}
.pg23-winner-amount { color: var(--pg23-gold); font-weight: 700; font-size: 1.4rem; margin-left: auto; }
.pg23-stars { color: var(--pg23-gold); font-size: 1.2rem; letter-spacing: 0.1rem; }
.pg23-review-card { flex-direction: column; align-items: flex-start; }
.pg23-review-meta { display: flex; align-items: center; gap: 0.8rem; width: 100%; }
.pg23-avatar {
  width: 3.6rem; height: 3.6rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--pg23-primary), var(--pg23-secondary));
  display: flex; align-items: center; justify-content: center;
  color: #0a0a0a; font-weight: 700; font-size: 1.4rem; flex-shrink: 0;
}

/* CTA / Promo */
.pg23-cta {
  background: linear-gradient(135deg, rgba(0,229,255,0.15), rgba(72,209,204,0.1));
  border: 1px solid rgba(0,229,255,0.3); border-radius: var(--pg23-radius);
  padding: 2rem 1.4rem; text-align: center; margin: 1.6rem 0;
}
.pg23-cta h2 { color: var(--pg23-primary); margin-bottom: 0.8rem; font-size: 1.8rem; }
.pg23-cta p { margin-bottom: 1.4rem; line-height: 1.6; }
.pg23-promo-links { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin: 1.2rem 0; }
.pg23-link-text {
  color: var(--pg23-primary); font-weight: 700; cursor: pointer;
  border-bottom: 1px dashed var(--pg23-primary); font-size: 1.3rem;
}
.pg23-link-text:hover { color: var(--pg23-secondary); }

/* Payment icons */
.pg23-pay-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; text-align: center;
}
.pg23-pay-item {
  background: var(--pg23-bg3); border-radius: 0.6rem; padding: 1rem 0.4rem;
  font-size: 1.1rem; color: var(--pg23-muted);
}
.pg23-pay-item i { font-size: 2.2rem; color: var(--pg23-secondary); display: block; margin-bottom: 0.4rem; }

/* Footer */
.pg23-footer {
  background: var(--pg23-bg3); border-top: 1px solid rgba(0,229,255,0.2);
  padding: 2.4rem 0 2rem; margin-top: 2rem;
}
.pg23-footer-brand { text-align: center; margin-bottom: 1.6rem; }
.pg23-footer-brand p { font-size: 1.2rem; line-height: 1.6; color: var(--pg23-muted); margin-top: 0.6rem; }
.pg23-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.2rem; justify-content: center;
  margin: 1.4rem 0; font-size: 1.2rem;
}
.pg23-footer-links a { color: var(--pg23-text); font-weight: 500; }
.pg23-footer-links a:hover { color: var(--pg23-primary); }
.pg23-footer-promo { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin: 1.2rem 0; }
.pg23-copyright {
  text-align: center; font-size: 1.1rem; color: var(--pg23-muted);
  margin-top: 1.6rem; padding-top: 1.2rem; border-top: 1px solid var(--pg23-border);
}

/* Bottom Navigation - unique cyan glow design */
.pg23-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  height: 6rem; background: linear-gradient(0deg, #121212 0%, #1a1a1a 100%);
  border-top: 1px solid rgba(0, 229, 255, 0.35);
  box-shadow: 0 -0.4rem 1.6rem rgba(0, 229, 255, 0.12);
  display: flex; justify-content: space-around; align-items: center;
  max-width: 430px; margin: 0 auto;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.pg23-bnav-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 6rem; min-height: 6rem; color: var(--pg23-muted);
  font-size: 1rem; gap: 0.2rem; transition: color 0.2s, transform 0.2s;
  cursor: pointer; background: none; border: none; text-decoration: none; font-weight: 500;
}
.pg23-bnav-item i, .pg23-bnav-item .material-icons, .pg23-bnav-item ion-icon {
  font-size: 2.2rem; line-height: 1; transition: transform 0.2s, color 0.2s;
}
.pg23-bnav-item .material-icons { font-size: 2.4rem; }
.pg23-bnav-item:active { transform: scale(0.9); }
.pg23-bnav-item:hover, .pg23-bnav-active {
  color: var(--pg23-primary);
}
.pg23-bnav-active i, .pg23-bnav-active .material-icons, .pg23-bnav-active ion-icon {
  color: var(--pg23-primary); text-shadow: 0 0 0.8rem rgba(0,229,255,0.6);
  transform: translateY(-0.2rem);
}
.pg23-bnav-promo {
  position: relative;
}
.pg23-bnav-promo::before {
  content: ''; position: absolute; top: 0.6rem; right: 1.2rem;
  width: 0.6rem; height: 0.6rem; border-radius: 50%;
  background: var(--pg23-danger); box-shadow: 0 0 0.4rem var(--pg23-danger);
}

/* Utility */
.pg23-mt-1 { margin-top: 0.8rem; }
.pg23-mt-2 { margin-top: 1.6rem; }
.pg23-mb-1 { margin-bottom: 0.8rem; }
.pg23-mb-2 { margin-bottom: 1.6rem; }
.pg23-text-center { text-align: center; }
.pg23-flex { display: flex; }
.pg23-gap { gap: 0.8rem; }
.pg23-badge {
  display: inline-block; background: rgba(0,229,255,0.15); color: var(--pg23-primary);
  padding: 0.2rem 0.8rem; border-radius: 1rem; font-size: 1.1rem; font-weight: 600;
}
.pg23-divider {
  height: 1px; background: linear-gradient(90deg, transparent, var(--pg23-primary), transparent);
  margin: 1.6rem 0; opacity: 0.3;
}
