/**
 * Big Bunny PH - Layout Stylesheet
 * Prefix: pg96-
 * Color Palette: #495057 | #B0E0E6 | #ADD8E6 | #D4AF37 | #3A3A3A | #F0F8FF
 */

/* ===== CSS Variables ===== */
:root {
  --pg96-dark: #3A3A3A;
  --pg96-darker: #495057;
  --pg96-light-blue: #B0E0E6;
  --pg96-pale-blue: #ADD8E6;
  --pg96-gold: #D4AF37;
  --pg96-snow: #F0F8FF;
  --pg96-white: #FFFFFF;
  --pg96-radius: 10px;
  --pg96-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  --pg96-transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--pg96-snow);
  color: var(--pg96-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ===== Header ===== */
.pg96-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(135deg, var(--pg96-darker) 0%, var(--pg96-dark) 100%);
  padding: 0 16px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}
.pg96-header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--pg96-gold);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.pg96-header-logo img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}
.pg96-header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.pg96-btn-register, .pg96-btn-login {
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  border: none;
  transition: var(--pg96-transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pg96-btn-register {
  background: linear-gradient(135deg, var(--pg96-gold), #e8c94a);
  color: var(--pg96-dark);
  box-shadow: 0 3px 12px rgba(212, 175, 55, 0.4);
}
.pg96-btn-register:hover { transform: translateY(-2px); box-shadow: 0 5px 18px rgba(212, 175, 55, 0.6); }
.pg96-btn-login {
  background: transparent;
  color: var(--pg96-light-blue);
  border: 2px solid var(--pg96-light-blue);
}
.pg96-btn-login:hover { background: var(--pg96-light-blue); color: var(--pg96-dark); }
.pg96-menu-toggle {
  background: none;
  border: none;
  color: var(--pg96-light-blue);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
  display: none;
}

/* ===== Side Menu ===== */
.pg96-side-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: var(--pg96-dark);
  z-index: 9999;
  transition: left 0.35s ease;
  overflow-y: auto;
  padding: 80px 0 30px;
}
.pg96-side-menu.pg96-menu-open { left: 0; }
.pg96-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  display: none;
}
.pg96-menu-overlay.pg96-overlay-active { display: block; }
.pg96-side-menu a {
  display: block;
  padding: 14px 24px;
  color: var(--pg96-snow);
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--pg96-transition);
}
.pg96-side-menu a:hover, .pg96-side-menu a:focus {
  background: rgba(176, 224, 230, 0.12);
  color: var(--pg96-gold);
  padding-left: 30px;
}
.pg96-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--pg96-snow);
  font-size: 24px;
  cursor: pointer;
}

/* ===== Main Content ===== */
.pg96-main {
  margin-top: 60px;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .pg96-main { padding-bottom: 80px; }
}

/* ===== Hero Banner ===== */
.pg96-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--pg96-darker), var(--pg96-dark));
}
.pg96-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.pg96-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
  max-width: 600px;
}
.pg96-hero-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--pg96-gold);
  margin-bottom: 12px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.pg96-hero-subtitle {
  font-size: 16px;
  color: var(--pg96-light-blue);
  margin-bottom: 24px;
  line-height: 1.5;
}
.pg96-hero-cta {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--pg96-gold), #e8c94a);
  color: var(--pg96-dark);
  font-weight: 800;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  transition: var(--pg96-transition);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.5);
}
.pg96-hero-cta:hover { transform: scale(1.05); box-shadow: 0 6px 30px rgba(212, 175, 55, 0.7); }

/* ===== Sections ===== */
.pg96-section {
  padding: 40px 16px;
  max-width: 480px;
  margin: 0 auto;
}
.pg96-section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--pg96-darker);
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 12px;
}
.pg96-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--pg96-gold);
  border-radius: 2px;
}
.pg96-section-desc {
  color: #666;
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* ===== Game Tabs ===== */
.pg96-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}
.pg96-tab-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 2px solid var(--pg96-pale-blue);
  background: transparent;
  color: var(--pg96-darker);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--pg96-transition);
}
.pg96-tab-btn.pg96-tab-active {
  background: var(--pg96-darker);
  color: var(--pg96-gold);
  border-color: var(--pg96-darker);
}

