/* ==========================================================================
   s7777.homes - Core stylesheet (class prefix: g756-)
   Palette: #004D40 deep teal | #262626 dark | #FFF176 amber | #4DB6AC teal
   Mobile-first, max-width 430px, root font 62.5% (1rem = 10px).
   ========================================================================== */

:root {
  --g756-primary: #004D40;
  --g756-primary-dark: #00362e;
  --g756-bg: #262626;
  --g756-bg-alt: #1f1f1f;
  --g756-accent: #FFF176;
  --g756-accent-2: #ffeb3b;
  --g756-teal: #4DB6AC;
  --g756-text: #f4f4f4;
  --g756-text-muted: #b5b5b5;
  --g756-card: #303030;
  --g756-border: #3a3a3a;
  --g756-header-h: 5.6rem;
  --g756-nav-h: 6.2rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--g756-bg);
  color: var(--g756-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--g756-accent); text-decoration: none; }
button { font-family: inherit; }

/* Layout helpers */
.g756-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.g756-section { padding: 2.2rem 1.2rem; }
.g756-section-alt { background: var(--g756-bg-alt); }
.g756-text-center { text-align: center; }
.g756-mt-1 { margin-top: 1rem; }
.g756-mt-2 { margin-top: 2rem; }
.g756-hidden { display: none !important; }

/* Header */
.g756-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(90deg, var(--g756-primary), var(--g756-primary-dark));
  border-bottom: 0.18rem solid var(--g756-accent);
  max-width: 430px; margin: 0 auto;
  box-shadow: 0 0.2rem 0.6rem rgba(0,0,0,0.35);
}
.g756-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--g756-header-h); padding: 0 1rem; gap: 0.5rem;
}
.g756-logo { display: flex; align-items: center; gap: 0.6rem; color: #fff; font-weight: 800; font-size: 1.7rem; cursor: pointer; }
.g756-logo img { width: 3rem; height: 3rem; border-radius: 0.6rem; }
.g756-logo b { color: var(--g756-accent); }
.g756-header-actions { display: flex; align-items: center; gap: 0.5rem; }

/* Buttons */
.g756-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.75rem 1.2rem; border-radius: 2.2rem; font-weight: 700; font-size: 1.3rem;
  border: none; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  min-height: 3.6rem; line-height: 1; text-decoration: none;
}
.g756-btn:active { transform: scale(0.95); }
.g756-btn-login { background: rgba(255,255,255,0.12); color: #fff; border: 0.12rem solid rgba(255,255,255,0.4); }
.g756-btn-register {
  background: linear-gradient(135deg, var(--g756-accent), var(--g756-accent-2));
  color: #1a1a1a; box-shadow: 0 0.3rem 0.8rem rgba(255,241,118,0.32);
}
.g756-btn-block { display: flex; width: 100%; padding: 1.2rem; font-size: 1.5rem; }
.g756-btn-teal { background: var(--g756-teal); color: #06231f; }
.g756-btn-outline { background: transparent; color: var(--g756-accent); border: 0.15rem solid var(--g756-accent); }

.g756-menu-btn {
  background: rgba(255,255,255,0.1); border: 0.12rem solid rgba(255,255,255,0.3);
  color: #fff; width: 3.6rem; height: 3.6rem; border-radius: 0.8rem;
  display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.7rem;
}

/* Mobile slide-in menu */
.g756-mobile-menu {
  position: fixed; top: 0; right: -110%; width: 82%; max-width: 320px; height: 100vh;
  background: var(--g756-bg-alt); z-index: 9999; transition: right 0.3s ease;
  padding: 1.8rem 1.5rem; overflow-y: auto; border-left: 0.2rem solid var(--g756-teal);
}
.g756-mobile-menu.g756-menu-open { right: 0; }
.g756-menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.62); z-index: 9998;
  opacity: 0; visibility: hidden; transition: opacity 0.3s ease;
}
.g756-menu-overlay.g756-menu-open { opacity: 1; visibility: visible; }
.g756-menu-close {
  background: none; border: none; color: #fff; font-size: 2.4rem;
  position: absolute; top: 0.8rem; right: 1.2rem; cursor: pointer;
}
.g756-menu-title { color: var(--g756-accent); font-size: 1.7rem; margin-bottom: 1.2rem; font-weight: 800; }
.g756-menu-list { list-style: none; }
.g756-menu-list li { border-bottom: 0.1rem solid var(--g756-border); }
.g756-menu-list a, .g756-menu-list button {
  display: flex; align-items: center; gap: 1rem; padding: 1.3rem 0.5rem; width: 100%;
  color: var(--g756-text); font-size: 1.45rem; font-weight: 600; background: none; border: none; cursor: pointer; text-align: left;
}
.g756-menu-list a i, .g756-menu-list button i { color: var(--g756-teal); width: 2.4rem; text-align: center; font-size: 1.6rem; }

