@charset "UTF-8";
/*!
 * shbeta.click - style-82a9.css
 * Mobile-first gaming site styles. All custom classes use the pg82- prefix.
 * Palette: #141414 bg / #FFFACD light / #26A69A teal / #40E0D0 / #00CED1 accent
 */

:root {
  --pg82-bg: #141414;
  --pg82-bg-2: #1c1c1c;
  --pg82-bg-3: #232323;
  --pg82-card: #1f1f1f;
  --pg82-light: #FFFACD;
  --pg82-teal: #26A69A;
  --pg82-cyan: #40E0D0;
  --pg82-cyan-2: #00CED1;
  --pg82-text: #f3f3f3;
  --pg82-text-dim: #b8b8b8;
  --pg82-gold: #FFD66b;
  --pg82-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
  --pg82-radius: 14px;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: var(--pg82-bg);
  color: var(--pg82-text);
  line-height: 1.55;
  font-size: 15px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--pg82-cyan); text-decoration: none; }
a:hover { color: var(--pg82-cyan-2); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* Layout */
.pg82-wrap { width: 100%; max-width: 430px; margin: 0 auto; position: relative; }
@media (min-width: 769px) {
  .pg82-wrap { max-width: 1100px; }
}
.pg82-container { width: 100%; padding: 0 14px; }
main { display: block; }
@media (max-width: 768px) {
  main { padding-bottom: 88px; }
}

/* ===== Header ===== */
.pg82-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #111 0%, #1a1a1a 100%);
  border-bottom: 1px solid rgba(64, 224, 208, 0.18);
}
.pg82-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; max-width: 1100px; margin: 0 auto;
}
.pg82-logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 20px; color: var(--pg82-light);
  letter-spacing: 0.4px;
}
.pg82-logo-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: linear-gradient(135deg, var(--pg82-teal), var(--pg82-cyan-2));
  display: inline-flex; align-items: center; justify-content: center;
  color: #0a2a28; font-weight: 900;
}
.pg82-logo span.pg82-accent { color: var(--pg82-cyan-2); }
.pg82-header-actions { display: flex; align-items: center; gap: 8px; }
.pg82-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 18px; border-radius: 999px; font-weight: 700; font-size: 14px;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  min-height: 38px; line-height: 1;
}
.pg82-btn:active { transform: scale(0.96); }
.pg82-btn-login {
  background: transparent; color: var(--pg82-light);
  border: 1px solid rgba(255, 250, 205, 0.45);
}
.pg82-btn-login:hover { background: rgba(255, 250, 205, 0.08); }
.pg82-btn-register {
  background: linear-gradient(90deg, var(--pg82-teal), var(--pg82-cyan-2));
  color: #062624; font-weight: 800;
  box-shadow: 0 4px 14px rgba(38, 166, 154, 0.35);
}
.pg82-btn-register:hover { box-shadow: 0 6px 18px rgba(38, 166, 154, 0.55); }
.pg82-menu-btn {
  width: 40px; height: 40px; border-radius: 10px;
  display: none; align-items: center; justify-content: center;
  background: rgba(64, 224, 208, 0.12); color: var(--pg82-cyan); font-size: 22px;
}
@media (max-width: 768px) {
  .pg82-menu-btn { display: inline-flex; }
  .pg82-desktop-nav { display: none; }
}

/* Desktop nav */
.pg82-desktop-nav { display: flex; align-items: center; gap: 18px; }
.pg82-desktop-nav a {
  color: var(--pg82-text-dim); font-size: 14px; font-weight: 600;
  padding: 6px 4px; border-bottom: 2px solid transparent;
}
.pg82-desktop-nav a:hover { color: var(--pg82-cyan); border-bottom-color: var(--pg82-cyan); }

/* ===== Mobile Menu ===== */
.pg82-menu-mask {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6);
  opacity: 0; pointer-events: none; z-index: 9998; transition: opacity 0.25s;
}
.pg82-menu-mask.pg82-mask-show { opacity: 1; pointer-events: auto; }
.pg82-mobile-menu {
  position: fixed; top: 0; right: -82%; width: 78%; height: 100vh;
  background: var(--pg82-bg-2); z-index: 9999;
  transform: translateX(0); transition: right 0.3s ease;
  overflow-y: auto; padding: 22px 18px;
  border-left: 1px solid rgba(64, 224, 208, 0.2);
}
.pg82-mobile-menu.pg82-menu-open { right: 0; }
.pg82-menu-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.pg82-menu-head h3 { color: var(--pg82-light); font-size: 18px; }
.pg82-menu-close { font-size: 26px; color: var(--pg82-text-dim); }
.pg82-mobile-menu ul li { margin: 4px 0; }
.pg82-mobile-menu ul li a {
  display: block; padding: 12px 12px; border-radius: 10px;
  color: var(--pg82-text); font-weight: 600; font-size: 15px;
}
.pg82-mobile-menu ul li a:hover { background: rgba(64, 224, 208, 0.1); color: var(--pg82-cyan); }
.pg82-menu-cta { display: flex; gap: 10px; margin-top: 18px; }
.pg82-menu-cta .pg82-btn { flex: 1; }