/* ===== Game Grid ===== */
.pg96-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.pg96-game-card {
  background: var(--pg96-white);
  border-radius: var(--pg96-radius);
  overflow: hidden;
  cursor: pointer;
  transition: var(--pg96-transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.pg96-game-card:hover { transform: translateY(-3px); box-shadow: var(--pg96-shadow); }
.pg96-game-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.pg96-game-card p {
  font-size: 11px;
  text-align: center;
  padding: 6px 4px;
  font-weight: 600;
  color: var(--pg96-darker);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Promo Banner ===== */
.pg96-promo-card {
  background: linear-gradient(135deg, var(--pg96-darker), #5a6270);
  border-radius: var(--pg96-radius);
  padding: 24px;
  margin-bottom: 16px;
  color: var(--pg96-snow);
  position: relative;
  overflow: hidden;
}
.pg96-promo-card::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 100px; height: 100px;
  background: var(--pg96-gold);
  opacity: 0.1;
  border-radius: 50%;
}
.pg96-promo-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--pg96-gold);
  margin-bottom: 8px;
}
.pg96-promo-text { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.pg96-promo-btn {
  display: inline-block;
  padding: 10px 28px;
  background: var(--pg96-gold);
  color: var(--pg96-dark);
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: var(--pg96-transition);
}
.pg96-promo-btn:hover { background: #e8c94a; transform: scale(1.03); }

/* ===== Feature Cards ===== */
.pg96-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pg96-feature-card {
  background: var(--pg96-white);
  border-radius: var(--pg96-radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: var(--pg96-transition);
}
.pg96-feature-card:hover { transform: translateY(-2px); box-shadow: var(--pg96-shadow); }
.pg96-feature-icon {
  width: 48px; height: 48px;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, var(--pg96-light-blue), var(--pg96-pale-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--pg96-darker);
}
.pg96-feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--pg96-darker); }
.pg96-feature-card p { font-size: 12px; color: #777; line-height: 1.5; }

/* ===== FAQ ===== */
.pg96-faq-item {
  background: var(--pg96-white);
  border-radius: var(--pg96-radius);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.pg96-faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  color: var(--pg96-darker);
  transition: var(--pg96-transition);
}
.pg96-faq-header:hover { color: var(--pg96-gold); }
.pg96-faq-icon { transition: transform 0.3s ease; font-size: 14px; color: var(--pg96-gold); }
.pg96-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 20px;
}
.pg96-faq-content-inner {
  padding-bottom: 16px;
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}

/* ===== Winners ===== */
.pg96-winner-list { display: flex; flex-direction: column; gap: 10px; }
.pg96-winner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--pg96-white);
  border-radius: var(--pg96-radius);
  padding: 12px 16px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.pg96-winner-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pg96-gold), #e8c94a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--pg96-dark);
  font-size: 16px;
}
.pg96-winner-info { flex: 1; }
.pg96-winner-name { font-weight: 700; font-size: 14px; color: var(--pg96-darker); }
.pg96-winner-game { font-size: 12px; color: #888; }
.pg96-winner-amount { font-weight: 800; color: var(--pg96-gold); font-size: 16px; }

/* ===== Testimonials ===== */
.pg96-testimonial {
  background: var(--pg96-white);
  border-radius: var(--pg96-radius);
  padding: 20px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--pg96-gold);
}
.pg96-testimonial-text { font-size: 14px; color: #555; line-height: 1.7; font-style: italic; margin-bottom: 12px; }
.pg96-testimonial-author { font-weight: 700; font-size: 13px; color: var(--pg96-darker); }
.pg96-testimonial-stars { color: var(--pg96-gold); font-size: 13px; margin-bottom: 8px; }

/* ===== Payment Methods ===== */
.pg96-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.pg96-payment-item {
  background: var(--pg96-white);
  border-radius: 8px;
  padding: 12px 18px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-size: 13px;
  font-weight: 600;
  color: var(--pg96-darker);
  min-width: 80px;
}

/* ===== Footer ===== */
.pg96-footer {
  background: var(--pg96-dark);
  color: var(--pg96-snow);
  padding: 40px 16px 20px;
}
.pg96-footer-inner { max-width: 480px; margin: 0 auto; }
.pg96-footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--pg96-gold);
  margin-bottom: 16px;
}
.pg96-footer-desc { font-size: 13px; color: #aaa; line-height: 1.6; margin-bottom: 20px; }
.pg96-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 24px;
}
.pg96-footer-links a { font-size: 13px; color: var(--pg96-light-blue); transition: var(--pg96-transition); }
.pg96-footer-links a:hover { color: var(--pg96-gold); }
.pg96-footer-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}
.pg96-footer-partners span {
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 11px;
  color: #bbb;
}
.pg96-footer-copy { text-align: center; font-size: 12px; color: #777; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.08); }

/* ===== Bottom Navigation ===== */
.pg96-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--pg96-dark);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 62px;
  box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}
