/* ll777 styles - prefix ga16- | palette: #8B7355 #8B0000 #CD853F #0A0A0A #A0522D */
:root {
  --ga16-primary: #8B0000;
  --ga16-secondary: #CD853F;
  --ga16-accent: #A0522D;
  --ga16-sand: #8B7355;
  --ga16-bg: #0A0A0A;
  --ga16-bg-card: #161210;
  --ga16-bg-elevated: #1e1814;
  --ga16-text: #f5e6d3;
  --ga16-text-muted: #c4a882;
  --ga16-border: rgba(205, 133, 63, 0.28);
  --ga16-header-h: 5.6rem;
  --ga16-bottom-h: 6.2rem;
  --ga16-radius: 1rem;
  --ga16-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.45);
}

*, *::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;
  background: var(--ga16-bg);
  color: var(--ga16-text);
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ga16-secondary); text-decoration: none; }
a:hover { color: #e8b87a; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.ga16-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.ga16-wrapper { padding-top: var(--ga16-header-h); }
.ga16-section { padding: 2rem 0; }
.ga16-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ga16-secondary);
  margin-bottom: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.ga16-text-link {
  color: var(--ga16-secondary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.ga16-text-link:hover { color: #f0c98a; }

/* Header */
.ga16-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #140f0c 0%, #0A0A0A 100%);
  border-bottom: 1px solid var(--ga16-border);
  height: var(--ga16-header-h);
}
.ga16-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;
}
.ga16-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  flex-shrink: 1;
}
.ga16-logo img {
  width: 3rem; height: 3rem;
  border-radius: 0.6rem;
  object-fit: cover;
}
.ga16-logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--ga16-secondary);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.ga16-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.ga16-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: 0.8rem;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.ga16-btn:active { transform: scale(0.96); }
.ga16-btn-register {
  background: linear-gradient(135deg, #8B0000, #A0522D);
  color: #fff;
  box-shadow: 0 0.2rem 0.8rem rgba(139, 0, 0, 0.45);
}
.ga16-btn-login {
  background: transparent;
  color: var(--ga16-secondary);
  border: 1px solid var(--ga16-secondary);
}
.ga16-btn-primary {
  background: linear-gradient(135deg, #CD853F, #A0522D);
  color: #0A0A0A;
  font-weight: 800;
  width: 100%;
  box-shadow: var(--ga16-shadow);
}
.ga16-btn-outline {
  border: 1px solid var(--ga16-secondary);
  color: var(--ga16-secondary);
  background: rgba(205, 133, 63, 0.08);
}
.ga16-menu-toggle {
  width: 4.4rem; height: 4.4rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--ga16-text);
  font-size: 2.2rem;
  border-radius: 0.8rem;
}
.ga16-menu-toggle:hover { background: rgba(205, 133, 63, 0.12); }

/* Mobile menu */
.ga16-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9998;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.ga16-overlay-show { opacity: 1; visibility: visible; }
.ga16-mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(82vw, 32rem);
  height: 100%;
  background: linear-gradient(180deg, #1a1410 0%, #0A0A0A 100%);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--ga16-border);
  box-shadow: -0.4rem 0 2rem rgba(0, 0, 0, 0.5);
}
.ga16-menu-open { transform: translateX(0); }
.ga16-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--ga16-border);
}
.ga16-menu-header span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ga16-secondary);
}
.ga16-menu-close {
  width: 4.4rem; height: 4.4rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  color: var(--ga16-text);
}
.ga16-menu-nav {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 0;
}
.ga16-menu-nav a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 1.8rem;
  color: var(--ga16-text);
  font-size: 1.4rem;
  font-weight: 600;
  min-height: 4.8rem;
  border-bottom: 1px solid rgba(139, 115, 85, 0.15);
  transition: background 0.15s ease, color 0.15s ease;
}
.ga16-menu-nav a:hover,
.ga16-menu-nav a:active {
  background: rgba(205, 133, 63, 0.1);
  color: var(--ga16-secondary);
}
.ga16-menu-nav a i,
.ga16-menu-nav a .material-icons,
.ga16-menu-nav a ion-icon { font-size: 2rem; width: 2.4rem; text-align: center; color: var(--ga16-sand); }

/* Carousel */
.ga16-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 1.2rem 1.2rem;
  margin-bottom: 0.4rem;
}
.ga16-carousel-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}
.ga16-carousel-slide {
  min-width: 100%;
  cursor: pointer;
}
.ga16-carousel-slide img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}
.ga16-carousel-dots {
  position: absolute;
  bottom: 1rem; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}
