/* css/style-890c.css - ax8 shared styles (prefix: g0c0-) */
/* Color palette: #1A1A1A bg / #F4A460 sand / #DAA520 gold / #E91E63 magenta / #CD853F peru */
/* All custom classes use the g0c0- prefix. */

:root {
  --g0c0-bg: #1A1A1A;
  --g0c0-bg-alt: #232323;
  --g0c0-card: #2a2422;
  --g0c0-sand: #F4A460;
  --g0c0-gold: #DAA520;
  --g0c0-magenta: #E91E63;
  --g0c0-peru: #CD853F;
  --g0c0-text: #f6efe6;
  --g0c0-muted: #b9a98f;
  --g0c0-border: #3a2f25;
  --g0c0-radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 62.5%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Be Vietnam Pro", "Segoe UI", Roboto, Arial, sans-serif;
  background: radial-gradient(circle at 20% 0%, #2a2118 0%, #1A1A1A 55%);
  color: var(--g0c0-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--g0c0-sand); text-decoration: none; }

.g0c0-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
}

main { padding-bottom: 84px; }

/* ===== Header ===== */
.g0c0-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(20,20,20,0.96), rgba(26,26,26,0.92));
  border-bottom: 1px solid var(--g0c0-border);
  backdrop-filter: blur(8px);
}
.g0c0-header-inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.g0c0-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 1;
  min-width: 0;
}
.g0c0-logo img { width: 30px; height: 30px; border-radius: 8px; }
.g0c0-logo span {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--g0c0-gold), var(--g0c0-sand));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.5px;
}
.g0c0-menu-toggle {
  background: transparent;
  border: 1px solid var(--g0c0-border);
  color: var(--g0c0-sand);
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 2rem;
}
.g0c0-header-actions { display: flex; gap: 0.5rem; }

.g0c0-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  border: none;
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  min-height: 40px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  font-family: inherit;
}
.g0c0-btn:active { transform: scale(0.95); }
.g0c0-btn-register {
  background: linear-gradient(135deg, var(--g0c0-magenta), #b3154d);
  color: #fff;
  box-shadow: 0 4px 12px rgba(233,30,99,0.35);
}
.g0c0-btn-login {
  background: linear-gradient(135deg, var(--g0c0-gold), var(--g0c0-peru));
  color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(218,165,32,0.35);
}

/* ===== Expandable mobile menu ===== */
.g0c0-mobile-menu {
  position: fixed;
  top: 56px; left: 0; right: 0;
  z-index: 9999;
  background: var(--g0c0-bg-alt);
  border-bottom: 1px solid var(--g0c0-border);
  padding: 0.8rem 1rem 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.g0c0-mobile-menu.g0c0-menu-open { max-height: 520px; }
.g0c0-mobile-menu a {
  display: block;
  padding: 0.9rem 0.8rem;
  border-radius: 8px;
  color: var(--g0c0-text);
  border-bottom: 1px solid var(--g0c0-border);
  font-weight: 600;
}
.g0c0-mobile-menu a:active { background: rgba(244,164,96,0.12); }
.g0c0-mobile-menu-title {
  font-size: 1.2rem;
  color: var(--g0c0-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0.4rem 0.2rem 0.6rem;
}

/* ===== Hero / Banner ===== */
.g0c0-main-top { padding-top: 64px; }
.g0c0-banner {
  position: relative;
  margin: 1rem;
  border-radius: var(--g0c0-radius);
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,0.45);
  cursor: pointer;
}
.g0c0-slide {
  display: none;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.g0c0-slide img { width: 100%; height: 100%; object-fit: cover; }
.g0c0-slide-active { display: block; }
.g0c0-banner-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.75));
  color: #fff;
}
.g0c0-banner-overlay h2 { font-size: 1.8rem; margin-bottom: 0.3rem; }
.g0c0-banner-overlay p { font-size: 1.25rem; color: var(--g0c0-sand); }

/* ===== Section ===== */
.g0c0-section {
  padding: 1.2rem 1rem;
}
.g0c0-section-title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.g0c0-section-title i { color: var(--g0c0-gold); }
.g0c0-section-title span.accent { color: var(--g0c0-magenta); }
.g0c0-section-sub {
  font-size: 1.3rem;
  color: var(--g0c0-muted);
  margin-bottom: 1rem;
}

.g0c0-h1 {
  font-size: 2.2rem;
  font-weight: 800;
  padding: 0.4rem 1rem 0;
  line-height: 1.35;
}
.g0c0-h1 .hl { color: var(--g0c0-gold); }

.g0c0-text { color: var(--g0c0-text); }
.g0c0-muted { color: var(--g0c0-muted); }

/* Inline promo link styled as bold text */
.g0c0-promo-link {
  color: var(--g0c0-magenta);
  font-weight: 700;
  cursor: pointer;
}
.g0c0-promo-link:hover { text-decoration: underline; }

