/* =========================================================
 * 888q.click - Theme CSS (prefix: ga58-)
 * Palette: #B03060 (rose) | #2C3E50 (deep blue-gray) | #FFC0CB (light pink)
 * Mobile-first casino gaming site
 * ========================================================= */

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

:root {
  --ga58-rose: #B03060;
  --ga58-rose-dark: #8c2349;
  --ga58-rose-light: #d65585;
  --ga58-navy: #2C3E50;
  --ga58-navy-dark: #1c2a36;
  --ga58-navy-deep: #131c25;
  --ga58-pink: #FFC0CB;
  --ga58-gold: #f5c451;
  --ga58-text: #f7e9ef;
  --ga58-text-dim: #c7b6c0;
  --ga58-card: #24344180;
  --ga58-card-solid: #21303d;
  --ga58-border: #3a4a58;
  --ga58-shadow: 0 6px 24px rgba(0,0,0,0.35);
}

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

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, "Be Vietnam Pro", "Roboto", sans-serif;
  background: radial-gradient(circle at 20% 0%, #3a2530 0%, #1c2a36 45%, #131c25 100%);
  color: var(--ga58-text);
  line-height: 1.5;
  font-size: 1.6rem;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--ga58-pink); text-decoration: none; }
a:hover { color: #fff; }

.ga58-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }

