/* gbaji.click - Main Stylesheet */
/* CSS prefix: w84eb- | Color palette: #FFC0CB #273746 #F08080 #FF69B4 #FFB3BA */
/* Mobile-first design, max-width 430px */

:root {
  --w84eb-primary: #FF69B4;
  --w84eb-secondary: #F08080;
  --w84eb-bg: #273746;
  --w84eb-bg-light: #2f4252;
  --w84eb-bg-card: #34495e;
  --w84eb-text: #FFB3BA;
  --w84eb-text-light: #FFC0CB;
  --w84eb-accent: #FF69B4;
  --w84eb-accent2: #F08080;
  --w84eb-border: #3d566e;
  --w84eb-shadow: rgba(0, 0, 0, 0.3);
  --w84eb-radius: 8px;
  --w84eb-font: 'Segoe UI', 'Noto Sans Bengali', Tahoma, sans-serif;
}

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

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

body {
  font-family: var(--w84eb-font);
  background: var(--w84eb-bg);
  color: var(--w84eb-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--w84eb-primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--w84eb-text-light);
}

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

/* ===== HEADER ===== */
.w84eb-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 1000;
  background: var(--w84eb-bg);
  border-bottom: 2px solid var(--w84eb-primary);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}

.w84eb-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}

.w84eb-logo img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.w84eb-logo span {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--w84eb-primary);
  letter-spacing: 0.5px;
}

.w84eb-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.w84eb-btn-register {
  background: var(--w84eb-primary);
  color: #fff;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 34px;
  min-width: 60px;
}
.w84eb-btn-register:hover {
  background: var(--w84eb-accent2);
  transform: scale(1.05);
}

.w84eb-btn-login {
  background: transparent;
  color: var(--w84eb-text-light);
  border: 1.5px solid var(--w84eb-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 34px;
  min-width: 50px;
}
.w84eb-btn-login:hover {
  background: var(--w84eb-primary);
  color: #fff;
}

.w84eb-menu-toggle {
  background: none;
  border: none;
  color: var(--w84eb-text-light);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  line-height: 1;
}

/* ===== MOBILE MENU ===== */
.w84eb-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  background: var(--w84eb-bg-light);
  z-index: 9999;
  transition: right 0.3s ease;
  padding: 2rem 1.5rem;
  overflow-y: auto;
}

.w84eb-menu-active {
  right: 0 !important;
}

.w84eb-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  display: none;
}

.w84eb-overlay-active {
  display: block !important;
}

.w84eb-menu-close {
  background: none;
  border: none;
  color: var(--w84eb-text-light);
  font-size: 2.4rem;
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  cursor: pointer;
}

.w84eb-menu-list {
  list-style: none;
  margin-top: 3rem;
}

.w84eb-menu-list li {
  border-bottom: 1px solid var(--w84eb-border);
}

.w84eb-menu-list a {
  display: block;
  padding: 1.2rem 0;
  color: var(--w84eb-text-light);
  font-size: 1.4rem;
  font-weight: 500;
  transition: color 0.2s;
}
.w84eb-menu-list a:hover {
  color: var(--w84eb-primary);
}

/* ===== MAIN CONTENT ===== */
.w84eb-main {
  padding-top: 56px;
  padding-bottom: 80px;
  min-height: 100vh;
}

/* ===== CAROUSEL ===== */
.w84eb-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 12px 12px;
}

.w84eb-carousel-slide {
  display: none;
  width: 100%;
  cursor: pointer;
}
.w84eb-slide-active {
  display: block;
}
.w84eb-carousel-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.w84eb-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.w84eb-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}
.w84eb-dot-active {
  background: var(--w84eb-primary);
}

/* ===== SECTION ===== */
.w84eb-section {
  padding: 1.5rem 1rem;
}

.w84eb-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--w84eb-primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--w84eb-border);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.w84eb-section-title i,
.w84eb-section-title .material-icons {
  font-size: 1.8rem;
}

/* ===== GAME GRID ===== */
.w84eb-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.w84eb-game-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}
.w84eb-game-item:hover {
  transform: scale(1.05);
}

.w84eb-game-item img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--w84eb-radius);
  object-fit: cover;
  border: 1px solid var(--w84eb-border);
}

.w84eb-game-item span {
  display: block;
  font-size: 1.1rem;
  color: var(--w84eb-text);
  margin-top: 0.3rem;
  line-height: 1.3rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== CARDS ===== */
.w84eb-card {
  background: var(--w84eb-bg-card);
  border-radius: var(--w84eb-radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
  border: 1px solid var(--w84eb-border);
}

.w84eb-card h3 {
  font-size: 1.4rem;
  color: var(--w84eb-primary);
  margin-bottom: 0.6rem;
}

.w84eb-card p {
  font-size: 1.3rem;
  line-height: 1.6rem;
  color: var(--w84eb-text);
}

/* ===== PROMO CTA ===== */
.w84eb-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--w84eb-primary), var(--w84eb-accent2));
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all 0.3s;
  min-height: 44px;
  min-width: 180px;
}
.w84eb-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--w84eb-shadow);
}

.w84eb-cta-outline {
  display: inline-block;
  background: transparent;
  color: var(--w84eb-primary);
  border: 2px solid var(--w84eb-primary);
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  min-height: 40px;
}
.w84eb-cta-outline:hover {
  background: var(--w84eb-primary);
  color: #fff;
}

/* ===== CONTENT TEXT ===== */
.w84eb-content p {
  font-size: 1.3rem;
  line-height: 1.7rem;
  margin-bottom: 0.8rem;
  color: var(--w84eb-text);
}

