/* FSBET basefiles stylesheet - prefix pg07- */
:root {
  --pg07-bg: #0C0C0C;
  --pg07-purple: #4B0082;
  --pg07-silver: #C0C0C0;
  --pg07-pink: #DDA0DD;
  --pg07-gold: #FFD700;
  --pg07-orange: #FFB347;
  --pg07-dark2: #15101f;
  --pg07-card: #1a132c;
  --pg07-text: #f3eefb;
  --pg07-muted: #b8a8d8;
  --pg07-max: 430px;
}

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

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

body {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at 50% 0%, #1d0f33 0%, #0C0C0C 65%);
  color: var(--pg07-text);
  font-size: 1.5rem;
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

a { color: var(--pg07-gold); text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.pg07-wrap { width: 100%; max-width: var(--pg07-max); margin: 0 auto; position: relative; }

/* ============ Header ============ */
.pg07-header {
  position: sticky; top: 0; z-index: 1000;
  background: linear-gradient(180deg, rgba(15,5,28,0.96), rgba(12,12,12,0.92));
  border-bottom: 1px solid rgba(221,160,221,0.18);
  transition: box-shadow .25s, background .25s;
}
.pg07-header.pg07-scrolled { box-shadow: 0 4px 18px rgba(0,0,0,.55); }
.pg07-header-inner {
  max-width: var(--pg07-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; gap: 8px;
}
.pg07-logo {
  display: flex; align-items: center; gap: 8px; color: var(--pg07-text);
  font-weight: 800; font-size: 1.9rem; letter-spacing: .5px;
}
.pg07-logo .pg07-logo-mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--pg07-gold), var(--pg07-orange));
  display: flex; align-items: center; justify-content: center; color: #1a0f00;
  font-size: 1.6rem; font-weight: 900;
}
.pg07-logo b { color: var(--pg07-gold); }
.pg07-head-actions { display: flex; align-items: center; gap: 8px; }
.pg07-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 16px; border-radius: 30px; font-size: 1.35rem; font-weight: 700;
  cursor: pointer; border: none; transition: transform .15s, box-shadow .25s, background .25s;
  min-height: 38px; text-decoration: none; line-height: 1;
}
.pg07-btn:active { transform: scale(0.96); }
.pg07-btn-login {
  background: transparent; color: var(--pg07-silver);
  border: 1px solid rgba(192,192,192,0.55);
}
.pg07-btn-login:hover { background: rgba(192,192,192,0.12); }
.pg07-btn-register {
  background: linear-gradient(135deg, var(--pg07-gold), var(--pg07-orange));
  color: #1a0f00; box-shadow: 0 3px 10px rgba(255,215,0,.35);
}
.pg07-btn-register:hover { box-shadow: 0 6px 16px rgba(255,179,71,.55); }
.pg07-burger {
  background: transparent; border: none; color: var(--pg07-silver);
  font-size: 2rem; cursor: pointer; padding: 4px 8px; display: none;
}

/* ============ Mobile Menu ============ */
.pg07-mobile-menu {
  position: fixed; top: 0; right: -100%; width: 84%; max-width: 360px;
  height: 100%; background: linear-gradient(180deg, #1a0f2e, #0C0C0C);
  z-index: 9999; padding: 70px 22px 30px; transition: right .3s ease;
  overflow-y: auto; box-shadow: -6px 0 30px rgba(0,0,0,.6);
}
.pg07-mobile-menu.pg07-open { right: 0; }
.pg07-menu-close {
  position: absolute; top: 14px; right: 16px; background: transparent;
  border: none; color: var(--pg07-silver); font-size: 2.4rem; cursor: pointer;
}
.pg07-mobile-menu h4 {
  color: var(--pg07-pink); font-size: 1.4rem; text-transform: uppercase;
  letter-spacing: 1.5px; margin: 18px 0 10px;
}
.pg07-mobile-menu a {
  display: block; padding: 11px 6px; color: var(--pg07-text);
  border-bottom: 1px solid rgba(192,192,192,.12); font-size: 1.45rem;
}
.pg07-mobile-menu a:hover { color: var(--pg07-gold); }
.pg07-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 9998;
  display: none;
}
body.pg07-no-scroll { overflow: hidden; }