.ga16-carousel-dot {
  width: 0.8rem; height: 0.8rem;
  border-radius: 50%;
  background: rgba(245, 230, 211, 0.4);
  transition: background 0.2s, transform 0.2s;
}
.ga16-dot-active {
  background: var(--ga16-secondary);
  transform: scale(1.25);
}

/* Hero / H1 */
.ga16-hero {
  padding: 1.8rem 1.2rem 1rem;
  text-align: center;
}
.ga16-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--ga16-text);
  margin-bottom: 1rem;
}
.ga16-hero h1 span { color: var(--ga16-secondary); }
.ga16-hero-desc {
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--ga16-text-muted);
  margin-bottom: 1.4rem;
}
.ga16-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 1.2rem 0;
}

/* Game grid */
.ga16-games-block { padding: 1.6rem 1.2rem; }
.ga16-category-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ga16-secondary);
  margin: 1.6rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--ga16-border);
}
.ga16-category-label i,
.ga16-category-label .material-icons,
.ga16-category-label ion-icon { font-size: 2rem; color: var(--ga16-primary); }
.ga16-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.ga16-game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.15s ease;
  min-height: 4.4rem;
}
.ga16-game-card:active { transform: scale(0.94); }
.ga16-game-card img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 0.8rem;
  object-fit: cover;
  border: 1px solid var(--ga16-border);
  background: var(--ga16-bg-card);
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.35);
}
.ga16-game-card span {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  font-size: 1rem;
  line-height: 1.25;
  text-align: center;
  color: var(--ga16-text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}

/* Content cards */
.ga16-card {
  background: var(--ga16-bg-card);
  border: 1px solid var(--ga16-border);
  border-radius: var(--ga16-radius);
  padding: 1.6rem;
  margin-bottom: 1.4rem;
  box-shadow: var(--ga16-shadow);
}
.ga16-card h2, .ga16-card h3 {
  color: var(--ga16-secondary);
  margin-bottom: 1rem;
  line-height: 1.35;
}
.ga16-card h2 { font-size: 1.7rem; }
.ga16-card h3 { font-size: 1.5rem; }
.ga16-card p {
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--ga16-text-muted);
  margin-bottom: 1rem;
}
.ga16-card p:last-child { margin-bottom: 0; }
.ga16-card ol, .ga16-card ul {
  margin: 0.8rem 0 1rem 1.6rem;
  list-style: decimal;
}
.ga16-card ul { list-style: disc; }
.ga16-card li {
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--ga16-text-muted);
  margin-bottom: 0.6rem;
}

/* Feature grid */
.ga16-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ga16-feature-item {
  background: var(--ga16-bg-elevated);
  border: 1px solid var(--ga16-border);
  border-radius: 0.8rem;
  padding: 1.2rem;
  text-align: center;
}
.ga16-feature-item .ga16-feat-icon {
  font-size: 2.4rem;
  color: var(--ga16-secondary);
  margin-bottom: 0.6rem;
}
.ga16-feature-item h3 {
  font-size: 1.3rem;
  color: var(--ga16-text);
  margin-bottom: 0.4rem;
}
.ga16-feature-item p {
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--ga16-text-muted);
  margin: 0;
}

/* RTP table */
.ga16-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
  margin: 1rem 0;
}
.ga16-rtp-table th,
.ga16-rtp-table td {
  padding: 0.8rem 0.6rem;
  text-align: left;
  border-bottom: 1px solid var(--ga16-border);
}
.ga16-rtp-table th {
  color: var(--ga16-secondary);
  font-weight: 700;
  background: rgba(139, 0, 0, 0.2);
}
.ga16-rtp-table td { color: var(--ga16-text-muted); }
.ga16-rtp-high { color: #7dcea0 !important; font-weight: 700; }

/* FAQ */
.ga16-faq-item {
  border: 1px solid var(--ga16-border);
  border-radius: 0.8rem;
  margin-bottom: 0.8rem;
  overflow: hidden;
  background: var(--ga16-bg-elevated);
}
.ga16-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  min-height: 4.8rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ga16-text);
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.ga16-faq-q i { color: var(--ga16-secondary); transition: transform 0.2s; }
.ga16-faq-open .ga16-faq-q i { transform: rotate(180deg); }
.ga16-faq-a {
  display: none;
  padding: 0 1.4rem 1.2rem;
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ga16-text-muted);
}
.ga16-faq-open .ga16-faq-a { display: block; }

/* Testimonials */
.ga16-testimonial {
  background: var(--ga16-bg-elevated);
  border-left: 3px solid var(--ga16-primary);
  border-radius: 0 0.8rem 0.8rem 0;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;
}
.ga16-testimonial p {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ga16-text-muted);
  font-style: italic;
  margin-bottom: 0.6rem;
}
.ga16-testimonial .ga16-author {
  font-size: 1.1rem;
  color: var(--ga16-secondary);
  font-weight: 700;
  font-style: normal;
}