/* ===== Game grid ===== */
.g0c0-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.g0c0-game {
  background: var(--g0c0-card);
  border: 1px solid var(--g0c0-border);
  border-radius: 12px;
  padding: 0.4rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.12s ease, border-color 0.12s ease;
  overflow: hidden;
}
.g0c0-game:active { transform: scale(0.96); border-color: var(--g0c0-gold); }
.g0c0-game img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}
.g0c0-game-name {
  font-size: 1.15rem;
  margin-top: 0.3rem;
  color: var(--g0c0-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}
.g0c0-cat-label {
  display: inline-block;
  font-size: 1.1rem;
  padding: 0.2rem 0.7rem;
  background: rgba(244,164,96,0.18);
  color: var(--g0c0-sand);
  border-radius: 999px;
  margin-bottom: 0.6rem;
  font-weight: 700;
}

/* ===== Cards ===== */
.g0c0-card {
  background: var(--g0c0-card);
  border: 1px solid var(--g0c0-border);
  border-radius: var(--g0c0-radius);
  padding: 1rem;
  margin-bottom: 0.8rem;
}
.g0c0-card h3 { font-size: 1.45rem; margin-bottom: 0.4rem; color: var(--g0c0-sand); }
.g0c0-card p { font-size: 1.3rem; color: var(--g0c0-muted); }

.g0c0-feature-row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--g0c0-border);
}
.g0c0-feature-row:last-child { border-bottom: none; }
.g0c0-feature-row i {
  color: var(--g0c0-gold);
  font-size: 2rem;
  width: 28px;
  text-align: center;
}
.g0c0-feature-row h4 { font-size: 1.35rem; margin-bottom: 0.2rem; }
.g0c0-feature-row p { font-size: 1.22rem; color: var(--g0c0-muted); }

/* ===== RTP compact stat ===== */
.g0c0-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}
.g0c0-stat {
  background: linear-gradient(135deg, #2c2317, #1f1a13);
  border: 1px solid var(--g0c0-border);
  border-radius: 12px;
  padding: 0.9rem 0.7rem;
  text-align: center;
}
.g0c0-stat .num {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--g0c0-gold);
}
.g0c0-stat .lbl { font-size: 1.15rem; color: var(--g0c0-muted); }

/* ===== Winners / testimonials ===== */
.g0c0-list { list-style: none; }
.g0c0-list li {
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--g0c0-border);
  font-size: 1.25rem;
  display: flex;
  justify-content: space-between;
}
.g0c0-list li .amt { color: var(--g0c0-magenta); font-weight: 700; }

.g0c0-quote {
  background: var(--g0c0-card);
  border-left: 3px solid var(--g0c0-magenta);
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  margin-bottom: 0.6rem;
}
.g0c0-quote p { font-size: 1.25rem; }
.g0c0-quote .author { font-size: 1.1rem; color: var(--g0c0-sand); margin-top: 0.3rem; }

/* ===== Payment chips ===== */
.g0c0-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.g0c0-chip {
  background: rgba(244,164,96,0.12);
  border: 1px solid var(--g0c0-border);
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 1.2rem;
  color: var(--g0c0-text);
}
.g0c0-chip i { color: var(--g0c0-gold); margin-right: 0.3rem; }

/* ===== CTA big button ===== */
.g0c0-cta {
  display: block;
  width: calc(100% - 2rem);
  margin: 1rem;
  padding: 1.2rem;
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, var(--g0c0-magenta), var(--g0c0-gold));
  color: #fff;
  box-shadow: 0 8px 20px rgba(233,30,99,0.35);
  cursor: pointer;
}
.g0c0-cta:active { transform: scale(0.97); }

/* ===== Footer ===== */
.g0c0-footer {
  background: #141414;
  border-top: 1px solid var(--g0c0-border);
  padding: 1.2rem 1rem 2rem;
  margin-top: 1rem;
}
.g0c0-footer-about {
  font-size: 1.2rem;
  color: var(--g0c0-muted);
  margin-bottom: 0.8rem;
}
.g0c0-footer-promos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.g0c0-footer-promos button {
  background: linear-gradient(135deg, var(--g0c0-magenta), #9e1452);
  color: #fff;
  border: none;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}
.g0c0-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  margin-bottom: 0.8rem;
}
.g0c0-footer-links a {
  font-size: 1.15rem;
  color: var(--g0c0-muted);
  text-decoration: underline;
}
.g0c0-copyright {
  font-size: 1.1rem;
  color: #6b5d4d;
  text-align: center;
  padding-top: 0.6rem;
  border-top: 1px solid var(--g0c0-border);
}

/* ===== Mobile bottom nav (5 buttons) ===== */
.g0c0-bottomnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  height: 62px;
  background: linear-gradient(180deg, #1f1a14, #141414);
  border-top: 1px solid var(--g0c0-gold);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  box-shadow: 0 -4px 14px rgba(0,0,0,0.5);
}
.g0c0-bottomnav-btn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--g0c0-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  transition: color 0.15s ease, transform 0.15s ease;
}
.g0c0-bottomnav-btn i,
.g0c0-bottomnav-btn .material-icons-outlined,
.g0c0-bottomnav-btn .ion { font-size: 24px; }
.g0c0-bottomnav-btn span.lbl { font-size: 1.05rem; font-weight: 600; }
.g0c0-bottomnav-btn:active { transform: scale(0.92); }
.g0c0-bottomnav-active { color: var(--g0c0-gold); }
.g0c0-bottomnav-active::before {
  content: "";
  position: absolute;
  top: 0; left: 25%; right: 25%;
  height: 3px;
  background: var(--g0c0-magenta);
  border-radius: 0 0 4px 4px;
}
.g0c0-bottomnav-btn.g0c0-promo {
  color: var(--g0c0-magenta);
}

/* ===== Desktop: hide bottom nav, expand wrapper ===== */
@media (min-width: 769px) {
  .g0c0-bottomnav { display: none; }
  .g0c0-wrapper { max-width: 430px; }
  main { padding-bottom: 40px; }
}

/* Utility */
.g0c0-mt { margin-top: 1rem; }
.g0c0-center { text-align: center; }
.g0c0-pulse { animation: g0c0pulse 2.2s ease-in-out infinite; }
@keyframes g0c0pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(233,30,99,0.45); }
  50% { box-shadow: 0 0 0 8px rgba(233,30,99,0); }
}
