/* table plus - theme-bc9b.css
 * All classes use g9b2- prefix. Mobile-first responsive design.
 * Color palette: #34495E | #00FF00 | #DA70D6 | #32CD32 | #8A2BE2
 */

:root {
  --g9b2-bg: #34495E;
  --g9b2-bg-2: #2a3a4d;
  --g9b2-bg-3: #1f2c3b;
  --g9b2-primary: #00FF00;
  --g9b2-accent: #DA70D6;
  --g9b2-green: #32CD32;
  --g9b2-purple: #8A2BE2;
  --g9b2-text: #f5fff5;
  --g9b2-text-dim: #b9c6cf;
  --g9b2-card: #3d5167;
  --g9b2-border: #4b6178;
  --g9b2-gold: #ffd86b;
  --g9b2-radius: 14px;
  --g9b2-shadow: 0 6px 24px rgba(0,0,0,.35);
  --g9b2-maxw: 430px;
}

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

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

body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(180deg, var(--g9b2-bg) 0%, var(--g9b2-bg-3) 100%);
  color: var(--g9b2-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: var(--g9b2-primary); text-decoration: none; }
a:hover { color: var(--g9b2-accent); }

.g9b2-container { width: 100%; max-width: var(--g9b2-maxw); margin: 0 auto; padding: 0 1.2rem; }
.g9b2-wrapper { width: 100%; max-width: var(--g9b2-maxw); margin: 0 auto; }

/* ===== Header ===== */
.g9b2-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(90deg, var(--g9b2-bg-3), var(--g9b2-bg-2));
  border-bottom: 2px solid var(--g9b2-primary);
  box-shadow: 0 2px 14px rgba(0,0,0,.4);
}
.g9b2-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 6rem; padding: 0 1.2rem; max-width: 1100px; margin: 0 auto;
}
.g9b2-logo { display: flex; align-items: center; gap: .8rem; }
.g9b2-logo img { width: 3rem; height: 3rem; border-radius: 8px; }
.g9b2-logo-text { font-size: 1.8rem; font-weight: 800; color: var(--g9b2-primary); letter-spacing: .3px; }
.g9b2-logo-text span { color: var(--g9b2-accent); }

