/* ==========================================================
 * pt-gaming-apk.click - layout-1e02.css
 * All custom classes use the "g026-" prefix.
 * Palette: #20B2AA | #C71585 | #98FB98 | #2E4057 | #E5E5E5 | #7CFC00
 * Mobile-first. Root font-size 62.5% (1rem = 10px).
 * ========================================================== */

:root {
  --g026-primary: #20B2AA;     /* LightSeaGreen - brand */
  --g026-accent: #C71585;      /* MediumVioletRed - CTA */
  --g026-mint: #98FB98;        /* PaleGreen - highlights */
  --g026-bg: #2E4057;          /* dark slate - background */
  --g026-bg2: #243a4f;         /* darker variant */
  --g026-text: #E5E5E5;        /* light grey text */
  --g026-lime: #7CFC00;        /* LawnGreen - wins */
  --g026-gold: #FFD24A;
  --g026-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(160deg, var(--g026-bg2) 0%, var(--g026-bg) 100%);
  color: var(--g026-text);
  font-size: 1.5rem;
  line-height: 1.5;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--g026-mint); text-decoration: none; }
h1, h2, h3 { color: #fff; font-weight: 700; line-height: 1.25; }
h1 { font-size: 2.2rem; margin: 1rem 0; }
h2 { font-size: 1.9rem; margin: 1.6rem 0 0.8rem; }
h3 { font-size: 1.6rem; margin: 1.2rem 0 0.6rem; color: var(--g026-mint); }
p { margin: 0.6rem 0; }

/* ---------- Header ---------- */
.g026-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  background: linear-gradient(90deg, var(--g026-bg) 0%, var(--g026-bg2) 100%);
  border-bottom: 2px solid var(--g026-primary);
  box-shadow: var(--g026-shadow);
}
.g026-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-weight: 800;
  font-size: 1.5rem;
  flex: 1;
  min-width: 0;
}
.g026-brand img { width: 28px; height: 28px; border-radius: 6px; }
.g026-brand span {
  color: var(--g026-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.g026-head-actions { display: flex; align-items: center; gap: 0.4rem; }
.g026-hamburger {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  min-width: 44px;
  min-height: 44px;
}

/* ---------- Buttons ---------- */
.g026-btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  font-size: 1.3rem;
  cursor: pointer;
  color: #fff;
  text-align: center;
  min-height: 36px;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.g026-btn:active { transform: scale(0.96); }
.g026-btn-register { background: linear-gradient(90deg, var(--g026-accent), #ff5fa2); }
.g026-btn-login { background: linear-gradient(90deg, var(--g026-primary), #5ed7cf); }
.g026-btn-cta {
  background: linear-gradient(90deg, var(--g026-accent), var(--g026-primary));
  padding: 1rem 2rem;
  font-size: 1.5rem;
  box-shadow: 0 4px 14px rgba(199, 21, 133, 0.45);
}
.g026-btn-block { display: block; width: 100%; }

/* ---------- Mobile menu drawer ---------- */
.g026-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 9998;
}
.g026-overlay-show { opacity: 1; visibility: visible; }
.g026-mobile-menu {
  position: fixed;
  top: 0;
  right: -80%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: var(--g026-bg2);
  padding: 2rem 1.4rem;
  transition: right 0.28s ease;
  z-index: 9999;
  overflow-y: auto;
}
.g026-menu-open { right: 0; }
.g026-mobile-menu h3 {
  color: var(--g026-primary);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.5rem;
  margin-bottom: 0.8rem;
}
.g026-mobile-menu a {
  display: block;
  padding: 0.8rem 0.5rem;
  color: var(--g026-text);
  border-bottom: 1px dashed rgba(255,255,255,0.08);
  font-size: 1.45rem;
}
.g026-mobile-menu a:hover { color: var(--g026-lime); background: rgba(255,255,255,0.04); }
.g026-menu-close {
  background: var(--g026-accent);
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

/* ---------- Layout helpers ---------- */
.g026-container { padding: 1rem; }
.g026-section {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  padding: 1.2rem;
  margin: 1.2rem 0;
  border: 1px solid rgba(32, 178, 170, 0.18);
}
.g026-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.g026-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Hero carousel ---------- */
.g026-carousel {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin: 1rem 0;
  box-shadow: var(--g026-shadow);
}
.g026-slide {
  display: none;
  position: relative;
  cursor: pointer;
}
.g026-slide img { width: 100%; height: 180px; object-fit: cover; }
.g026-slide-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
  color: #fff;
  padding: 1.4rem 1rem 0.8rem;
  font-weight: 700;
}
.g026-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}
.g026-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
}
.g026-dot-active { background: var(--g026-lime); }

/* ---------- Game grid ---------- */
.g026-cat-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.6rem 0 0.8rem;
  color: var(--g026-mint);
  font-size: 1.7rem;
  font-weight: 800;
}
.g026-cat-title i { color: var(--g026-gold); }
.g026-game-card {
  background: linear-gradient(180deg, #ffffff 0%, #f3f7f6 100%);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  text-align: center;
  padding: 0.5rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  transition: transform 0.15s ease;
  min-height: 44px;
}
.g026-game-card:active { transform: scale(0.95); }
.g026-game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.4rem;
}
.g026-game-name {
  color: #2E4057;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  word-break: break-word;
  min-height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Info / feature tiles ---------- */
.g026-tile {
  background: rgba(32,178,170,0.1);
  border-left: 3px solid var(--g026-primary);
  padding: 1rem;
  border-radius: 6px;
  margin: 0.8rem 0;
}
.g026-tile h3 { margin-top: 0; }
.g026-list { list-style: none; padding-left: 0; }
.g026-list li {
  padding: 0.5rem 0 0.5rem 1.8rem;
  position: relative;
}
.g026-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--g026-lime);
  position: absolute;
  left: 0;
}

/* ---------- Payment / winners ---------- */
.g026-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.6rem 0;
}
.g026-chip {
  background: rgba(124,252,0,0.12);
  color: var(--g026-lime);
  border: 1px solid rgba(124,252,0,0.35);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
}
.g026-winner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0.8rem;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
.g026-winner b { color: var(--g026-lime); }