/* ===== Hero / Carousel ===== */
.pg82-hero {
  position: relative; overflow: hidden;
  border-radius: 0 0 22px 22px;
  background: radial-gradient(ellipse at top, #1a3835 0%, #0c0c0c 70%);
}
.pg82-hero-track { position: relative; height: 320px; }
@media (min-width: 769px) { .pg82-hero-track { height: 420px; } }
.pg82-hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease;
  display: flex; align-items: center; padding: 24px;
}
.pg82-hero-slide.pg82-slide-active { opacity: 1; }
.pg82-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  filter: brightness(0.45);
}
.pg82-hero-content { position: relative; z-index: 2; max-width: 560px; }
.pg82-hero-tag {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: rgba(64, 224, 208, 0.18); color: var(--pg82-cyan-2);
  font-size: 12px; font-weight: 700; margin-bottom: 12px;
  border: 1px solid rgba(64, 224, 208, 0.3);
}
.pg82-hero-title {
  font-size: 28px; line-height: 1.2; font-weight: 900;
  color: var(--pg82-light); margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
@media (min-width: 769px) { .pg82-hero-title { font-size: 42px; } }
.pg82-hero-title .pg82-hl { color: var(--pg82-cyan-2); }
.pg82-hero-desc { font-size: 14px; color: var(--pg82-text-dim); margin-bottom: 18px; }
.pg82-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.pg82-btn-lg { padding: 12px 26px; font-size: 15px; min-height: 46px; }

.pg82-hero-dots {
  position: absolute; bottom: 14px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 8px; z-index: 3;
}
.pg82-hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255, 250, 205, 0.35); transition: all 0.25s;
  cursor: pointer;
}
.pg82-hero-dot.pg82-dot-active { background: var(--pg82-cyan-2); width: 24px; border-radius: 5px; }

.pg82-hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0, 0, 0, 0.45); color: var(--pg82-light);
  display: flex; align-items: center; justify-content: center; z-index: 3;
  font-size: 18px;
}
.pg82-hero-arrow:hover { background: rgba(64, 224, 208, 0.4); }
.pg82-arrow-prev { left: 10px; }
.pg82-arrow-next { right: 10px; }

/* ===== Section ===== */
.pg82-section { padding: 26px 0; }
.pg82-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.pg82-section-title {
  font-size: 20px; font-weight: 800; color: var(--pg82-light);
  display: flex; align-items: center; gap: 8px;
}
.pg82-section-title i { color: var(--pg82-cyan-2); }
.pg82-section-more {
  font-size: 13px; color: var(--pg82-cyan); font-weight: 600;
}

/* ===== Marquee strip ===== */
.pg82-strip {
  background: linear-gradient(90deg, rgba(38, 166, 154, 0.18), rgba(0, 206, 209, 0.18));
  padding: 9px 14px; border-radius: 10px; margin: 14px 0;
  display: flex; align-items: center; gap: 10px;
  border: 1px solid rgba(64, 224, 208, 0.18);
}
.pg82-strip i { color: var(--pg82-gold); }
.pg82-strip p { font-size: 13px; color: var(--pg82-light); }
.pg82-strip strong { color: var(--pg82-cyan-2); }

/* ===== Game Tabs ===== */
.pg82-tabs {
  display: flex; gap: 8px; overflow-x: auto; padding: 4px 0 12px;
  scrollbar-width: none;
}
.pg82-tabs::-webkit-scrollbar { display: none; }
.pg82-tab {
  flex: 0 0 auto; padding: 8px 16px; border-radius: 999px;
  background: var(--pg82-bg-3); color: var(--pg82-text-dim);
  font-size: 13px; font-weight: 700; white-space: nowrap;
  border: 1px solid transparent;
}
.pg82-tab.pg82-tab-active {
  background: linear-gradient(90deg, var(--pg82-teal), var(--pg82-cyan-2));
  color: #062624;
}

