/* =========================================================
 * nustar gaming - design-0c70.css
 * Every custom selector uses the g700- prefix.
 * Palette: #0E1621 / #F0F8FF / #999999 + gold accent.
 * Mobile-first. Root font 62.5% (1rem = 10px).
 * ========================================================= */

:root {
  --g700-bg: #0E1621;
  --g700-bg-2: #131f2e;
  --g700-bg-3: #1b2a3d;
  --g700-text: #F0F8FF;
  --g700-muted: #999999;
  --g700-accent: #FFB323;
  --g700-accent-2: #ff8a00;
  --g700-gold: #ffd56b;
  --g700-border: rgba(240, 248, 255, 0.10);
  --g700-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --g700-radius: 14px;
  --g700-max: 430px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 50% -10%, #1b2a3d 0%, var(--g700-bg) 60%);
  color: var(--g700-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  overflow-x: hidden;
}
a { color: var(--g700-gold); text-decoration: none; }
a:hover { color: var(--g700-accent); }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---------- Layout primitives ---------- */
.g700-container { width: 100%; max-width: var(--g700-max); margin: 0 auto; padding: 0 1.2rem; }
.g700-wrapper { padding: 1.6rem 0; }
.g700-section { padding: 2.4rem 0; border-top: 1px solid var(--g700-border); }
.g700-grid { display: grid; gap: 1rem; }

.g700-hidden-mobile { display: none; }

/* ---------- Header ---------- */
.g700-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, rgba(14,22,33,0.96), rgba(14,22,33,0.86));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--g700-border);
}
.g700-header-inner {
  max-width: var(--g700-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.2rem; min-height: 5.6rem;
}
.g700-brand { display: flex; align-items: center; gap: 0.7rem; }
.g700-brand-logo { width: 3rem; height: 3rem; border-radius: 9px; object-fit: cover; }
.g700-brand-name {
  font-size: 1.5rem; font-weight: 800; letter-spacing: 0.3px;
  background: linear-gradient(90deg, var(--g700-gold), var(--g700-accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.g700-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.g700-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  min-height: 3.6rem; padding: 0 1.2rem; border-radius: 999px;
  font-weight: 700; font-size: 1.3rem; border: none; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.g700-btn:active { transform: scale(0.96); }
.g700-btn-primary {
  background: linear-gradient(90deg, var(--g700-accent), var(--g700-accent-2));
  color: #1a1206; box-shadow: 0 6px 18px rgba(255,138,0,0.35);
}
.g700-btn-ghost {
  background: transparent; color: var(--g700-text);
  border: 1px solid var(--g700-border);
}
.g700-menu-toggle {
  width: 3.8rem; height: 3.8rem; border-radius: 10px;
  background: var(--g700-bg-3); border: 1px solid var(--g700-border);
  color: var(--g700-text); font-size: 1.8rem; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ---------- Slide menu ---------- */
.g700-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 9998;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
.g700-overlay-show { opacity: 1; pointer-events: auto; }
.g700-mobile-menu {
  position: fixed; top: 0; right: -85%; width: 80%; max-width: 320px;
  height: 100%; background: var(--g700-bg-2); z-index: 9999;
  transition: right .28s ease; padding: 2rem 1.4rem; overflow-y: auto;
  border-left: 1px solid var(--g700-border);
}
.g700-menu-open { right: 0; }
.g700-menu-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 1.2rem; color: var(--g700-gold); }
.g700-mobile-menu a, .g700-mobile-menu button.g700-menu-link {
  display: block; width: 100%; text-align: left;
  padding: 1rem 0.8rem; border-bottom: 1px solid var(--g700-border);
  color: var(--g700-text); font-size: 1.35rem; font-weight: 600;
  background: transparent; border-radius: 0;
}
.g700-mobile-menu a:hover { color: var(--g700-accent); }
.g700-menu-close {
  background: transparent; color: var(--g700-muted); border: none;
  font-size: 2rem; cursor: pointer; float: right;
}

/* ---------- Main ---------- */
.g700-main { padding-top: 6rem; padding-bottom: 8rem; }

/* ---------- Hero / Carousel ---------- */
.g700-carousel {
  position: relative; overflow: hidden; border-radius: var(--g700-radius);
  box-shadow: var(--g700-shadow); margin-top: 1.2rem;
}
.g700-carousel-track { display: flex; transition: transform .45s ease; }
.g700-carousel-slide { min-width: 100%; position: relative; cursor: pointer; }
.g700-carousel-slide img { width: 100%; height: 190px; object-fit: cover; }
.g700-carousel-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem 1.2rem; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
}
.g700-carousel-caption h2 { font-size: 1.5rem; color: var(--g700-gold); margin-bottom: 0.2rem; }
.g700-carousel-caption p { font-size: 1.15rem; color: var(--g700-text); }
.g700-carousel-dots {
  position: absolute; bottom: 0.6rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: 0.5rem;
}
.g700-carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(240,248,255,0.45); cursor: pointer; border: none;
}
.g700-dot-active { background: var(--g700-accent); }

/* ---------- Section headers ---------- */
.g700-section-head { margin-bottom: 1.2rem; }
.g700-section-head h2 {
  font-size: 1.7rem; font-weight: 800; color: var(--g700-text);
}
.g700-section-head h2 span { color: var(--g700-accent); }
.g700-section-head p { color: var(--g700-muted); font-size: 1.25rem; margin-top: 0.3rem; }

/* ---------- Filter chips ---------- */
.g700-filter-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0 1.4rem; }
.g700-filter-chip {
  padding: 0.5rem 1rem; border-radius: 999px; font-size: 1.15rem; font-weight: 600;
  background: var(--g700-bg-3); color: var(--g700-text); border: 1px solid var(--g700-border);
  cursor: pointer;
}
.g700-chip-active {
  background: linear-gradient(90deg, var(--g700-accent), var(--g700-accent-2));
  color: #1a1206; border-color: transparent;
}

/* ---------- Game grid ---------- */
.g700-game-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem;
}
.g700-game-card {
  background: var(--g700-bg-2); border-radius: 12px; padding: 0.7rem;
  text-align: center; border: 1px solid var(--g700-border); cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.g700-game-card:hover {
  transform: translateY(-2px); border-color: var(--g700-accent);
  box-shadow: 0 8px 18px rgba(0,0,0,0.45);
}
.g700-game-card img {
  width: 100%; height: 78px; object-fit: cover; border-radius: 8px; margin-bottom: 0.4rem;
}
.g700-game-name { font-size: 1.05rem; font-weight: 600; color: var(--g700-text); line-height: 1.3; }
.g700-game-tag { font-size: 0.95rem; color: var(--g700-muted); }

/* ---------- Category highlight banner ---------- */
.g700-cat-banner {
  display: flex; align-items: center; gap: 1rem; padding: 1rem;
  background: linear-gradient(90deg, var(--g700-bg-3), var(--g700-bg-2));
  border-radius: 12px; border-left: 4px solid var(--g700-accent); margin-bottom: 1rem;
}
.g700-cat-banner i { font-size: 2.4rem; color: var(--g700-gold); }
.g700-cat-banner h3 { font-size: 1.4rem; color: var(--g700-text); }
.g700-cat-banner p { font-size: 1.15rem; color: var(--g700-muted); }

/* ---------- Generic cards ---------- */
.g700-card {
  background: var(--g700-bg-2); border-radius: var(--g700-radius);
  padding: 1.4rem; border: 1px solid var(--g700-border); box-shadow: var(--g700-shadow);
}
.g700-card h3 { color: var(--g700-gold); font-size: 1.4rem; margin-bottom: 0.6rem; }
.g700-card p { color: var(--g700-text); font-size: 1.25rem; }
.g700-card-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }

/* ---------- Feature list ---------- */
.g700-feature-list li {
  padding: 0.8rem 0; border-bottom: 1px solid var(--g700-border);
  display: flex; gap: 0.8rem; align-items: flex-start; font-size: 1.25rem;
}
.g700-feature-list i { color: var(--g700-accent); font-size: 1.4rem; margin-top: 0.2rem; }

/* ---------- Steps ---------- */
.g700-step {
  display: flex; gap: 1rem; padding: 1rem; background: var(--g700-bg-2);
  border-radius: 12px; margin-bottom: 0.8rem; border: 1px solid var(--g700-border);
}
.g700-step-num {
  flex-shrink: 0; width: 3rem; height: 3rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--g700-accent), var(--g700-accent-2));
  color: #1a1206; font-weight: 800; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.g700-step h4 { font-size: 1.3rem; margin-bottom: 0.2rem; }
.g700-step p { font-size: 1.15rem; color: var(--g700-muted); }

/* ---------- RTP table ---------- */
.g700-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.2rem; }
.g700-rtp-table th, .g700-rtp-table td {
  padding: 0.8rem; text-align: left; border-bottom: 1px solid var(--g700-border);
}
.g700-rtp-table th { color: var(--g700-gold); font-weight: 700; }
.g700-rtp-bar {
  height: 6px; background: var(--g700-bg-3); border-radius: 6px; overflow: hidden; margin-top: 0.4rem;
}
.g700-rtp-fill { height: 100%; background: linear-gradient(90deg, var(--g700-accent), var(--g700-gold)); }

/* ---------- Testimonials ---------- */
.g700-testimonial {
  background: var(--g700-bg-2); border-radius: 12px; padding: 1.2rem;
  border: 1px solid var(--g700-border); margin-bottom: 0.8rem;
}
.g700-testimonial-stars { color: var(--g700-accent); margin-bottom: 0.4rem; }
.g700-testimonial p { font-size: 1.2rem; color: var(--g700-text); margin-bottom: 0.4rem; }
.g700-testimonial cite { color: var(--g700-muted); font-size: 1.1rem; }

/* ---------- Payment row ---------- */
.g700-pay-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.g700-pay-chip {
  background: var(--g700-bg-3); border: 1px solid var(--g700-border);
  border-radius: 10px; padding: 0.6rem 1rem; font-size: 1.15rem; font-weight: 600; color: var(--g700-text);
  display: inline-flex; align-items: center; gap: 0.4rem;
}