/* Winners */
.ga16-winners {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.ga16-winner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ga16-bg-elevated);
  border-radius: 0.8rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--ga16-border);
  font-size: 1.2rem;
}
.ga16-winner-row strong { color: var(--ga16-secondary); }
.ga16-winner-amt { color: #7dcea0; font-weight: 800; }

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

/* Partners */
.ga16-partners {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
  align-items: center;
}
.ga16-partners img {
  width: 100%;
  height: 3.6rem;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.6rem;
  padding: 0.4rem;
}

/* Footer */
.ga16-footer {
  background: #0d0a08;
  border-top: 1px solid var(--ga16-border);
  padding: 2.4rem 1.2rem 9rem;
  margin-top: 1rem;
}
.ga16-footer-brand {
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--ga16-text-muted);
  margin-bottom: 1.4rem;
}
.ga16-footer-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}
.ga16-footer-promo .ga16-btn {
  min-height: 4rem;
  padding: 0.6rem 1rem;
  font-size: 1.1rem;
  background: rgba(139, 0, 0, 0.35);
  border: 1px solid var(--ga16-primary);
  color: var(--ga16-text);
  border-radius: 2rem;
}
.ga16-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1.2rem;
  margin-bottom: 1.6rem;
}
.ga16-footer-links a {
  font-size: 1.2rem;
  color: var(--ga16-text-muted);
  min-height: 3.2rem;
  display: flex;
  align-items: center;
}
.ga16-footer-links a:hover { color: var(--ga16-secondary); }
.ga16-footer-copy {
  text-align: center;
  font-size: 1.1rem;
  color: var(--ga16-sand);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(139, 115, 85, 0.2);
}

/* Bottom nav - unique copper-red bar */
.ga16-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--ga16-bottom-h);
  background: linear-gradient(0deg, #1a0c0c 0%, #120a08 100%);
  border-top: 2px solid var(--ga16-primary);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  max-width: 430px;
  margin: 0 auto;
  box-shadow: 0 -0.4rem 1.6rem rgba(139, 0, 0, 0.35);
}
.ga16-bnav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 60px;
  min-height: 60px;
  color: var(--ga16-text-muted);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.15s ease, transform 0.15s ease;
  padding: 0.4rem 0.2rem;
}
.ga16-bnav-btn i,
.ga16-bnav-btn .material-icons,
.ga16-bnav-btn ion-icon,
.ga16-bnav-btn .ti {
  font-size: 2.2rem;
  line-height: 1;
  transition: transform 0.15s ease;
}
.ga16-bnav-btn .material-icons { font-size: 2.4rem; }
.ga16-bnav-btn:active { transform: scale(0.92); }
.ga16-bnav-btn:active i,
.ga16-bnav-btn:active .material-icons,
.ga16-bnav-btn:active ion-icon { transform: scale(1.1); }
.ga16-bnav-active {
  color: var(--ga16-secondary);
}
.ga16-bnav-active i,
.ga16-bnav-active .material-icons,
.ga16-bnav-active ion-icon { color: var(--ga16-secondary); }

/* Explore / SEO block */
.ga16-explore {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}
.ga16-explore a {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ga16-secondary);
  padding: 0.6rem 1rem;
  border: 1px solid var(--ga16-border);
  border-radius: 2rem;
  background: rgba(205, 133, 63, 0.08);
  min-height: 4rem;
  display: inline-flex;
  align-items: center;
}

/* Mobile content padding */
@media (max-width: 768px) {
  main, .ga16-wrapper { padding-bottom: 80px; }
}

/* Desktop */
@media (min-width: 769px) {
  .ga16-bottom-nav { display: none; }
  body { max-width: 430px; box-shadow: 0 0 4rem rgba(0, 0, 0, 0.6); }
  .ga16-header { left: 50%; right: auto; width: 430px; transform: translateX(-50%); }
  main, .ga16-wrapper { padding-bottom: 2rem; }
}

/* Utility */
.ga16-mb-1 { margin-bottom: 1rem; }
.ga16-mb-2 { margin-bottom: 1.6rem; }
.ga16-mt-1 { margin-top: 1rem; }
.ga16-center { text-align: center; }
.ga16-highlight { color: var(--ga16-secondary); font-weight: 700; }
.ga16-badge {
  display: inline-block;
  background: var(--ga16-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 0.4rem;
  margin-left: 0.4rem;
  vertical-align: middle;
}