/* ============ HEADER ============ */
.ga58-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(28,42,54,0.98) 0%, rgba(28,42,54,0.92) 100%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ga58-border);
}
.ga58-header-inner {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
}
.ga58-logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 1.7rem;
}
.ga58-logo img { width: 36px; height: 36px; border-radius: 8px; }
.ga58-logo .ga58-logo-text {
  background: linear-gradient(90deg, var(--ga58-gold), var(--ga58-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ga58-header-actions { display: flex; align-items: center; gap: 0.5rem; }
.ga58-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 0.65rem 1.2rem;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  white-space: nowrap;
}
.ga58-btn:active { transform: scale(0.96); }
.ga58-btn-login {
  background: transparent;
  color: var(--ga58-text);
  border: 1.5px solid var(--ga58-rose-light);
}
.ga58-btn-login:hover { background: rgba(214,85,133,0.15); color: #fff; }
.ga58-btn-register {
  background: linear-gradient(90deg, var(--ga58-rose) 0%, var(--ga58-rose-light) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(176,48,96,0.45);
}
.ga58-btn-register:hover { filter: brightness(1.08); color: #fff; }

.ga58-menu-toggle {
  background: transparent;
  border: 0;
  color: var(--ga58-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  display: none;
}

/* ============ MOBILE MENU ============ */
.ga58-mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  z-index: 9999;
  background: linear-gradient(180deg, #1c2a36 0%, #131c25 100%);
  padding: 5rem 1.5rem 2rem;
  transition: right 0.32s ease;
  overflow-y: auto;
  border-left: 1px solid var(--ga58-border);
}
.ga58-mobile-menu.ga58-menu-open { right: 0; }
.ga58-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.ga58-mobile-menu.ga58-menu-open ~ .ga58-menu-overlay { opacity: 1; pointer-events: auto; }
.ga58-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
}
.ga58-mobile-menu h4 {
  color: var(--ga58-gold);
  font-size: 1.3rem;
  margin: 1.2rem 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.ga58-mobile-menu ul { list-style: none; }
.ga58-mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.ga58-mobile-menu li a {
  display: block;
  color: var(--ga58-text);
  padding: 0.85rem 0.4rem;
  font-size: 1.5rem;
  font-weight: 500;
}
.ga58-mobile-menu li a:hover { color: var(--ga58-pink); padding-left: 0.8rem; }

body.ga58-no-scroll { overflow: hidden; }

/* ============ LAYOUT / MAIN ============ */
.ga58-main { padding-top: 68px; padding-bottom: 1rem; }
@media (max-width: 768px) {
  .ga58-main { padding-bottom: 90px; }
}

.ga58-section {
  margin: 2.4rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ga58-section.ga58-inview { opacity: 1; transform: none; }

.ga58-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
.ga58-section-title {
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
  position: relative;
  padding-left: 1rem;
}
.ga58-section-title::before {
  content: "";
  position: absolute;
  left: 0; top: 4px; bottom: 4px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--ga58-rose-light), var(--ga58-rose));
}
.ga58-section-more { color: var(--ga58-pink); font-size: 1.35rem; font-weight: 600; }

/* ============ HERO CAROUSEL ============ */
.ga58-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin: 1.2rem 0;
  box-shadow: var(--ga58-shadow);
}
.ga58-hero-slide {
  position: relative;
  display: none;
  min-height: 200px;
  border-radius: 16px;
  overflow: hidden;
}
.ga58-hero-slide.ga58-slide-active { display: block; animation: ga58fade 0.6s ease; }
@keyframes ga58fade { from { opacity: 0; } to { opacity: 1; } }
.ga58-hero-slide img { width: 100%; height: 220px; object-fit: cover; }
.ga58-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19,28,37,0.85) 0%, rgba(19,28,37,0.25) 100%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}
.ga58-hero-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
}
.ga58-hero-sub { font-size: 1.35rem; color: var(--ga58-pink); }
.ga58-hero-cta {
  align-self: flex-start;
  margin-top: 0.6rem;
  background: linear-gradient(90deg, var(--ga58-rose), var(--ga58-rose-light));
  color: #fff;
  padding: 0.7rem 1.6rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.4rem;
  box-shadow: 0 4px 14px rgba(176,48,96,0.5);
}
.ga58-hero-dots {
  position: absolute;
  bottom: 10px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.ga58-hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.2s;
}
.ga58-hero-dot.ga58-dot-active { background: var(--ga58-gold); width: 22px; border-radius: 4px; }

/* ============ PROMO BANNER ============ */
.ga58-promo-banner {
  background: linear-gradient(120deg, var(--ga58-rose) 0%, var(--ga58-rose-light) 50%, var(--ga58-gold) 100%);
  border-radius: 14px;
  padding: 1.2rem;
  margin: 1.4rem 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: var(--ga58-shadow);
}
.ga58-promo-banner .ga58-promo-text { flex: 1; }
.ga58-promo-banner h3 { font-size: 1.7rem; font-weight: 800; margin-bottom: 0.25rem; }
.ga58-promo-banner p { font-size: 1.25rem; opacity: 0.95; }
.ga58-promo-banner .ga58-btn {
  background: #fff;
  color: var(--ga58-rose-dark);
  padding: 0.7rem 1.3rem;
  font-size: 1.35rem;
}

/* ============ GAME FILTER TABS ============ */
.ga58-filter-bar {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.ga58-filter-bar::-webkit-scrollbar { display: none; }
.ga58-filter-tab {
  flex: 0 0 auto;
  background: var(--ga58-card-solid);
  color: var(--ga58-text-dim);
  border: 1px solid var(--ga58-border);
  padding: 0.55rem 1.1rem;
  border-radius: 30px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.ga58-filter-tab.ga58-tab-active,
.ga58-filter-tab:hover {
  background: linear-gradient(90deg, var(--ga58-rose), var(--ga58-rose-light));
  color: #fff;
  border-color: transparent;
}

/* ============ GAME GRID & CARDS ============ */
.ga58-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.ga58-game-card {
  background: var(--ga58-card-solid);
  border: 1px solid var(--ga58-border);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  cursor: pointer;
}
.ga58-game-card:hover, .ga58-game-card:active {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(176,48,96,0.35);
  border-color: var(--ga58-rose-light);
}
.ga58-game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.ga58-game-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ga58-text);
  padding: 0.45rem 0.4rem 0.55rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ga58-game-card .ga58-play-badge {
  position: absolute;
  top: 6px; right: 6px;
  background: rgba(176,48,96,0.9);
  color: #fff;
  font-size: 0.95rem;
  padding: 0.15rem 0.5rem;
  border-radius: 20px;
  font-weight: 700;
}
.ga58-game-card .ga58-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19,28,37,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}
.ga58-game-card:hover .ga58-play-overlay, .ga58-game-card:active .ga58-play-overlay { opacity: 1; }

/* ============ FEATURE BLOCK ============ */
.ga58-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.ga58-feature {
  background: var(--ga58-card-solid);
  border: 1px solid var(--ga58-border);
  border-radius: 12px;
  padding: 1.1rem 0.8rem;
  text-align: center;
}
.ga58-feature .ga58-feature-icon {
  font-size: 2.2rem;
  color: var(--ga58-gold);
  margin-bottom: 0.4rem;
}
.ga58-feature h4 { color: #fff; font-size: 1.4rem; margin-bottom: 0.3rem; }
.ga58-feature p { color: var(--ga58-text-dim); font-size: 1.2rem; line-height: 1.4; }

/* ============ STEPS ============ */
.ga58-steps { display: flex; flex-direction: column; gap: 0.7rem; }
.ga58-step {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: var(--ga58-card-solid);
  border: 1px solid var(--ga58-border);
  border-radius: 12px;
  padding: 1rem;
}
.ga58-step-num {
  flex: 0 0 32px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ga58-rose), var(--ga58-rose-light));
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.ga58-step h4 { color: #fff; font-size: 1.4rem; margin-bottom: 0.2rem; }
.ga58-step p { color: var(--ga58-text-dim); font-size: 1.2rem; }

/* ============ SEO CONTENT ============ */
.ga58-seo-content {
  background: var(--ga58-card-solid);
  border: 1px solid var(--ga58-border);
  border-radius: 14px;
  padding: 1.4rem 1.2rem;
  color: var(--ga58-text);
  font-size: 1.4rem;
  line-height: 1.7;
}
.ga58-seo-content h2 { color: #fff; font-size: 1.9rem; margin: 1rem 0 0.6rem; }
.ga58-seo-content h2:first-child { margin-top: 0; }
.ga58-seo-content h3 { color: var(--ga58-pink); font-size: 1.6rem; margin: 1rem 0 0.4rem; }
.ga58-seo-content p { margin-bottom: 0.7rem; color: var(--ga58-text); }
.ga58-seo-content ul, .ga58-seo-content ol { margin: 0.5rem 0 0.9rem 1.4rem; }
.ga58-seo-content li { margin-bottom: 0.35rem; }
.ga58-seo-content strong { color: var(--ga58-gold); }
.ga58-seo-content a { color: var(--ga58-pink); text-decoration: underline; }

/* ============ FAQ ============ */
.ga58-faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.ga58-faq-item {
  background: var(--ga58-card-solid);
  border: 1px solid var(--ga58-border);
  border-radius: 10px;
  overflow: hidden;
}
.ga58-faq-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  font-size: 1.4rem;
  list-style: none;
}
.ga58-faq-head .ga58-faq-icon { color: var(--ga58-gold); transition: transform 0.25s; }
.ga58-faq-item.ga58-faq-open .ga58-faq-icon { transform: rotate(45deg); }
.ga58-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.1rem;
  color: var(--ga58-text-dim);
  font-size: 1.3rem;
  line-height: 1.6;
}
.ga58-faq-item.ga58-faq-open .ga58-faq-body { padding-bottom: 1rem; }

/* ============ FOOTER ============ */
.ga58-footer {
  background: var(--ga58-navy-deep);
  border-top: 1px solid var(--ga58-border);
  padding: 2rem 0 1rem;
  margin-top: 2.5rem;
  color: var(--ga58-text-dim);
}
.ga58-footer h5 { color: var(--ga58-pink); font-size: 1.3rem; margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 1px; }
.ga58-footer ul { list-style: none; }
.ga58-footer li { margin-bottom: 0.4rem; font-size: 1.25rem; }
.ga58-footer a { color: var(--ga58-text-dim); }
.ga58-footer a:hover { color: var(--ga58-pink); }
.ga58-footer-bottom {
  border-top: 1px solid var(--ga58-border);
  margin-top: 1.5rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 1.15rem;
  color: var(--ga58-text-dim);
}
.ga58-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.ga58-disclaimer {
  margin-top: 1rem;
  font-size: 1.15rem;
  color: rgba(199,182,192,0.7);
  line-height: 1.5;
}

/* ============ BOTTOM NAV ============ */
.ga58-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  height: 62px;
  background: linear-gradient(180deg, rgba(28,42,54,0.98), rgba(19,28,37,0.98));
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--ga58-border);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  padding: 4px 0 0;
}
.ga58-nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: transparent;
  border: 0;
  color: var(--ga58-text-dim);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  min-width: 60px;
  min-height: 58px;
  position: relative;
  transition: color 0.2s;
  text-decoration: none;
}
.ga58-nav-btn .ga58-nav-icon { font-size: 22px; line-height: 1; }
.ga58-nav-btn:hover { color: #fff; }
.ga58-nav-btn.ga58-nav-active { color: var(--ga58-gold); }
.ga58-nav-btn.ga58-nav-active::before {
  content: "";
  position: absolute;
  top: 0;
  width: 30px; height: 3px;
  border-radius: 0 0 4px 4px;
  background: var(--ga58-gold);
}
.ga58-nav-promo {
  background: linear-gradient(135deg, var(--ga58-rose), var(--ga58-rose-light));
  color: #fff !important;
  border-radius: 50%;
  width: 50px; height: 50px;
  margin-top: -22px;
  box-shadow: 0 4px 12px rgba(176,48,96,0.55);
  border: 3px solid #1c2a36;
  flex: 0 0 auto;
  padding: 0;
}
.ga58-nav-promo .ga58-nav-icon { font-size: 22px; }
.ga58-nav-promo span.ga58-nav-label { display: none; }
.ga58-nav-promo.ga58-nav-active::before { display: none; }

/* ============ BACK TO TOP ============ */
.ga58-to-top {
  position: fixed;
  right: 14px; bottom: 80px;
  z-index: 900;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ga58-rose);
  color: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.ga58-to-top.ga58-to-top-show { opacity: 1; pointer-events: auto; }
.ga58-to-top:hover { transform: translateY(-3px); }

/* ============ TEXT LINK PROMO ============ */
.ga58-text-link {
  color: var(--ga58-pink);
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}
.ga58-text-link:hover { color: var(--ga58-gold); }

/* ============ RESPONSIVE / DESKTOP ============ */
@media (min-width: 769px) {
  body { background: radial-gradient(circle at 30% 0%, #3a2530 0%, #1c2a36 50%, #131c25 100%); }
  .ga58-container { max-width: 960px; }
  .ga58-header-inner { max-width: 960px; }
  .ga58-bottom-nav { display: none; }
  .ga58-main { padding-bottom: 2rem; }
  .ga58-game-grid { grid-template-columns: repeat(6, 1fr); }
  .ga58-features { grid-template-columns: repeat(4, 1fr); }
  .ga58-footer-grid { grid-template-columns: repeat(4, 1fr); }
  .ga58-hero-slide img { height: 320px; }
  .ga58-menu-toggle { display: none; }
  .ga58-promo-banner h3 { font-size: 2.1rem; }
}

@media (max-width: 380px) {
  .ga58-game-grid { grid-template-columns: repeat(2, 1fr); }
  .ga58-hero-title { font-size: 1.8rem; }
  .ga58-section-title { font-size: 1.7rem; }
}

/* ============ INNER PAGE ADDITIONS (shared modules) ============ */
/* Page H1 block for home and inner pages */
.ga58-h1 {
  font-size: 1.95rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.35;
  margin: 1.2rem 0 0.4rem;
}
.ga58-h1 .ga58-h1-accent { color: var(--ga58-gold); }
.ga58-h1-sub { color: var(--ga58-text-dim); font-size: 1.3rem; line-height: 1.55; margin-bottom: 0.6rem; }

/* Page hero banner with background image (inner pages) */
.ga58-page-hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin: 1.2rem 0;
  border: 1px solid var(--ga58-border);
  box-shadow: var(--ga58-shadow);
}
.ga58-page-hero img { width: 100%; height: 180px; object-fit: cover; }
.ga58-page-hero-cap {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19,28,37,0.9) 0%, rgba(19,28,37,0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  padding: 1.4rem;
}
.ga58-page-hero-cap h1 { font-size: 1.9rem; color: #fff; line-height: 1.3; }
.ga58-page-hero-cap p { font-size: 1.25rem; color: var(--ga58-pink); max-width: 90%; }

/* Stat tiles (compact numbers) */
.ga58-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.8rem; }
.ga58-stat {
  background: var(--ga58-card-solid);
  border: 1px solid var(--ga58-border);
  border-radius: 12px;
  padding: 1rem 0.8rem;
  text-align: center;
}
.ga58-stat-num {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(90deg, var(--ga58-gold), var(--ga58-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ga58-stat-label { color: var(--ga58-text-dim); font-size: 1.15rem; margin-top: 0.2rem; }

/* Icon info rows */
.ga58-info-list { display: flex; flex-direction: column; gap: 0.6rem; }
.ga58-info-row {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: var(--ga58-card-solid);
  border: 1px solid var(--ga58-border);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}
.ga58-info-row > i { color: var(--ga58-gold); font-size: 1.8rem; margin-top: 0.1rem; }
.ga58-info-row h4 { color: #fff; font-size: 1.4rem; margin-bottom: 0.2rem; }
.ga58-info-row p { color: var(--ga58-text-dim); font-size: 1.2rem; line-height: 1.5; }

/* Footer brand intro + promo button row */
.ga58-footer-intro { font-size: 1.25rem; color: var(--ga58-text-dim); line-height: 1.6; margin-bottom: 1rem; }
.ga58-footer-intro strong { color: var(--ga58-pink); }
.ga58-footer-promos { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 0 0 1.4rem; }
.ga58-footer-promos .ga58-btn {
  background: linear-gradient(90deg, var(--ga58-rose), var(--ga58-rose-light));
  color: #fff;
  font-size: 1.2rem;
  padding: 0.55rem 1rem;
}

/* Compact tip box */
.ga58-tip-box {
  background: linear-gradient(120deg, rgba(176,48,96,0.18), rgba(44,62,80,0.4));
  border: 1px solid var(--ga58-rose-light);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  font-size: 1.3rem;
  color: var(--ga58-text);
  line-height: 1.6;
}
.ga58-tip-box strong { color: var(--ga58-gold); }

@media (min-width: 769px) {
  .ga58-stats { grid-template-columns: repeat(4, 1fr); }
}
