/**
 * 3333bet apk - Main Stylesheet
 * Prefix: w2286-
 * Palette: #2C3E50 | #FF7F50 | #F08080 | #FFB74D | #6C757D | #FF4500
 */

/* === CSS Variables === */
:root {
  --w2286-primary: #2C3E50;
  --w2286-coral: #FF7F50;
  --w2286-light-coral: #F08080;
  --w2286-amber: #FFB74D;
  --w2286-gray: #6C757D;
  --w2286-orange-red: #FF4500;
  --w2286-bg: #1a252f;
  --w2286-bg-card: #243342;
  --w2286-text: #f0f0f0;
  --w2286-text-muted: #b0bec5;
  --w2286-radius: 8px;
  --w2286-shadow: 0 2px 8px rgba(0,0,0,0.25);
  font-size: 62.5%;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', 'Noto Sans Bengali', Tahoma, sans-serif;
  background: var(--w2286-bg);
  color: var(--w2286-text);
  font-size: 1.6rem;
  line-height: 1.5;
  max-width: 430px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--w2286-coral); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* === Header === */
.w2286-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--w2286-primary);
  padding: 0 1.2rem;
  height: 5.2rem;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 2px solid var(--w2286-coral);
  max-width: 430px; margin: 0 auto;
}
.w2286-logo-area {
  display: flex; align-items: center; gap: 0.8rem;
}
.w2286-logo-area img { width: 2.8rem; height: 2.8rem; border-radius: 6px; }
.w2286-logo-area span { font-size: 1.6rem; font-weight: 700; color: var(--w2286-amber); }
.w2286-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.w2286-btn-register {
  background: var(--w2286-orange-red); color: #fff;
  border: none; padding: 0.5rem 1.2rem; border-radius: 5px;
  font-size: 1.3rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s;
}
.w2286-btn-register:hover { background: #e03d00; transform: scale(1.05); }
.w2286-btn-login {
  background: transparent; color: var(--w2286-coral);
  border: 1.5px solid var(--w2286-coral); padding: 0.45rem 1rem;
  border-radius: 5px; font-size: 1.3rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s;
}
.w2286-btn-login:hover { background: var(--w2286-coral); color: #fff; }
.w2286-menu-btn {
  background: none; border: none; color: var(--w2286-text);
  font-size: 2.2rem; cursor: pointer; padding: 0.4rem;
  line-height: 1;
}

/* === Mobile Menu === */
.w2286-mobile-menu {
  position: fixed; top: 0; right: -280px; width: 280px; height: 100vh;
  background: var(--w2286-primary); z-index: 9999;
  transition: right 0.3s ease; overflow-y: auto; padding: 2rem 1.5rem;
}
.w2286-menu-active { right: 0 !important; }
.w2286-menu-close {
  background: none; border: none; color: var(--w2286-text);
  font-size: 2.4rem; cursor: pointer; float: right; margin-bottom: 1.5rem;
}
.w2286-menu-links { clear: both; list-style: none; }
.w2286-menu-links li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.w2286-menu-links a {
  display: block; padding: 1.2rem 0; color: var(--w2286-text);
  font-size: 1.5rem; transition: color 0.2s;
}
.w2286-menu-links a:hover { color: var(--w2286-coral); }
.w2286-menu-overlay {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5); z-index: 9998;
  display: none;
}
.w2286-overlay-active { display: block !important; }

/* === Main Content === */
.w2286-main { padding-top: 5.2rem; }
@media (max-width: 768px) {
  .w2286-main { padding-bottom: 7rem; }
}

/* === Carousel === */
.w2286-carousel {
  position: relative; overflow: hidden;
  margin-bottom: 1.5rem;
}
.w2286-slide {
  display: none; width: 100%; cursor: pointer;
}
.w2286-slide-active { display: block !important; }
.w2286-slide img { width: 100%; border-radius: 0; }
.w2286-dots {
  position: absolute; bottom: 8px; left: 50%;
  transform: translateX(-50%); display: flex; gap: 6px;
}
.w2286-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.5); cursor: pointer;
  border: none;
}
.w2286-dot-active { background: var(--w2286-amber) !important; }

/* === Section === */
.w2286-section {
  padding: 1.5rem 1.2rem;
}
.w2286-section-title {
  font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem;
  color: var(--w2286-amber);
  border-left: 4px solid var(--w2286-coral);
  padding-left: 0.8rem;
}

/* === Game Grid === */
.w2286-game-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.w2286-game-item {
  text-align: center; cursor: pointer;
  transition: transform 0.2s;
}
.w2286-game-item:hover { transform: translateY(-2px); }
.w2286-game-item img {
  width: 100%; aspect-ratio: 1; border-radius: var(--w2286-radius);
  border: 2px solid rgba(255,127,80,0.3);
  object-fit: cover;
}
.w2286-game-item span {
  display: block; font-size: 1.1rem; margin-top: 0.3rem;
  color: var(--w2286-text-muted);
  overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap;
}

/* === Category Tabs === */
.w2286-cat-title {
  font-size: 1.5rem; font-weight: 600; margin: 1.5rem 0 0.8rem;
  color: var(--w2286-light-coral);
  display: flex; align-items: center; gap: 0.5rem;
}