.g9b2-header-actions { display: flex; align-items: center; gap: .8rem; }
.g9b2-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .9rem 1.6rem; border-radius: 999px; font-size: 1.35rem; font-weight: 700;
  cursor: pointer; border: none; transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  min-height: 3.6rem; line-height: 1; white-space: nowrap;
}
.g9b2-btn:active { transform: scale(.96); }
.g9b2-btn-primary { background: linear-gradient(135deg, var(--g9b2-primary), var(--g9b2-green)); color: #0a2a0a; box-shadow: 0 4px 14px rgba(0,255,0,.35); }
.g9b2-btn-primary:hover { filter: brightness(1.08); color: #0a2a0a; }
.g9b2-btn-ghost { background: transparent; color: var(--g9b2-primary); border: 2px solid var(--g9b2-primary); }
.g9b2-btn-ghost:hover { background: rgba(0,255,0,.12); color: var(--g9b2-primary); }
.g9b2-btn-accent { background: linear-gradient(135deg, var(--g9b2-accent), var(--g9b2-purple)); color: #fff; box-shadow: 0 4px 14px rgba(138,43,226,.35); }
.g9b2-btn-accent:hover { filter: brightness(1.08); color: #fff; }

.g9b2-menu-btn {
  background: transparent; border: none; color: var(--g9b2-text); font-size: 2.2rem; cursor: pointer;
  width: 3.6rem; height: 3.6rem; border-radius: 10px; display: none; align-items: center; justify-content: center;
}
.g9b2-menu-btn:hover { background: rgba(255,255,255,.08); }

/* ===== Mobile Menu Drawer ===== */
.g9b2-mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: 80%; max-width: 320px;
  background: var(--g9b2-bg-3); z-index: 9999; padding: 2.4rem 1.6rem; overflow-y: auto;
  transform: translateX(100%); transition: transform .28s ease; box-shadow: -6px 0 30px rgba(0,0,0,.5);
}
.g9b2-mobile-menu.g9b2-menu-open { transform: translateX(0); }
.g9b2-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.6rem; }
.g9b2-menu-head h3 { color: var(--g9b2-primary); font-size: 1.8rem; }
.g9b2-menu-close { background: none; border: none; color: var(--g9b2-text); font-size: 2.4rem; cursor: pointer; }
.g9b2-mobile-menu nav a {
  display: block; padding: 1.1rem 1rem; border-bottom: 1px solid var(--g9b2-border);
  color: var(--g9b2-text); font-size: 1.45rem; font-weight: 600;
}
.g9b2-mobile-menu nav a:hover { color: var(--g9b2-primary); padding-left: 1.4rem; }

/* ===== Main Layout ===== */
.g9b2-main { padding-top: 6rem; }
@media (max-width: 768px) { .g9b2-main { padding-bottom: 8rem; } }

/* ===== Hero / Carousel ===== */
.g9b2-hero { padding: 1.6rem 0 .4rem; }
.g9b2-carousel { position: relative; border-radius: var(--g9b2-radius); overflow: hidden; box-shadow: var(--g9b2-shadow); }
.g9b2-slide {
  position: relative; display: none; cursor: pointer; height: 19rem;
}
.g9b2-slide.g9b2-active { display: block; }
.g9b2-slide img { width: 100%; height: 100%; object-fit: cover; }
.g9b2-slide-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.78) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem;
}
.g9b2-slide-title { font-size: 1.7rem; font-weight: 800; color: #fff; margin-bottom: .5rem; text-shadow: 0 2px 6px rgba(0,0,0,.6); }
.g9b2-slide-cta { color: var(--g9b2-primary); font-weight: 700; font-size: 1.3rem; }
.g9b2-dots { position: absolute; bottom: 10px; left: 0; right: 0; display: flex; justify-content: center; gap: .6rem; }
.g9b2-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; transition: background .2s; }
.g9b2-dot.g9b2-active { background: var(--g9b2-primary); width: 22px; border-radius: 4px; }

/* ===== Section ===== */
.g9b2-section { padding: 2rem 0; }
.g9b2-section-title {
  font-size: 1.8rem; font-weight: 800; color: var(--g9b2-primary); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .6rem; border-left: 4px solid var(--g9b2-accent); padding-left: .9rem;
}
.g9b2-section-title i { font-size: 2rem; color: var(--g9b2-accent); }
.g9b2-section-sub { color: var(--g9b2-text-dim); font-size: 1.35rem; margin-bottom: 1.4rem; }

