/* bigboss.homes - Core stylesheet */
/* Class prefix: wb15b- */

:root {
  --wb15b-primary: #DC143C;
  --wb15b-accent: #FF6347;
  --wb15b-soft: #F08080;
  --wb15b-cream: #FFE4B5;
  --wb15b-dark: #3A3A3A;
  --wb15b-darker: #2a2a2a;
  --wb15b-bg: #1f1d1f;
  --wb15b-text: #FFE4B5;
  --wb15b-text-light: #fff5e6;
  --wb15b-muted: #c9b98a;
  --wb15b-card-bg: #2d2a2d;
  --wb15b-card-border: #4a4348;
  --wb15b-gold: #f5c542;
  --wb15b-green: #4caf50;
  --wb15b-header-h: 5.6rem;
  --wb15b-bottom-h: 6.2rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
  background: var(--wb15b-bg);
  color: var(--wb15b-text-light);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--wb15b-cream);
  text-decoration: none;
}

.wb15b-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.wb15b-wrapper {
  width: 100%;
  position: relative;
}

/* ========== Header ========== */
.wb15b-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: var(--wb15b-header-h);
  background: linear-gradient(135deg, #2a1a1d 0%, #3A3A3A 100%);
  border-bottom: 0.2rem solid var(--wb15b-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  z-index: 1000;
  box-shadow: 0 0.2rem 1rem rgba(0,0,0,0.4);
}

.wb15b-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.wb15b-logo {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.6rem;
  background: linear-gradient(135deg, var(--wb15b-primary), var(--wb15b-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wb15b-cream);
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: 0 0 0.8rem rgba(220,20,60,0.5);
}

.wb15b-brand-name {
  color: var(--wb15b-cream);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.05rem;
}

.wb15b-brand-name span {
  color: var(--wb15b-primary);
}

.wb15b-header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.wb15b-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 2rem;
  padding: 0.7rem 1.4rem;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  min-height: 3.4rem;
  text-decoration: none;
  line-height: 1;
}

.wb15b-btn-primary {
  background: linear-gradient(135deg, var(--wb15b-primary), var(--wb15b-accent));
  color: #fff;
  box-shadow: 0 0.3rem 0.8rem rgba(220,20,60,0.4);
}

.wb15b-btn-primary:active {
  transform: scale(0.94);
}

.wb15b-btn-outline {
  background: transparent;
  color: var(--wb15b-cream);
  border: 0.15rem solid var(--wb15b-cream);
}

.wb15b-btn-outline:active {
  background: var(--wb15b-cream);
  color: var(--wb15b-dark);
}

.wb15b-btn-gold {
  background: linear-gradient(135deg, var(--wb15b-gold), #d99e1a);
  color: #2a1a00;
  box-shadow: 0 0.3rem 0.8rem rgba(245,197,66,0.4);
}

.wb15b-menu-toggle {
  width: 3.4rem;
  height: 3.4rem;
  border: none;
  background: transparent;
  color: var(--wb15b-cream);
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
}

.wb15b-menu-toggle.wb15b-toggle-active {
  background: rgba(220,20,60,0.2);
}

/* ========== Mobile Menu ========== */
.wb15b-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9998;
}

.wb15b-menu-backdrop.wb15b-backdrop-show {
  opacity: 1;
  visibility: visible;
}

.wb15b-mobile-menu {
  position: fixed;
  top: var(--wb15b-header-h);
  right: 0;
  width: 75%;
  max-width: 320px;
  height: calc(100vh - var(--wb15b-header-h));
  background: linear-gradient(180deg, #2a1a1d 0%, #1f1d1f 100%);
  border-left: 0.2rem solid var(--wb15b-primary);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 9999;
  padding: 1.5rem 1rem;
  overflow-y: auto;
}

.wb15b-mobile-menu.wb15b-menu-open {
  transform: translateX(0);
}

.wb15b-mobile-menu h3 {
  color: var(--wb15b-cream);
  font-size: 1.4rem;
  margin: 1rem 0.5rem 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08rem;
  border-bottom: 0.1rem solid var(--wb15b-primary);
  padding-bottom: 0.4rem;
}

.wb15b-mobile-menu a {
  display: block;
  padding: 1rem 0.8rem;
  color: var(--wb15b-text-light);
  font-size: 1.3rem;
  border-radius: 0.5rem;
  margin-bottom: 0.3rem;
  transition: background 0.2s ease;
}

.wb15b-mobile-menu a:active,
.wb15b-mobile-menu a:hover {
  background: rgba(220,20,60,0.25);
}

.wb15b-mobile-menu .wb15b-menu-promo {
  background: linear-gradient(135deg, var(--wb15b-primary), var(--wb15b-accent));
  color: #fff;
  text-align: center;
  margin-top: 1rem;
  font-weight: 700;
}

/* ========== Main content ========== */
.wb15b-main {
  padding-top: calc(var(--wb15b-header-h) + 0.5rem);
  padding-bottom: calc(var(--wb15b-bottom-h) + 1rem);
  min-height: 100vh;
}

/* ========== Carousel ========== */
.wb15b-carousel {
  position: relative;
  width: 100%;
  height: 18rem;
  overflow: hidden;
  border-radius: 1rem;
  margin: 1rem 0;
  box-shadow: 0 0.4rem 1.2rem rgba(0,0,0,0.4);
}

.wb15b-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.wb15b-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}

.wb15b-slide.wb15b-slide-active {
  opacity: 1;
}

.wb15b-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wb15b-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 1.5rem 1.2rem 1rem;
  color: #fff;
}