/* Main content spacer for fixed header + bottom nav */
.g756-main { padding-top: var(--g756-header-h); padding-bottom: 8rem; }

/* Hero carousel */
.g756-carousel { position: relative; width: 100%; overflow: hidden; border-radius: 0 0 1.4rem 1.4rem; }
.g756-carousel-track { display: flex; transition: transform 0.55s ease; }
.g756-slide { min-width: 100%; position: relative; cursor: pointer; }
.g756-slide img { width: 100%; height: 18rem; object-fit: cover; }
.g756-slide-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.4rem 1.3rem 2.6rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.88));
}
.g756-slide-tag {
  display: inline-block; background: var(--g756-accent); color: #1a1a1a;
  padding: 0.2rem 0.8rem; border-radius: 0.8rem; font-size: 1rem; font-weight: 800; margin-bottom: 0.4rem;
}
.g756-slide-title { color: #fff; font-size: 1.9rem; font-weight: 800; margin-bottom: 0.3rem; }
.g756-slide-title b { color: var(--g756-accent); }
.g756-slide-desc { color: #eaeaea; font-size: 1.25rem; }
.g756-carousel-arrow {
  position: absolute; top: 45%; transform: translateY(-50%);
  background: rgba(0,0,0,0.5); color: #fff; border: none; width: 3rem; height: 3rem;
  border-radius: 50%; font-size: 1.6rem; cursor: pointer; z-index: 5;
  display: flex; align-items: center; justify-content: center;
}
.g756-arrow-prev { left: 0.8rem; }
.g756-arrow-next { right: 0.8rem; }
.g756-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem; z-index: 5;
}
.g756-dot { width: 0.8rem; height: 0.8rem; border-radius: 50%; background: rgba(255,255,255,0.45); border: none; cursor: pointer; padding: 0; transition: all 0.2s ease; }
.g756-dot.g756-dot-active { background: var(--g756-accent); width: 2.2rem; border-radius: 0.5rem; }

/* Section headers */
.g756-section-title {
  font-size: 1.8rem; font-weight: 800; margin-bottom: 1.2rem; color: #fff;
  display: flex; align-items: center; gap: 0.6rem; padding-bottom: 0.6rem;
  border-bottom: 0.15rem solid var(--g756-primary);
}
.g756-section-title i, .g756-section-title .material-icons { color: var(--g756-accent); font-size: 2rem; }
.g756-section-title b { color: var(--g756-accent); }
.g756-section-text { color: var(--g756-text-muted); font-size: 1.3rem; line-height: 2rem; margin-bottom: 1rem; }
.g756-section-text b { color: var(--g756-accent); }

/* Category badge */
.g756-cat-badge {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.35rem 1rem;
  background: rgba(77,182,172,0.2); color: var(--g756-teal); border-radius: 1rem;
  font-size: 1.15rem; font-weight: 700; margin-bottom: 1rem;
}

/* Game grid */
.g756-game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.g756-game-card {
  background: var(--g756-card); border-radius: 0.9rem; overflow: hidden; cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease; border: 0.1rem solid var(--g756-border);
}
.g756-game-card:active { transform: scale(0.95); }
.g756-game-card img { width: 100%; height: 8.4rem; object-fit: cover; background: #000; }
.g756-game-name {
  padding: 0.55rem 0.4rem; font-size: 1.1rem; text-align: center; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600;
}

/* Generic cards */
.g756-card { background: var(--g756-card); border-radius: 1rem; padding: 1.4rem; margin-bottom: 1rem; border: 0.1rem solid var(--g756-border); }
.g756-card-title { font-size: 1.5rem; font-weight: 700; color: var(--g756-accent); margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.5rem; }

/* Feature grid */
.g756-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.g756-feature-item { background: var(--g756-card); padding: 1.3rem 1rem; border-radius: 0.9rem; text-align: center; border: 0.1rem solid var(--g756-border); }
.g756-feature-icon { font-size: 2.4rem; color: var(--g756-accent); margin-bottom: 0.5rem; }
.g756-feature-title { font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 0.3rem; }
.g756-feature-desc { font-size: 1.15rem; color: var(--g756-text-muted); line-height: 1.7rem; }

/* How to play steps */
.g756-step { display: flex; gap: 1rem; margin-bottom: 1.3rem; align-items: flex-start; }
.g756-step-num {
  min-width: 2.8rem; height: 2.8rem; border-radius: 50%; background: var(--g756-accent); color: #1a1a1a;
  font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.g756-step-body h4 { font-size: 1.35rem; color: #fff; margin-bottom: 0.2rem; }
.g756-step-body p { font-size: 1.2rem; color: var(--g756-text-muted); line-height: 1.85rem; }

/* FAQ accordion */
.g756-faq-item { background: var(--g756-card); border-radius: 0.8rem; margin-bottom: 0.8rem; border: 0.1rem solid var(--g756-border); overflow: hidden; }
.g756-faq-q { padding: 1.2rem; font-weight: 700; color: var(--g756-accent); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 1.32rem; list-style: none; }
.g756-faq-q .g756-faq-icon { transition: transform 0.25s ease; color: var(--g756-teal); }
.g756-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 1.2rem; color: var(--g756-text-muted); font-size: 1.22rem; line-height: 1.9rem; }
.g756-faq-item.g756-faq-open .g756-faq-a { max-height: 40rem; padding: 0 1.2rem 1.2rem; }
.g756-faq-item.g756-faq-open .g756-faq-icon { transform: rotate(45deg); }

/* Testimonials */
.g756-testimonial { background: var(--g756-card); padding: 1.2rem; border-radius: 0.9rem; margin-bottom: 0.8rem; border-left: 0.3rem solid var(--g756-accent); }
.g756-testimonial-stars { color: var(--g756-accent); margin-bottom: 0.4rem; font-size: 1.2rem; }
.g756-testimonial-text { font-size: 1.25rem; color: var(--g756-text); line-height: 1.85rem; margin-bottom: 0.5rem; }
.g756-testimonial-author { font-size: 1.15rem; color: var(--g756-teal); font-weight: 700; }

/* Payment grid */
.g756-pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.g756-pay-item { background: #fff; border-radius: 0.6rem; padding: 0.9rem 0.4rem; text-align: center; color: #1a1a1a; font-weight: 700; font-size: 1rem; }

/* Winners list */
.g756-winner { display: flex; justify-content: space-between; align-items: center; background: var(--g756-card); padding: 0.9rem 1.1rem; border-radius: 0.7rem; margin-bottom: 0.6rem; border: 0.1rem solid var(--g756-border); }
.g756-winner-name { font-size: 1.25rem; color: #fff; font-weight: 600; }
.g756-winner-game { font-size: 1.1rem; color: var(--g756-text-muted); }
.g756-winner-amount { color: var(--g756-accent); font-weight: 800; font-size: 1.4rem; }

/* RTP table */
.g756-rtp-table { width: 100%; border-collapse: collapse; background: var(--g756-card); border-radius: 0.8rem; overflow: hidden; }
.g756-rtp-table th, .g756-rtp-table td { padding: 0.85rem 0.9rem; text-align: left; border-bottom: 0.1rem solid var(--g756-border); }
.g756-rtp-table th { background: var(--g756-primary); color: #fff; font-size: 1.2rem; }
.g756-rtp-table td { color: var(--g756-text); font-size: 1.2rem; }
.g756-rtp-high { color: var(--g756-accent); font-weight: 700; }

/* Promo CTA banner */
.g756-cta-banner { background: linear-gradient(135deg, var(--g756-primary), var(--g756-teal)); border-radius: 1.1rem; padding: 1.6rem; text-align: center; margin: 1.2rem 0; }
.g756-cta-banner h3 { color: var(--g756-accent); font-size: 1.6rem; margin-bottom: 0.5rem; }
.g756-cta-banner p { color: #fff; font-size: 1.25rem; margin-bottom: 1rem; line-height: 1.8rem; }

/* Inline promo link */
.g756-promo-link { color: var(--g756-accent); font-weight: 800; text-decoration: underline; cursor: pointer; }
.g756-promo-link:hover { color: #fff; }

/* App download box */
.g756-app-box { display: flex; align-items: center; gap: 1rem; background: var(--g756-card); border: 0.1rem solid var(--g756-border); border-radius: 1rem; padding: 1.2rem; margin-bottom: 0.8rem; }
.g756-app-icon { width: 4.2rem; height: 4.2rem; border-radius: 0.8rem; background: var(--g756-primary); display: flex; align-items: center; justify-content: center; color: var(--g756-accent); font-size: 2.2rem; flex-shrink: 0; }
.g756-app-text h4 { color: #fff; font-size: 1.35rem; margin-bottom: 0.2rem; }
.g756-app-text p { color: var(--g756-text-muted); font-size: 1.15rem; line-height: 1.6rem; }

/* Footer */
.g756-footer { background: #181818; padding: 2rem 1.2rem; border-top: 0.2rem solid var(--g756-primary); }
.g756-footer-brand { color: var(--g756-accent); font-size: 1.8rem; font-weight: 800; margin-bottom: 0.6rem; }
.g756-footer-text { color: var(--g756-text-muted); font-size: 1.2rem; line-height: 1.85rem; margin-bottom: 1.2rem; }
.g756-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.4rem; }
.g756-footer-link { background: var(--g756-card); color: #fff; padding: 0.6rem 1rem; border-radius: 1.5rem; font-size: 1.15rem; cursor: pointer; border: 0.1rem solid var(--g756-border); display: inline-flex; align-items: center; gap: 0.4rem; }
.g756-footer-copy { color: var(--g756-text-muted); font-size: 1.1rem; border-top: 0.1rem solid var(--g756-border); padding-top: 1.2rem; text-align: center; line-height: 1.7rem; }

/* Mobile bottom nav (fixed) */
.g756-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, var(--g756-primary), var(--g756-primary-dark));
  border-top: 0.18rem solid var(--g756-accent);
  display: flex; justify-content: space-around; align-items: center;
  height: var(--g756-nav-h); max-width: 430px; margin: 0 auto;
  box-shadow: 0 -0.3rem 1rem rgba(0,0,0,0.45);
}
.g756-nav-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: none; border: none; color: #cfcfcf; min-width: 6rem; min-height: 5.6rem;
  cursor: pointer; font-size: 1.05rem; gap: 0.2rem; flex: 1; position: relative;
  transition: color 0.15s ease, transform 0.15s ease; font-weight: 600;
}
.g756-nav-btn:active { transform: scale(0.9); }
.g756-nav-btn .g756-nav-icon { font-size: 2.1rem; line-height: 1; }
.g756-nav-btn .g756-nav-icon.material-icons { font-size: 2.3rem; }
.g756-nav-btn.g756-nav-active { color: var(--g756-accent); }
.g756-nav-btn.g756-nav-active::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 3rem; height: 0.28rem; background: var(--g756-accent); border-radius: 0 0 0.4rem 0.4rem;
}
.g756-nav-btn.g756-nav-promo { color: var(--g756-accent); }
.g756-nav-btn.g756-nav-promo .g756-nav-icon { text-shadow: 0 0 0.6rem rgba(255,241,118,0.6); }

.g756-mobile-menu > a {
  display: flex; align-items: center; gap: 1rem; padding: 1.2rem 0.5rem;
  color: var(--g756-text); font-size: 1.4rem; font-weight: 700;
  border-bottom: 0.1rem solid var(--g756-border);
}
.g756-page-hero { padding: 8rem 1.2rem 2.2rem; background: linear-gradient(145deg, var(--g756-primary), var(--g756-bg)); }
.g756-page-hero h1 { color: #fff; font-size: 2.2rem; line-height: 2.8rem; margin-bottom: 1rem; }
.g756-page-hero p { color: var(--g756-text-muted); font-size: 1.3rem; line-height: 2rem; }
.g756-mini-list { display: grid; gap: 0.8rem; margin: 1rem 0; }
.g756-mini-item { background: var(--g756-card); border: 0.1rem solid var(--g756-border); border-radius: 0.9rem; padding: 1rem; }
.g756-mini-item strong { color: var(--g756-accent); display: block; margin-bottom: 0.3rem; }
.g756-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
.g756-stat { background: var(--g756-card); border-radius: 0.9rem; padding: 1rem 0.5rem; text-align: center; border: 0.1rem solid var(--g756-border); }
.g756-stat b { color: var(--g756-accent); font-size: 1.7rem; display: block; }
.g756-partners { display: flex; gap: 0.6rem; flex-wrap: wrap; margin: 1rem 0; }
.g756-partner { border: 0.1rem solid var(--g756-border); border-radius: 0.8rem; padding: 0.7rem 0.9rem; color: var(--g756-teal); background: #202020; font-size: 1.1rem; font-weight: 700; }

/* Desktop: hide bottom nav, keep mobile-first frame */
@media (min-width: 769px) {
  .g756-bottom-nav { display: none; }
  .g756-main { padding-bottom: 2rem; }
}