/* ============ Hero / Slider ============ */
.pg07-hero {
  position: relative; max-width: var(--pg07-max); margin: 0 auto;
  overflow: hidden; border-radius: 0 0 18px 18px;
}
.pg07-hero-track { position: relative; height: 230px; }
.pg07-hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease;
  display: flex; flex-direction: column; justify-content: center;
  padding: 22px 20px; color: #fff;
}
.pg07-hero-slide.pg07-active { opacity: 1; }
.pg07-hero-slide::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(75,0,130,.85), rgba(12,12,12,.65));
  z-index: 0;
}
.pg07-hero-slide > * { position: relative; z-index: 1; }
.pg07-hero-slide h1, .pg07-hero-slide h2 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 8px; color: var(--pg07-gold); }
.pg07-hero-slide h1 b, .pg07-hero-slide h2 b { color: #fff; }
.pg07-hero-slide p { font-size: 1.35rem; color: var(--pg07-silver); margin-bottom: 14px; max-width: 90%; }
.pg07-hero-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--pg07-gold), var(--pg07-orange));
  color: #1a0f00; padding: 10px 20px; border-radius: 30px;
  font-weight: 800; font-size: 1.4rem; align-self: flex-start;
}
.pg07-hero-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.4); color: #fff; border: none;
  width: 34px; height: 34px; border-radius: 50%; font-size: 1.6rem;
  cursor: pointer; z-index: 2;
}
.pg07-hero-prev { left: 8px; }
.pg07-hero-next { right: 8px; }
.pg07-hero-dots {
  position: absolute; bottom: 10px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 6px; z-index: 2;
}
.pg07-hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer; transition: all .25s;
}
.pg07-hero-dot.pg07-active { background: var(--pg07-gold); width: 22px; border-radius: 4px; }