/* ---------- Testimonials ---------- */
.g026-quote {
  background: rgba(199,21,133,0.08);
  border-left: 3px solid var(--g026-accent);
  padding: 1rem;
  border-radius: 6px;
  margin: 0.8rem 0;
  font-style: italic;
}
.g026-quote small { color: var(--g026-mint); display: block; margin-top: 0.5rem; }

/* ---------- Footer ---------- */
.g026-footer {
  background: var(--g026-bg2);
  padding: 1.4rem 1rem 9rem;
  border-top: 2px solid var(--g026-primary);
  margin-top: 1.5rem;
  font-size: 1.3rem;
}
.g026-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0.8rem 0;
}
.g026-footer-links a {
  color: var(--g026-text);
  font-size: 1.25rem;
}
.g026-footer-links a:hover { color: var(--g026-lime); text-decoration: underline; }
.g026-footer-copy {
  color: #9fb1c2;
  font-size: 1.15rem;
  margin-top: 1rem;
  text-align: center;
}

/* ---------- Mobile bottom nav ---------- */
.g026-bottomnav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: 62px;
  background: linear-gradient(180deg, var(--g026-bg) 0%, var(--g026-bg2) 100%);
  border-top: 2px solid var(--g026-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -3px 12px rgba(0,0,0,0.4);
}
.g026-navbtn {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--g026-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 60px;
  min-height: 60px;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  transition: color 0.18s ease, transform 0.18s ease;
}
.g026-navbtn .g026-navicon {
  font-size: 22px;
  line-height: 1;
}
.g026-navbtn .material-icons,
.g026-navbtn .ion { font-size: 22px; }
.g026-navbtn:active { transform: scale(0.9); color: var(--g026-lime); }
.g026-navbtn-active { color: var(--g026-lime); }
.g026-navbtn-promo { color: var(--g026-gold); }
.g026-nav-badge {
  position: absolute;
  top: 6px;
  right: 18%;
  background: var(--g026-accent);
  color: #fff;
  font-size: 0.95rem;
  padding: 0 5px;
  border-radius: 8px;
  font-weight: 700;
}

/* ---------- Back to top ---------- */
.g026-backtop {
  position: fixed;
  right: 14px;
  bottom: 78px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--g026-accent);
  color: #fff;
  border: 0;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 999;
}
.g026-backtop-show { opacity: 1; visibility: visible; }

/* ---------- Reveal animation ---------- */
.g026-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.g026-in { opacity: 1; transform: translateY(0); }

/* ---------- Desktop ---------- */
@media (min-width: 769px) {
  body { max-width: 480px; }
  .g026-bottomnav { display: none; }
  .g026-footer { padding-bottom: 2rem; }
}
@media (max-width: 768px) {
  main { padding-bottom: 80px; }
}