.w84eb-content h2 {
  font-size: 1.6rem;
  color: var(--w84eb-primary);
  margin: 1.5rem 0 0.8rem;
}

.w84eb-content h3 {
  font-size: 1.4rem;
  color: var(--w84eb-text-light);
  margin: 1.2rem 0 0.6rem;
}

.w84eb-content ul {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}

.w84eb-content li {
  font-size: 1.3rem;
  line-height: 1.6rem;
  margin-bottom: 0.4rem;
  color: var(--w84eb-text);
}

.w84eb-promo-text {
  color: var(--w84eb-primary);
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s;
  border-bottom: 1px dashed var(--w84eb-primary);
}
.w84eb-promo-text:hover {
  color: var(--w84eb-accent2);
}

/* ===== FOOTER ===== */
.w84eb-footer {
  background: var(--w84eb-bg-light);
  padding: 2rem 1rem;
  border-top: 2px solid var(--w84eb-border);
}

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

.w84eb-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.w84eb-footer-links a {
  font-size: 1.2rem;
  color: var(--w84eb-text-light);
  padding: 0.3rem 0.6rem;
  background: var(--w84eb-bg-card);
  border-radius: 4px;
  transition: all 0.2s;
}
.w84eb-footer-links a:hover {
  background: var(--w84eb-primary);
  color: #fff;
}

.w84eb-footer-copy {
  font-size: 1.1rem;
  color: var(--w84eb-border);
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid var(--w84eb-border);
}

/* ===== BOTTOM NAV ===== */
.w84eb-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  z-index: 1000;
  background: var(--w84eb-bg);
  border-top: 2px solid var(--w84eb-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
  padding: 0 0.3rem;
}

.w84eb-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--w84eb-text);
  cursor: pointer;
  min-width: 60px;
  min-height: 52px;
  transition: all 0.2s;
  border-radius: 8px;
  padding: 0.3rem;
}
.w84eb-bottom-btn:hover,
.w84eb-bottom-btn:focus {
  color: var(--w84eb-primary);
  transform: scale(1.1);
}

.w84eb-bottom-btn i,
.w84eb-bottom-btn .material-icons,
.w84eb-bottom-btn ion-icon,
.w84eb-bottom-btn bi {
  font-size: 22px;
  margin-bottom: 2px;
}

.w84eb-bottom-btn span {
  font-size: 1rem;
  line-height: 1.2rem;
  color: inherit;
}

.w84eb-bottom-btn.w84eb-active {
  color: var(--w84eb-primary);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 769px) {
  .w84eb-bottom-nav {
    display: none;
  }
  .w84eb-main {
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .w84eb-main {
    padding-bottom: 80px;
  }
}

/* ===== UTILITY ===== */
.w84eb-text-center {
  text-align: center;
}
.w84eb-mt-1 {
  margin-top: 0.8rem;
}
.w84eb-mt-2 {
  margin-top: 1.6rem;
}
.w84eb-mb-1 {
  margin-bottom: 0.8rem;
}
.w84eb-mb-2 {
  margin-bottom: 1.6rem;
}
.w84eb-hidden {
  display: none !important;
}

/* ===== WINNER TICKER ===== */
.w84eb-ticker {
  background: var(--w84eb-bg-card);
  border-radius: var(--w84eb-radius);
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.w84eb-ticker-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.4rem 0;
  font-size: 1.2rem;
  border-bottom: 1px solid var(--w84eb-border);
}
.w84eb-ticker-item:last-child {
  border-bottom: none;
}

.w84eb-ticker-name {
  color: var(--w84eb-text-light);
  font-weight: 500;
}

.w84eb-ticker-amount {
  color: var(--w84eb-primary);
  font-weight: 700;
}

/* ===== FEATURES LIST ===== */
.w84eb-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.w84eb-feature-item {
  background: var(--w84eb-bg-card);
  border-radius: var(--w84eb-radius);
  padding: 1rem;
  text-align: center;
  border: 1px solid var(--w84eb-border);
  cursor: pointer;
  transition: all 0.2s;
}
.w84eb-feature-item:hover {
  border-color: var(--w84eb-primary);
  transform: translateY(-2px);
}

.w84eb-feature-item i,
.w84eb-feature-item .material-icons {
  font-size: 2.4rem;
  color: var(--w84eb-primary);
  margin-bottom: 0.5rem;
}

.w84eb-feature-item span {
  display: block;
  font-size: 1.2rem;
  color: var(--w84eb-text);
}

/* ===== TESTIMONIALS ===== */
.w84eb-testimonial {
  background: var(--w84eb-bg-card);
  border-radius: var(--w84eb-radius);
  padding: 1rem;
  margin-bottom: 0.8rem;
  border-left: 3px solid var(--w84eb-primary);
}

.w84eb-testimonial-text {
  font-size: 1.2rem;
  color: var(--w84eb-text);
  line-height: 1.5rem;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.w84eb-testimonial-author {
  font-size: 1.1rem;
  color: var(--w84eb-primary);
  font-weight: 600;
}

/* ===== SECURITY BADGES ===== */
.w84eb-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  padding: 1rem 0;
}

.w84eb-badge {
  background: var(--w84eb-bg-card);
  border: 1px solid var(--w84eb-border);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 1.1rem;
  color: var(--w84eb-text-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ===== HELP PAGE ===== */
.w84eb-faq-item {
  background: var(--w84eb-bg-card);
  border-radius: var(--w84eb-radius);
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
  border: 1px solid var(--w84eb-border);
}

.w84eb-faq-q {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--w84eb-primary);
  margin-bottom: 0.5rem;
}

.w84eb-faq-a {
  font-size: 1.2rem;
  color: var(--w84eb-text);
  line-height: 1.6rem;
}