.g9b2-h1 {
  font-size: 2rem; font-weight: 900; line-height: 1.35; color: #fff; margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--g9b2-primary), var(--g9b2-accent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* ===== Game Grid ===== */
.g9b2-cat-head {
  display: flex; align-items: center; justify-content: space-between; margin: 2.2rem 0 1rem;
}
.g9b2-cat-head h2 { font-size: 1.6rem; color: var(--g9b2-primary); font-weight: 800; display: flex; align-items: center; gap: .5rem; }
.g9b2-cat-head h2 i { color: var(--g9b2-accent); }
.g9b2-cat-badge { font-size: 1.15rem; color: var(--g9b2-text-dim); background: var(--g9b2-card); padding: .3rem .9rem; border-radius: 999px; }

.g9b2-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem;
}
.g9b2-game {
  background: var(--g9b2-card); border: 1px solid var(--g9b2-border); border-radius: 12px;
  overflow: hidden; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  display: flex; flex-direction: column;
}
.g9b2-game:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,.45); border-color: var(--g9b2-primary); }
.g9b2-game:active { transform: scale(.97); }
.g9b2-game-img { aspect-ratio: 1/1; width: 100%; background: var(--g9b2-bg-2); }
.g9b2-game-img img { width: 100%; height: 100%; object-fit: cover; }
.g9b2-game-name {
  font-size: 1.15rem; font-weight: 600; color: var(--g9b2-text); padding: .6rem .5rem; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ===== Cards / Feature blocks ===== */
.g9b2-card {
  background: var(--g9b2-card); border: 1px solid var(--g9b2-border); border-radius: var(--g9b2-radius);
  padding: 1.6rem; box-shadow: var(--g9b2-shadow); margin-bottom: 1.2rem;
}
.g9b2-card h3 { color: var(--g9b2-primary); font-size: 1.5rem; margin-bottom: .7rem; display: flex; align-items: center; gap: .5rem; }
.g9b2-card h3 i { color: var(--g9b2-accent); }
.g9b2-card p { color: var(--g9b2-text-dim); font-size: 1.3rem; margin-bottom: .6rem; }

.g9b2-features { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.g9b2-feature {
  background: var(--g9b2-card); border-radius: 12px; padding: 1.4rem; border-left: 4px solid var(--g9b2-primary);
}
.g9b2-feature h4 { color: var(--g9b2-accent); font-size: 1.4rem; margin-bottom: .5rem; }
.g9b2-feature p { color: var(--g9b2-text-dim); font-size: 1.3rem; }

.g9b2-faq-item {
  background: var(--g9b2-card); border-radius: 10px; margin-bottom: .8rem; padding: 1.2rem 1.4rem;
  border: 1px solid var(--g9b2-border);
}
.g9b2-faq-item h4 { color: var(--g9b2-primary); font-size: 1.35rem; margin-bottom: .4rem; }
.g9b2-faq-item p { color: var(--g9b2-text-dim); font-size: 1.25rem; }

.g9b2-rtp-row {
  display: flex; justify-content: space-between; align-items: center; padding: .8rem 0;
  border-bottom: 1px dashed var(--g9b2-border); font-size: 1.3rem;
}
.g9b2-rtp-row:last-child { border-bottom: none; }
.g9b2-rtp-name { color: var(--g9b2-text); }
.g9b2-rtp-val { color: var(--g9b2-primary); font-weight: 800; }

.g9b2-testi { background: var(--g9b2-card); border-radius: 12px; padding: 1.4rem; margin-bottom: .9rem; border-left: 3px solid var(--g9b2-accent); }
.g9b2-testi-head { display: flex; align-items: center; gap: .8rem; margin-bottom: .5rem; }
.g9b2-testi-avatar { width: 3.2rem; height: 3.2rem; border-radius: 50%; background: var(--g9b2-purple); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; }
.g9b2-testi-name { font-weight: 700; color: var(--g9b2-primary); font-size: 1.3rem; }
.g9b2-testi-stars { color: var(--g9b2-gold); font-size: 1.1rem; }
.g9b2-testi p { color: var(--g9b2-text-dim); font-size: 1.25rem; }

.g9b2-winners { display: flex; flex-direction: column; gap: .6rem; }
.g9b2-winner { display: flex; justify-content: space-between; padding: .9rem 1.1rem; background: var(--g9b2-card); border-radius: 10px; font-size: 1.25rem; }
.g9b2-winner-name { color: var(--g9b2-accent); font-weight: 700; }
.g9b2-winner-amount { color: var(--g9b2-gold); font-weight: 800; }

.g9b2-pay-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; }
.g9b2-pay-item { background: var(--g9b2-card); border-radius: 10px; padding: 1rem .5rem; text-align: center; border: 1px solid var(--g9b2-border); }
.g9b2-pay-item i { font-size: 2.2rem; color: var(--g9b2-primary); }
.g9b2-pay-item span { display: block; margin-top: .4rem; font-size: 1.1rem; color: var(--g9b2-text-dim); }

.g9b2-cta-banner {
  background: linear-gradient(135deg, var(--g9b2-purple), var(--g9b2-accent));
  border-radius: var(--g9b2-radius); padding: 1.8rem 1.4rem; text-align: center; color: #fff;
  box-shadow: var(--g9b2-shadow); margin: 1.4rem 0;
}
.g9b2-cta-banner h3 { font-size: 1.7rem; margin-bottom: .6rem; }
.g9b2-cta-banner p { font-size: 1.25rem; opacity: .9; margin-bottom: 1rem; }

.g9b2-prose { font-size: 1.3rem; color: var(--g9b2-text-dim); line-height: 1.55; margin-bottom: 1rem; }
.g9b2-prose a { font-weight: 600; border-bottom: 1px dashed currentColor; }

/* ===== Footer ===== */
.g9b2-footer { background: var(--g9b2-bg-3); border-top: 2px solid var(--g9b2-primary); padding: 2.2rem 0 1.4rem; margin-top: 1rem; }
.g9b2-footer-links { display: grid; grid-template-columns: repeat(2,1fr); gap: .6rem .9rem; margin-bottom: 1.4rem; }
.g9b2-footer-links a { color: var(--g9b2-text-dim); font-size: 1.2rem; }
.g9b2-footer-links a:hover { color: var(--g9b2-primary); }
.g9b2-footer-promo { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.2rem; justify-content: center; }
.g9b2-footer-promo .g9b2-btn { font-size: 1.2rem; padding: .7rem 1.2rem; }
.g9b2-footer-copy { text-align: center; color: var(--g9b2-text-dim); font-size: 1.15rem; border-top: 1px solid var(--g9b2-border); padding-top: 1rem; }

/* ===== Mobile Bottom Nav ===== */
.g9b2-bnav {
  position: fixed; bottom: 0; left: 0; right: 0; height: 6rem; z-index: 1000;
  background: linear-gradient(180deg, var(--g9b2-bg-2), var(--g9b2-bg-3));
  border-top: 2px solid var(--g9b2-primary);
  display: flex; justify-content: space-around; align-items: stretch;
  box-shadow: 0 -4px 18px rgba(0,0,0,.45);
}
.g9b2-bnav-btn {
  flex: 1; min-width: 6rem; min-height: 6rem; background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .2rem;
  color: var(--g9b2-text-dim); font-size: 1rem; transition: color .15s ease, transform .15s ease;
  padding: .3rem;
}
.g9b2-bnav-btn i, .g9b2-bnav-btn .material-icons-outlined, .g9b2-bnav-btn ion-icon {
  font-size: 2.4rem; transition: transform .2s ease;
}
.g9b2-bnav-btn:hover { color: var(--g9b2-primary); }
.g9b2-bnav-btn:active { transform: scale(.9); }
.g9b2-bnav-btn:hover i, .g9b2-bnav-btn:hover .material-icons-outlined, .g9b2-bnav-btn:hover ion-icon { transform: translateY(-2px); }
.g9b2-bnav-active { color: var(--g9b2-primary); }
.g9b2-bnav-active i { color: var(--g9b2-accent); }
.g9b2-bnav-promo { color: var(--g9b2-primary); font-weight: 700; }

/* ===== Reveal animation ===== */
.g9b2-reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.g9b2-reveal.g9b2-visible { opacity: 1; transform: translateY(0); }

/* ===== Desktop styles ===== */
@media (min-width: 769px) {
  .g9b2-bnav { display: none; }
  .g9b2-menu-btn { display: none; }
  .g9b2-desktop-nav { display: flex; gap: 1.2rem; align-items: center; }
  .g9b2-desktop-nav a { color: var(--g9b2-text); font-size: 1.3rem; font-weight: 600; }
  .g9b2-desktop-nav a:hover { color: var(--g9b2-primary); }
  .g9b2-container, .g9b2-wrapper { max-width: 760px; }
  .g9b2-grid { grid-template-columns: repeat(6, 1fr); }
  .g9b2-features { grid-template-columns: repeat(2,1fr); }
  .g9b2-footer-links { grid-template-columns: repeat(4,1fr); }
  .g9b2-slide { height: 26rem; }
  .g9b2-h1 { font-size: 2.6rem; }
}
@media (max-width: 768px) {
  .g9b2-desktop-nav { display: none; }
}