.wb15b-slide-overlay h2 {
  font-size: 1.8rem;
  color: var(--wb15b-cream);
  margin-bottom: 0.3rem;
}

.wb15b-slide-overlay p {
  font-size: 1.2rem;
  color: var(--wb15b-soft);
}

.wb15b-dots {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.wb15b-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255,228,181,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.wb15b-dot.wb15b-dot-active {
  background: var(--wb15b-primary);
  width: 2rem;
  border-radius: 0.4rem;
}

/* ========== Section / Headings ========== */
.wb15b-section {
  margin: 1.8rem 0;
  padding: 0 0.3rem;
}

.wb15b-section-title {
  font-size: 1.9rem;
  color: var(--wb15b-cream);
  font-weight: 800;
  margin-bottom: 0.8rem;
  padding-left: 1rem;
  border-left: 0.4rem solid var(--wb15b-primary);
  line-height: 1.4;
}

.wb15b-section-sub {
  font-size: 1.5rem;
  color: var(--wb15b-accent);
  font-weight: 700;
  margin: 1.2rem 0 0.6rem;
}

.wb15b-text {
  color: var(--wb15b-text-light);
  font-size: 1.35rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.wb15b-text strong {
  color: var(--wb15b-cream);
}

.wb15b-promo-text {
  color: var(--wb15b-gold);
  font-weight: 700;
  cursor: pointer;
}

.wb15b-promo-text:hover {
  text-decoration: underline;
}

/* H1 hero */
.wb15b-hero {
  background: linear-gradient(135deg, #2a1a1d, #3A3A3A);
  border-radius: 1rem;
  padding: 1.6rem 1.2rem;
  margin: 1rem 0;
  border: 0.1rem solid var(--wb15b-card-border);
  text-align: center;
}

.wb15b-hero h1 {
  font-size: 2.2rem;
  color: var(--wb15b-cream);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.wb15b-hero p {
  font-size: 1.3rem;
  color: var(--wb15b-soft);
}

.wb15b-hero .wb15b-btn {
  margin-top: 1rem;
}

/* ========== Category filter ========== */
.wb15b-cat-bar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  margin-bottom: 0.8rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.wb15b-cat-bar::-webkit-scrollbar {
  display: none;
}

.wb15b-cat-btn {
  flex-shrink: 0;
  padding: 0.6rem 1.2rem;
  border: 0.1rem solid var(--wb15b-card-border);
  background: var(--wb15b-card-bg);
  color: var(--wb15b-cream);
  border-radius: 1.5rem;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.wb15b-cat-btn.wb15b-cat-active {
  background: linear-gradient(135deg, var(--wb15b-primary), var(--wb15b-accent));
  border-color: var(--wb15b-primary);
  color: #fff;
}

/* ========== Game grid ========== */
.wb15b-game-group {
  margin-bottom: 1.5rem;
}

.wb15b-game-group-title {
  font-size: 1.5rem;
  color: var(--wb15b-gold);
  font-weight: 800;
  margin: 1rem 0 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 0.1rem dashed var(--wb15b-card-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wb15b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.wb15b-card {
  background: var(--wb15b-card-bg);
  border: 0.1rem solid var(--wb15b-card-border);
  border-radius: 0.8rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.wb15b-card:active {
  transform: scale(0.95);
  box-shadow: 0 0 1rem rgba(220,20,60,0.5);
}

.wb15b-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #000;
}

.wb15b-card-name {
  padding: 0.5rem 0.4rem;
  font-size: 1.05rem;
  color: var(--wb15b-cream);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

.wb15b-card-badge {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  background: var(--wb15b-primary);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.1rem 0.5rem;
  border-radius: 0.4rem;
  font-weight: 700;
}

/* ========== Features / Info cards ========== */
.wb15b-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin: 1rem 0;
}

.wb15b-info-card {
  background: var(--wb15b-card-bg);
  border: 0.1rem solid var(--wb15b-card-border);
  border-radius: 0.8rem;
  padding: 1rem;
  text-align: center;
}

.wb15b-info-card .wb15b-info-icon {
  font-size: 2.4rem;
  color: var(--wb15b-accent);
  margin-bottom: 0.4rem;
}

.wb15b-info-card h3 {
  font-size: 1.3rem;
  color: var(--wb15b-cream);
  margin-bottom: 0.3rem;
}

.wb15b-info-card p {
  font-size: 1.1rem;
  color: var(--wb15b-muted);
  line-height: 1.5;
}

/* ========== RTP table ========== */
.wb15b-rpt-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--wb15b-card-bg);
  border-radius: 0.6rem;
  overflow: hidden;
  margin: 0.8rem 0;
  font-size: 1.2rem;
}

.wb15b-rpt-table th,
.wb15b-rpt-table td {
  padding: 0.7rem 0.8rem;
  text-align: left;
  border-bottom: 0.1rem solid var(--wb15b-card-border);
}

.wb15b-rpt-table th {
  background: var(--wb15b-primary);
  color: #fff;
  font-size: 1.15rem;
}

.wb15b-rpt-table td {
  color: var(--wb15b-cream);
}

.wb15b-rpt-table tr:last-child td {
  border-bottom: none;
}

.wb15b-rtp-bar {
  display: inline-block;
  height: 0.8rem;
  background: linear-gradient(90deg, var(--wb15b-accent), var(--wb15b-gold));
  border-radius: 0.4rem;
  vertical-align: middle;
  margin-left: 0.4rem;
}

/* ========== Testimonials ========== */
.wb15b-testimonial {
  background: var(--wb15b-card-bg);
  border-left: 0.3rem solid var(--wb15b-gold);
  border-radius: 0.6rem;
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
}

.wb15b-testimonial p {
  color: var(--wb15b-text-light);
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.wb15b-testimonial .wb15b-author {
  color: var(--wb15b-soft);
  font-size: 1.1rem;
  font-weight: 700;
}

/* ========== Payment ========== */
.wb15b-payment-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 0.8rem 0;
}

.wb15b-payment-chip {
  background: var(--wb15b-card-bg);
  border: 0.1rem solid var(--wb15b-card-border);
  border-radius: 0.6rem;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--wb15b-cream);
  font-size: 1.15rem;
}

.wb15b-payment-chip i {
  color: var(--wb15b-accent);
}

/* ========== Winners ========== */
.wb15b-winner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--wb15b-card-bg);
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.wb15b-winner .wb15b-winner-name {
  color: var(--wb15b-cream);
  font-weight: 700;
}

.wb15b-winner .wb15b-winner-amount {
  color: var(--wb15b-gold);
  font-weight: 800;
}

/* ========== FAQ ========== */
.wb15b-faq-item {
  background: var(--wb15b-card-bg);
  border: 0.1rem solid var(--wb15b-card-border);
  border-radius: 0.6rem;
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.wb15b-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 1rem 1.2rem;
  color: var(--wb15b-cream);
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.wb15b-faq-q .wb15b-faq-icon {
  color: var(--wb15b-accent);
  transition: transform 0.3s ease;
}

.wb15b-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.2rem;
  color: var(--wb15b-text-light);
  font-size: 1.2rem;
  line-height: 1.6;
}

.wb15b-faq-item.wb15b-faq-open .wb15b-faq-a {
  max-height: 400px;
  padding: 0 1.2rem 1rem;
}

.wb15b-faq-item.wb15b-faq-open .wb15b-faq-icon {
  transform: rotate(45deg);
}

/* ========== CTA banner ========== */
.wb15b-cta {
  background: linear-gradient(135deg, var(--wb15b-primary), var(--wb15b-accent));
  border-radius: 1rem;
  padding: 1.5rem 1.2rem;
  text-align: center;
  margin: 1.5rem 0;
  color: #fff;
}

.wb15b-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
  color: #fff;
}

.wb15b-cta p {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.9);
}

.wb15b-cta .wb15b-btn {
  background: var(--wb15b-cream);
  color: var(--wb15b-primary);
}

/* ========== App download ========== */
.wb15b-app-box {
  background: linear-gradient(135deg, #2a1a1d, #3A3A3A);
  border: 0.1rem solid var(--wb15b-primary);
  border-radius: 1rem;
  padding: 1.3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0;
}

.wb15b-app-box .wb15b-app-icon {
  font-size: 3.5rem;
  color: var(--wb15b-gold);
}

.wb15b-app-box h3 {
  color: var(--wb15b-cream);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.wb15b-app-box p {
  color: var(--wb15b-muted);
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

/* ========== Footer ========== */
.wb15b-footer {
  background: #191719;
  border-top: 0.2rem solid var(--wb15b-primary);
  padding: 1.8rem 1.2rem calc(var(--wb15b-bottom-h) + 1.5rem);
  margin-top: 2rem;
}

.wb15b-footer-brand {
  color: var(--wb15b-cream);
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.wb15b-footer-brand strong {
  color: var(--wb15b-primary);
}

.wb15b-footer-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0;
}

.wb15b-footer-promo .wb15b-btn {
  font-size: 1.15rem;
  padding: 0.6rem 1.1rem;
}

.wb15b-footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 1.2rem 0;
}

.wb15b-footer-links a {
  color: var(--wb15b-muted);
  font-size: 1.15rem;
  padding: 0.3rem 0;
}

.wb15b-footer-links a:hover {
  color: var(--wb15b-cream);
}

.wb15b-copyright {
  border-top: 0.1rem solid #333;
  padding-top: 1rem;
  margin-top: 1rem;
  color: #888;
  font-size: 1.1rem;
  text-align: center;
}

/* ========== Bottom nav ========== */
.wb15b-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: var(--wb15b-bottom-h);
  background: linear-gradient(180deg, #2a1a1d, #151315);
  border-top: 0.15rem solid var(--wb15b-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 -0.3rem 1rem rgba(0,0,0,0.5);
}

.wb15b-bottom-nav-btn {
  flex: 1;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  color: var(--wb15b-muted);
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 0.4rem;
}

.wb15b-bottom-nav-btn:active {
  transform: scale(0.92);
}

.wb15b-bottom-nav-btn .wb15b-nav-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.wb15b-bottom-nav-btn .wb15b-nav-label {
  font-size: 1rem;
  font-weight: 600;
}

.wb15b-bottom-nav-btn.wb15b-nav-current,
.wb15b-bottom-nav-btn:hover {
  color: var(--wb15b-primary);
}

.wb15b-bottom-nav-btn.wb15b-nav-current .wb15b-nav-icon {
  color: var(--wb15b-gold);
}

.wb15b-nav-badge {
  position: absolute;
  top: 0.4rem;
  right: 1.2rem;
  background: var(--wb15b-primary);
  color: #fff;
  font-size: 0.85rem;
  padding: 0 0.4rem;
  border-radius: 0.7rem;
  min-width: 1.4rem;
  height: 1.4rem;
  line-height: 1.4rem;
  text-align: center;
  font-weight: 700;
}

.wb15b-bottom-nav-btn {
  position: relative;
}

/* ========== Back to top ========== */
.wb15b-back-top {
  position: fixed;
  bottom: calc(var(--wb15b-bottom-h) + 1rem);
  right: 1.2rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--wb15b-primary);
  color: #fff;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 0.3rem 0.8rem rgba(0,0,0,0.4);
}

.wb15b-back-top.wb15b-back-show {
  opacity: 1;
  visibility: visible;
}

/* ========== Desktop ========== */
@media (min-width: 769px) {
  .wb15b-bottom-nav {
    display: none;
  }
  .wb15b-back-top {
    bottom: 2rem;
  }
  .wb15b-footer {
    padding-bottom: 1.5rem;
  }
  .wb15b-main {
    padding-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .wb15b-main {
    padding-bottom: calc(var(--wb15b-bottom-h) + 1.5rem);
  }
}

@media (max-width: 360px) {
  .wb15b-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wb15b-brand-name {
    font-size: 1.5rem;
  }
  .wb15b-btn {
    padding: 0.6rem 1rem;
    font-size: 1.1rem;
  }
}