/* ===== Game Grid ===== */
.pg82-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
@media (min-width: 540px) { .pg82-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 769px) { .pg82-grid { grid-template-columns: repeat(6, 1fr); } }
.pg82-card {
  background: var(--pg82-card); border-radius: 12px; overflow: hidden;
  position: relative; transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.pg82-card:hover { transform: translateY(-3px); box-shadow: var(--pg82-shadow); }
.pg82-card-img {
  position: relative; aspect-ratio: 1 / 1; background: #0e0e0e; overflow: hidden;
}
.pg82-card-img img { width: 100%; height: 100%; object-fit: cover; }
.pg82-card-overlay {
  position: absolute; inset: 0; background: rgba(0, 0, 0, 0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s;
}
.pg82-card:hover .pg82-card-overlay { opacity: 1; }
.pg82-play-btn {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pg82-teal), var(--pg82-cyan-2));
  color: #062624; font-size: 18px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.pg82-card-name {
  padding: 7px 8px; font-size: 12px; font-weight: 600;
  color: var(--pg82-text); text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.pg82-card-tag {
  position: absolute; top: 6px; left: 6px; z-index: 2;
  background: rgba(255, 80, 80, 0.92); color: #fff;
  font-size: 10px; font-weight: 700; padding: 3px 7px; border-radius: 6px;
}
.pg82-card-tag.pg82-tag-hot { background: linear-gradient(90deg, #ff5e62, #ff9966); }
.pg82-card-tag.pg82-tag-new { background: linear-gradient(90deg, #26A69A, #00CED1); color: #062624; }

/* Tab panels */
.pg82-tab-panel { display: none; }
.pg82-tab-panel.pg82-panel-active { display: block; animation: pg82fade 0.4s ease; }
@keyframes pg82fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Featured Banner ===== */
.pg82-feature {
  background: linear-gradient(135deg, #10302e 0%, #1a1a1a 60%);
  border-radius: 16px; padding: 20px; display: flex; gap: 16px; align-items: center;
  border: 1px solid rgba(64, 224, 208, 0.22); margin-bottom: 14px;
}
.pg82-feature-icon {
  flex: 0 0 70px; width: 70px; height: 70px; border-radius: 14px;
  background: linear-gradient(135deg, var(--pg82-teal), var(--pg82-cyan-2));
  display: flex; align-items: center; justify-content: center; font-size: 32px; color: #062624;
}
.pg82-feature-text h3 { font-size: 16px; color: var(--pg82-light); margin-bottom: 6px; }
.pg82-feature-text p { font-size: 13px; color: var(--pg82-text-dim); }
.pg82-feature-text .pg82-btn { margin-top: 10px; }

/* ===== Promo Cards ===== */
.pg82-promo-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
}
@media (min-width: 600px) { .pg82-promo-grid { grid-template-columns: repeat(2, 1fr); } }
.pg82-promo-card {
  background: var(--pg82-card); border-radius: 14px; padding: 16px;
  border: 1px solid rgba(64, 224, 208, 0.16);
  display: flex; flex-direction: column; gap: 10px;
}
.pg82-promo-card h4 {
  font-size: 16px; color: var(--pg82-light); display: flex; align-items: center; gap: 8px;
}
.pg82-promo-card h4 i { color: var(--pg82-gold); }
.pg82-promo-card p { font-size: 13px; color: var(--pg82-text-dim); }
.pg82-promo-card .pg82-btn { align-self: flex-start; margin-top: 4px; }

/* ===== VIP Table ===== */
.pg82-vip-table { width: 100%; border-collapse: collapse; margin-top: 12px; }
.pg82-vip-table th, .pg82-vip-table td {
  padding: 10px 12px; text-align: left; font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.pg82-vip-table th { color: var(--pg82-cyan-2); font-weight: 700; background: var(--pg82-bg-3); }
.pg82-vip-table td { color: var(--pg82-text-dim); }
.pg82-vip-table tr:hover td { color: var(--pg82-light); }

/* ===== SEO long text ===== */
.pg82-seo {
  background: var(--pg82-bg-2); border-radius: 14px; padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.pg82-seo h3 { color: var(--pg82-light); font-size: 18px; margin: 16px 0 10px; }
.pg82-seo h3:first-child { margin-top: 0; }
.pg82-seo p { color: var(--pg82-text-dim); font-size: 14px; margin-bottom: 12px; }
.pg82-seo a { color: var(--pg82-cyan); border-bottom: 1px dashed rgba(64, 224, 208, 0.4); }
.pg82-seo ul { padding-left: 18px; margin-bottom: 12px; }
.pg82-seo ul li { color: var(--pg82-text-dim); font-size: 14px; margin-bottom: 6px; list-style: disc; }

/* ===== FAQ ===== */
.pg82-faq-item {
  background: var(--pg82-card); border-radius: 12px; margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05); overflow: hidden;
}
.pg82-faq-q {
  padding: 14px 16px; display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; color: var(--pg82-light); font-size: 14px; width: 100%; text-align: left;
}
.pg82-faq-q i { color: var(--pg82-cyan-2); transition: transform 0.25s; }
.pg82-faq-item.pg82-faq-open .pg82-faq-q i { transform: rotate(45deg); }
.pg82-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  padding: 0 16px; color: var(--pg82-text-dim); font-size: 13px;
}
.pg82-faq-item.pg82-faq-open .pg82-faq-a { max-height: 400px; padding: 0 16px 14px; }

/* ===== Partners ===== */
.pg82-partners {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center;
  padding: 16px 0;
}
.pg82-partners img {
  width: 78px; height: auto; opacity: 0.85; filter: grayscale(0.2);
  transition: opacity 0.2s;
}
.pg82-partners img:hover { opacity: 1; }

/* ===== Footer ===== */
.pg82-footer {
  background: #0d0d0d; border-top: 1px solid rgba(64, 224, 208, 0.15);
  padding: 26px 14px 18px;
}
.pg82-footer-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 600px) { .pg82-footer-grid { grid-template-columns: repeat(4, 1fr); } }
.pg82-footer-col h4 { color: var(--pg82-light); font-size: 14px; margin-bottom: 10px; font-weight: 700; }
.pg82-footer-col ul li { margin-bottom: 7px; }
.pg82-footer-col a { color: var(--pg82-text-dim); font-size: 13px; }
.pg82-footer-col a:hover { color: var(--pg82-cyan); }
.pg82-footer-desc { color: var(--pg82-text-dim); font-size: 13px; line-height: 1.6; }
.pg82-footer-bottom {
  max-width: 1100px; margin: 18px auto 0; padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center; color: var(--pg82-text-dim); font-size: 12px;
}
.pg82-footer-bottom p { margin: 4px 0; }

/* ===== Bottom Nav (mobile only) ===== */
.pg82-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: 62px; background: rgba(15, 15, 15, 0.97);
  border-top: 1px solid rgba(64, 224, 208, 0.22);
  display: flex; justify-content: space-around; align-items: stretch;
  z-index: 1000; backdrop-filter: blur(10px);
}
.pg82-navbtn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--pg82-text-dim); font-size: 11px; font-weight: 600; gap: 3px;
  position: relative; min-width: 60px; min-height: 60px;
  transition: color 0.2s;
}
.pg82-navbtn i { font-size: 22px; }
.pg82-navbtn.pg82-navbtn-active { color: var(--pg82-cyan-2); }
.pg82-navbtn.pg82-navbtn-active::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 30px; height: 3px; border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--pg82-teal), var(--pg82-cyan-2));
}
.pg82-navbtn-promo {
  background: linear-gradient(180deg, var(--pg82-teal), #0c3a37);
  color: var(--pg82-light);
}
.pg82-navbtn-promo i { font-size: 24px; }
@media (min-width: 769px) { .pg82-bottom-nav { display: none; } }

/* ===== Scroll-to-top ===== */
.pg82-top-btn {
  position: fixed; right: 14px; bottom: 78px; width: 42px; height: 42px;
  border-radius: 50%; background: linear-gradient(135deg, var(--pg82-teal), var(--pg82-cyan-2));
  color: #062624; display: flex; align-items: center; justify-content: center;
  font-size: 20px; opacity: 0; pointer-events: none; transition: opacity 0.25s; z-index: 900;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}
.pg82-top-btn.pg82-top-show { opacity: 1; pointer-events: auto; }
@media (min-width: 769px) { .pg82-top-btn { bottom: 24px; } }

/* ===== Utility ===== */
.pg82-text-center { text-align: center; }
.pg82-mt-16 { margin-top: 16px; }
.pg82-mt-24 { margin-top: 24px; }
.pg82-mb-12 { margin-bottom: 12px; }
.pg82-hidden { display: none !important; }
.pg82-anchor { display: block; position: relative; top: -70px; visibility: hidden; }

/* Breadcrumb */
.pg82-crumb {
  font-size: 12px; color: var(--pg82-text-dim); padding: 10px 0;
}
.pg82-crumb a { color: var(--pg82-cyan); }