/* ============ Marquee ============ */
.pg07-marquee {
  background: linear-gradient(90deg, var(--pg07-purple), #2a0d4a);
  color: var(--pg07-gold); font-size: 1.3rem; font-weight: 600;
  padding: 8px 0; overflow: hidden; white-space: nowrap;
}
.pg07-marquee span { display: inline-block; padding-left: 100%; animation: pg07marq 22s linear infinite; }
@keyframes pg07marq { to { transform: translateX(-100%); } }

/* ============ Sections ============ */
.pg07-section { padding: 24px 16px; }
.pg07-section-head { text-align: center; margin-bottom: 18px; }
.pg07-section-head .pg07-eyebrow {
  color: var(--pg07-pink); font-size: 1.25rem; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 700;
}
.pg07-section-head h2 {
  font-size: 2.2rem; color: var(--pg07-text); margin: 6px 0;
  font-weight: 800;
}
.pg07-section-head h2 em { color: var(--pg07-gold); font-style: normal; }
.pg07-section-head p { color: var(--pg07-muted); font-size: 1.35rem; max-width: 380px; margin: 0 auto; }

/* ============ Feature highlights ============ */
.pg07-features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.pg07-feat-card {
  background: linear-gradient(160deg, rgba(75,0,130,.4), rgba(26,19,44,.7));
  border: 1px solid rgba(221,160,221,.15);
  border-radius: 14px; padding: 16px 12px; text-align: center;
}
.pg07-feat-card i { font-size: 2.6rem; color: var(--pg07-gold); margin-bottom: 8px; }
.pg07-feat-card h3 { font-size: 1.4rem; color: #fff; margin-bottom: 4px; }
.pg07-feat-card p { font-size: 1.2rem; color: var(--pg07-muted); line-height: 1.4; }

/* ============ Category tabs ============ */
.pg07-cat-tabs {
  display: flex; gap: 8px; overflow-x: auto; padding: 6px 4px 12px;
  scrollbar-width: none;
}
.pg07-cat-tabs::-webkit-scrollbar { display: none; }
.pg07-cat-tab {
  flex: 0 0 auto; padding: 8px 16px; border-radius: 20px;
  background: rgba(192,192,192,.08); color: var(--pg07-silver);
  font-size: 1.25rem; font-weight: 700; cursor: pointer;
  border: 1px solid transparent; white-space: nowrap;
}
.pg07-cat-tab.pg07-active {
  background: linear-gradient(135deg, var(--pg07-gold), var(--pg07-orange));
  color: #1a0f00; border-color: var(--pg07-gold);
}

/* ============ Game grid ============ */
.pg07-cat-panel { display: none; }
.pg07-cat-panel.pg07-active { display: block; animation: pg07fade .35s ease; }
@keyframes pg07fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.pg07-game-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.pg07-game-card {
  background: linear-gradient(180deg, #1f1640, #120a26);
  border-radius: 12px; overflow: hidden; cursor: pointer;
  border: 1px solid rgba(221,160,221,.12);
  transition: transform .2s, box-shadow .25s; position: relative;
}
.pg07-game-card:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(75,0,130,.5); }
.pg07-game-card .pg07-game-img {
  aspect-ratio: 1 / 1; background: #0c0719; overflow: hidden;
}
.pg07-game-card .pg07-game-img img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .35s;
}
.pg07-game-card:hover .pg07-game-img img { transform: scale(1.08); }
.pg07-game-card .pg07-game-name {
  padding: 7px 6px; font-size: 1.15rem; color: #fff; text-align: center;
  font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pg07-game-card .pg07-play-overlay {
  position: absolute; inset: 0; background: rgba(12,12,12,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.pg07-game-card:hover .pg07-play-overlay { opacity: 1; }
.pg07-play-overlay span {
  background: linear-gradient(135deg, var(--pg07-gold), var(--pg07-orange));
  color: #1a0f00; padding: 6px 14px; border-radius: 20px;
  font-weight: 800; font-size: 1.2rem;
}

/* ============ Featured / promo block ============ */
.pg07-featured {
  background: linear-gradient(135deg, rgba(75,0,130,.6), rgba(255,179,71,.15));
  border: 1px solid rgba(255,215,0,.3);
  border-radius: 16px; padding: 20px 16px; text-align: center;
  position: relative; overflow: hidden;
}
.pg07-featured h3 { font-size: 1.9rem; color: var(--pg07-gold); margin-bottom: 6px; }
.pg07-featured p { color: var(--pg07-silver); font-size: 1.3rem; margin-bottom: 14px; }
.pg07-promo-row {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.pg07-btn-promo {
  background: var(--pg07-pink); color: #1a0f00; padding: 10px 18px;
  border-radius: 30px; font-weight: 800; font-size: 1.35rem; border: none; cursor: pointer;
}
.pg07-btn-outline {
  background: transparent; color: var(--pg07-gold); padding: 10px 18px;
  border-radius: 30px; font-weight: 700; font-size: 1.35rem;
  border: 1px solid var(--pg07-gold); cursor: pointer;
}

/* ============ Long-form SEO content ============ */
.pg07-content {
  background: rgba(26,19,44,.55); border-radius: 14px; padding: 22px 18px;
  border: 1px solid rgba(192,192,192,.1);
}
.pg07-content h3 {
  color: var(--pg07-gold); font-size: 1.8rem; margin: 16px 0 8px;
}
.pg07-content h3:first-child { margin-top: 0; }
.pg07-content p { color: var(--pg07-silver); font-size: 1.35rem; margin-bottom: 10px; line-height: 1.7; }
.pg07-content a { color: var(--pg07-pink); border-bottom: 1px dotted var(--pg07-pink); }
.pg07-content ul { padding-left: 18px; margin-bottom: 10px; }
.pg07-content ul li { color: var(--pg07-silver); font-size: 1.3rem; margin-bottom: 5px; list-style: disc; }

/* ============ FAQ ============ */
.pg07-faq-item {
  background: rgba(26,19,44,.6); border: 1px solid rgba(221,160,221,.12);
  border-radius: 12px; margin-bottom: 10px; overflow: hidden;
}
.pg07-faq-q {
  padding: 14px 16px; cursor: pointer; font-weight: 700; color: #fff;
  display: flex; justify-content: space-between; align-items: center; font-size: 1.4rem;
}
.pg07-faq-q::after { content: "+"; color: var(--pg07-gold); font-size: 1.8rem; transition: transform .25s; }
.pg07-faq-item.pg07-open .pg07-faq-q::after { transform: rotate(45deg); }
.pg07-faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
  padding: 0 16px; color: var(--pg07-muted); font-size: 1.3rem;
}
.pg07-faq-item.pg07-open .pg07-faq-a { max-height: 400px; padding: 0 16px 14px; }

/* ============ Steps / How-to ============ */
.pg07-steps { display: grid; gap: 12px; }
.pg07-step {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(26,19,44,.55); padding: 14px; border-radius: 12px;
  border-left: 4px solid var(--pg07-gold);
}
.pg07-step-num {
  flex: 0 0 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pg07-gold), var(--pg07-orange));
  color: #1a0f00; font-weight: 900; display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem;
}
.pg07-step h4 { color: #fff; font-size: 1.45rem; margin-bottom: 3px; }
.pg07-step p { color: var(--pg07-muted); font-size: 1.25rem; }

/* ============ App download band ============ */
.pg07-app-band {
  background: linear-gradient(135deg, #2a0d4a, #4B0082);
  border-radius: 16px; padding: 22px 16px; text-align: center;
  border: 1px solid rgba(255,215,0,.25);
}
.pg07-app-band h3 { color: var(--pg07-gold); font-size: 1.9rem; margin-bottom: 6px; }
.pg07-app-band p { color: var(--pg07-silver); font-size: 1.3rem; margin-bottom: 14px; }

/* ============ Footer ============ */
.pg07-footer {
  background: linear-gradient(180deg, #0a0518, #000);
  border-top: 1px solid rgba(221,160,221,.15);
  padding: 26px 16px 30px; color: var(--pg07-muted);
}
.pg07-footer h4 { color: var(--pg07-pink); font-size: 1.4rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.pg07-footer a { color: var(--pg07-silver); font-size: 1.25rem; display: block; padding: 4px 0; }
.pg07-footer a:hover { color: var(--pg07-gold); }
.pg07-footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.pg07-footer-bottom {
  text-align: center; padding-top: 14px; border-top: 1px solid rgba(192,192,192,.1);
  font-size: 1.15rem; color: #7e7099;
}
.pg07-disclaimer {
  background: rgba(255,179,71,.08); border: 1px dashed rgba(255,179,71,.3);
  border-radius: 10px; padding: 10px 12px; font-size: 1.15rem; color: var(--pg07-orange);
  margin: 14px 0; text-align: center;
}

/* ============ Bottom nav (mobile only) ============ */
.pg07-bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0;
  max-width: var(--pg07-max); margin: 0 auto;
  background: linear-gradient(180deg, rgba(26,10,46,.97), rgba(12,12,12,.99));
  border-top: 1px solid rgba(255,215,0,.25);
  display: flex; justify-content: space-around; align-items: stretch;
  height: 62px; z-index: 1000; padding: 4px 0;
  box-shadow: 0 -4px 16px rgba(0,0,0,.5);
}
.pg07-bottom-nav button, .pg07-bottom-nav a.pg07-nav-item {
  flex: 1; background: transparent; border: none; color: var(--pg07-silver);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; font-size: 1.05rem; font-weight: 600; cursor: pointer;
  min-width: 60px; min-height: 54px; text-decoration: none; position: relative;
  transition: color .2s, transform .15s;
}
.pg07-bottom-nav button i, .pg07-bottom-nav .pg07-nav-item i { font-size: 2.1rem; }
.pg07-bottom-nav button:active, .pg07-bottom-nav .pg07-nav-item:active { transform: scale(.92); }
.pg07-bottom-nav .pg07-nav-item:hover { color: var(--pg07-gold); }
.pg07-nav-promo {
  background: linear-gradient(135deg, var(--pg07-gold), var(--pg07-orange)) !important;
  color: #1a0f00 !important; border-radius: 50%; width: 52px; height: 52px;
  margin-top: -22px; box-shadow: 0 4px 12px rgba(255,179,71,.5);
  flex: 0 0 52px !important;
}
.pg07-nav-promo i { font-size: 2.3rem; }
.pg07-nav-active { color: var(--pg07-gold) !important; }
.pg07-nav-active::after {
  content: ""; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 18px; height: 2px; background: var(--pg07-gold); border-radius: 2px;
}

/* ============ Back to top + copy tip ============ */
#pg07ToTop {
  position: fixed; right: 14px; bottom: 76px; z-index: 1100;
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pg07-gold), var(--pg07-orange));
  color: #1a0f00; border: none; cursor: pointer; font-size: 1.8rem;
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
}
#pg07ToTop.pg07-show { opacity: 1; pointer-events: auto; }
#pg07CopyTip {
  position: fixed; left: 50%; transform: translate(-50%, 20px);
  bottom: 90px; background: rgba(15,5,28,.95); color: var(--pg07-gold);
  border: 1px solid var(--pg07-gold); padding: 8px 16px; border-radius: 20px;
  font-size: 1.25rem; opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
  z-index: 1200;
}
#pg07CopyTip.pg07-show { opacity: 1; transform: translate(-50%, 0); }

/* ============ Reveal animation ============ */
.pg07-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s, transform .6s; }
.pg07-reveal.pg07-in { opacity: 1; transform: none; }

/* ============ Desktop / tablet ============ */
@media (min-width: 769px) {
  body { background: radial-gradient(circle at 50% 0%, #1d0f33 0%, #0C0C0C 70%); }
  .pg07-wrap, .pg07-header-inner, .pg07-hero, .pg07-bottom-nav { max-width: var(--pg07-max); }
  .pg07-bottom-nav { display: none; }
  .pg07-burger { display: none; }
}
@media (max-width: 768px) {
  main { padding-bottom: 80px; }
  .pg07-btn-login span, .pg07-btn-register span { display: inline; }
}
@media (max-width: 380px) {
  .pg07-hero-track { height: 210px; }
  .pg07-game-grid { grid-template-columns: repeat(2, 1fr); }
  .pg07-section-head h2 { font-size: 1.9rem; }
}