.pg96-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 60px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 10px;
  cursor: pointer;
  transition: var(--pg96-transition);
  padding: 4px;
  gap: 3px;
}
.pg96-bottom-nav-btn i,
.pg96-bottom-nav-btn span.material-symbols-outlined,
.pg96-bottom-nav-btn ion-icon,
.pg96-bottom-nav-btn .bi {
  font-size: 24px;
  transition: var(--pg96-transition);
}
.pg96-bottom-nav-btn:hover,
.pg96-bottom-nav-btn.pg96-nav-active {
  color: var(--pg96-gold);
}
.pg96-bottom-nav-btn:hover i,
.pg96-bottom-nav-btn:hover span.material-symbols-outlined,
.pg96-bottom-nav-btn:hover ion-icon,
.pg96-bottom-nav-btn:hover .bi,
.pg96-bottom-nav-btn.pg96-nav-active i,
.pg96-bottom-nav-btn.pg96-nav-active span.material-symbols-outlined,
.pg96-bottom-nav-btn.pg96-nav-active ion-icon,
.pg96-bottom-nav-btn.pg96-nav-active .bi {
  color: var(--pg96-gold);
  transform: scale(1.15);
}
.pg96-bottom-nav-label { font-weight: 600; }

/* ===== Scroll to Top ===== */
.pg96-scroll-top {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pg96-gold);
  color: var(--pg96-dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
  transition: var(--pg96-transition);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
.pg96-scroll-top.pg96-scroll-visible { opacity: 1; visibility: visible; }
.pg96-scroll-top:hover { transform: translateY(-3px); }

/* ===== CTA Inline ===== */
.pg96-inline-cta {
  display: inline-block;
  color: var(--pg96-gold);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  transition: var(--pg96-transition);
}
.pg96-inline-cta:hover { color: #e8c94a; }

/* ===== Help Page Styles ===== */
.pg96-help-content {
  background: var(--pg96-white);
  border-radius: var(--pg96-radius);
  padding: 28px 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.pg96-help-content h2 {
  font-size: 20px;
  color: var(--pg96-darker);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--pg96-gold);
}
.pg96-help-content h3 {
  font-size: 17px;
  color: var(--pg96-darker);
  margin: 18px 0 8px;
}
.pg96-help-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}
.pg96-help-content ul, .pg96-help-content ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.pg96-help-content li {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 6px;
  list-style: disc;
}
.pg96-help-content ol li { list-style: decimal; }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .pg96-menu-toggle { display: block; }
  .pg96-header-actions { gap: 6px; }
  .pg96-btn-register, .pg96-btn-login { padding: 7px 14px; font-size: 12px; }
  .pg96-hero-title { font-size: 26px; }
  .pg96-hero-subtitle { font-size: 14px; }
  .pg96-section-title { font-size: 20px; }
  .pg96-game-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
}
@media (min-width: 769px) {
  .pg96-bottom-nav { display: none; }
  .pg96-menu-toggle { display: none; }
  .pg96-section { max-width: 600px; }
  .pg96-main { padding-bottom: 20px; }
}