/* ---------- Winners ---------- */
.g700-winner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 1rem; background: var(--g700-bg-2); border-radius: 10px;
  border: 1px solid var(--g700-border); margin-bottom: 0.5rem;
}
.g700-winner-name { font-weight: 700; }
.g700-winner-amount { color: var(--g700-gold); font-weight: 800; }

/* ---------- FAQ ---------- */
.g700-faq-item {
  background: var(--g700-bg-2); border-radius: 10px; padding: 1rem 1.2rem;
  margin-bottom: 0.6rem; border: 1px solid var(--g700-border);
}
.g700-faq-item h4 { color: var(--g700-gold); font-size: 1.3rem; margin-bottom: 0.3rem; }
.g700-faq-item p { font-size: 1.2rem; color: var(--g700-text); }

/* ---------- CTA ---------- */
.g700-cta {
  background: linear-gradient(135deg, rgba(255,179,35,0.18), rgba(255,138,0,0.10));
  border: 1px solid rgba(255,179,35,0.4); border-radius: var(--g700-radius);
  padding: 1.6rem; text-align: center; margin: 1.6rem 0;
}
.g700-cta h3 { color: var(--g700-gold); font-size: 1.6rem; margin-bottom: 0.4rem; }
.g700-cta p { color: var(--g700-text); font-size: 1.25rem; margin-bottom: 1rem; }

/* ---------- Long-form SEO prose ---------- */
.g700-prose p { margin-bottom: 1rem; font-size: 1.25rem; color: var(--g700-text); }
.g700-prose strong { color: var(--g700-gold); }

/* ---------- Footer ---------- */
.g700-footer {
  background: var(--g700-bg-2); border-top: 1px solid var(--g700-border);
  padding: 2rem 0 8rem; margin-top: 2rem;
}
.g700-footer p { color: var(--g700-muted); font-size: 1.15rem; margin-bottom: 1rem; }
.g700-footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin: 1rem 0; }
.g700-footer-links a { color: var(--g700-text); font-size: 1.15rem; padding: 0.4rem 0; border-bottom: 1px solid var(--g700-border); }
.g700-footer-promos { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0; }
.g700-copyright { color: var(--g700-muted); font-size: 1.1rem; margin-top: 1rem; text-align: center; }

/* ---------- Bottom nav ---------- */
.g700-bottomnav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  background: linear-gradient(180deg, rgba(19,31,46,0.98), rgba(14,22,33,0.99));
  border-top: 1px solid var(--g700-border);
  display: flex; justify-content: space-around; align-items: stretch;
  height: 62px;
}
.g700-bottomnav-btn {
  flex: 1; min-width: 60px; min-height: 60px;
  background: transparent; border: none; color: var(--g700-muted);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.2rem; cursor: pointer; padding: 0.4rem;
  font-size: 1rem; font-weight: 600; transition: color .15s ease, transform .15s ease;
}
.g700-bottomnav-btn i { font-size: 2rem; }
.g700-bottomnav-btn:active { transform: scale(0.92); }
.g700-bottomnav-btn.is-active { color: var(--g700-accent); }
.g700-bottomnav-btn.g700-promo i { color: var(--g700-gold); }

/* ---------- Back to top ---------- */
.g700-totop {
  position: fixed; right: 1.2rem; bottom: 7.4rem; z-index: 998;
  width: 4rem; height: 4rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--g700-accent), var(--g700-accent-2));
  color: #1a1206; font-size: 1.8rem; font-weight: 800; border: none; cursor: pointer;
  opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .15s ease;
  box-shadow: var(--g700-shadow);
}
.g700-totop-show { opacity: 1; pointer-events: auto; }
.g700-totop:active { transform: scale(0.92); }

/* ---------- Tags / badges ---------- */
.g700-badge {
  display: inline-block; padding: 0.2rem 0.6rem; border-radius: 6px;
  background: rgba(255,179,35,0.18); color: var(--g700-gold);
  font-size: 1rem; font-weight: 700;
}
.g700-tag-hot { background: rgba(255,80,80,0.18); color: #ff7a7a; }
.g700-tag-new { background: rgba(80,200,120,0.18); color: #6fdc8f; }

/* ---------- Desktop ---------- */
@media (min-width: 769px) {
  body { background: linear-gradient(180deg, #131f2e, var(--g700-bg)); }
  .g700-container { max-width: 960px; }
  .g700-header-inner { max-width: 960px; }
  .g700-game-grid { grid-template-columns: repeat(6, 1fr); }
  .g700-card-grid { grid-template-columns: 1fr 1fr; }
  .g700-bottomnav { display: none; }
  .g700-main { padding-bottom: 2rem; }
  .g700-footer { padding-bottom: 2rem; }
  .g700-carousel-slide img { height: 320px; }
  .g700-footer-links { grid-template-columns: repeat(3, 1fr); }
  .g700-hidden-mobile { display: block; }
  .g700-menu-toggle { display: none; }
}

/* ---------- Small phones ---------- */
@media (max-width: 360px) {
  .g700-game-grid { grid-template-columns: repeat(2, 1fr); }
  .g700-brand-name { font-size: 1.3rem; }
}