/* === Cards === */
.w2286-card {
  background: var(--w2286-bg-card); border-radius: var(--w2286-radius);
  padding: 1.5rem; margin-bottom: 1rem; box-shadow: var(--w2286-shadow);
}
.w2286-card h3 {
  font-size: 1.5rem; color: var(--w2286-coral); margin-bottom: 0.8rem;
}
.w2286-card p {
  font-size: 1.35rem; color: var(--w2286-text-muted); line-height: 1.6;
}

/* === Promo Button === */
.w2286-promo-btn {
  display: inline-block; background: var(--w2286-orange-red);
  color: #fff; padding: 1rem 2.5rem; border-radius: 50px;
  font-size: 1.6rem; font-weight: 700; cursor: pointer;
  border: none; transition: all 0.3s;
  text-align: center; margin: 1rem 0;
}
.w2286-promo-btn:hover { background: #e03d00; transform: scale(1.05); }

/* === Promo Text Link === */
.w2286-promo-link {
  color: var(--w2286-coral); font-weight: 700;
  text-decoration: underline; cursor: pointer;
}
.w2286-promo-link:hover { color: var(--w2286-amber); }

/* === FAQ === */
.w2286-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0;
}
.w2286-faq-item h4 {
  font-size: 1.4rem; color: var(--w2286-amber); margin-bottom: 0.5rem;
}
.w2286-faq-item p {
  font-size: 1.3rem; color: var(--w2286-text-muted);
}

/* === Testimonials === */
.w2286-testimonial {
  background: var(--w2286-bg-card); border-radius: var(--w2286-radius);
  padding: 1.2rem; margin-bottom: 0.8rem;
  border-left: 3px solid var(--w2286-coral);
}
.w2286-testimonial p { font-size: 1.3rem; color: var(--w2286-text-muted); }
.w2286-testimonial strong { color: var(--w2286-amber); }

/* === Winners === */
.w2286-winner-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 1.2rem;
}
.w2286-winner-row span:first-child { color: var(--w2286-text-muted); }
.w2286-winner-row span:last-child { color: var(--w2286-amber); font-weight: 600; }

/* === Payment Methods === */
.w2286-payment-grid {
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center;
}
.w2286-payment-item {
  background: var(--w2286-bg-card); border-radius: var(--w2286-radius);
  padding: 0.8rem 1.2rem; text-align: center;
  font-size: 1.2rem; color: var(--w2286-text-muted);
  border: 1px solid rgba(255,127,80,0.2);
}

/* === Footer === */
.w2286-footer {
  background: var(--w2286-primary); padding: 2rem 1.2rem 1rem;
  border-top: 2px solid var(--w2286-coral);
}
.w2286-footer-desc {
  font-size: 1.2rem; color: var(--w2286-text-muted);
  margin-bottom: 1rem; line-height: 1.6;
}
.w2286-footer-links {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}
.w2286-footer-links a {
  font-size: 1.2rem; color: var(--w2286-light-coral);
  transition: color 0.2s;
}
.w2286-footer-links a:hover { color: var(--w2286-amber); }
.w2286-footer-copy {
  font-size: 1.1rem; color: var(--w2286-gray); text-align: center;
  margin-top: 0.8rem;
}

/* === Bottom Navigation === */
.w2286-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--w2286-primary);
  border-top: 2px solid var(--w2286-coral);
  height: 6rem;
  display: flex; justify-content: space-around; align-items: center;
  max-width: 430px; margin: 0 auto;
}
.w2286-bottom-btn {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; min-width: 6rem; min-height: 5rem;
  background: none; border: none; color: var(--w2286-text-muted);
  cursor: pointer; transition: all 0.2s; gap: 0.2rem;
  border-radius: 8px; padding: 0.4rem;
}
.w2286-bottom-btn:hover, .w2286-bottom-btn:focus {
  color: var(--w2286-coral); transform: scale(1.1);
}
.w2286-bottom-btn .w2286-bnav-icon { font-size: 2.4rem; line-height: 1; }
.w2286-bottom-btn .w2286-bnav-label { font-size: 1rem; font-weight: 500; }
.w2286-bottom-active { color: var(--w2286-amber) !important; }
@media (min-width: 769px) {
  .w2286-bottom-nav { display: none !important; }
}

/* === Utility === */
.w2286-text-center { text-align: center; }
.w2286-mt-1 { margin-top: 1rem; }
.w2286-mb-1 { margin-bottom: 1rem; }
.w2286-hidden { display: none !important; }

/* === Desktop adjustments === */
@media (min-width: 769px) {
  body { max-width: 430px; }
  .w2286-main { padding-bottom: 0; }
}

/* === App Download CTA === */
.w2286-app-cta {
  background: linear-gradient(135deg, var(--w2286-coral), var(--w2286-orange-red));
  border-radius: var(--w2286-radius);
  padding: 1.5rem; text-align: center;
}
.w2286-app-cta h3 { color: #fff; font-size: 1.6rem; margin-bottom: 0.5rem; }
.w2286-app-cta p { color: rgba(255,255,255,0.85); font-size: 1.3rem; margin-bottom: 1rem; }
