/**
 * hijabee.click - Core Stylesheet
 * CSS class prefix: wfab6-
 * Color palette: #2E8B57 #0C0C0C #20B2AA #004D40 #7FFF00
 * Mobile-first design, max-width 430px
 */

:root {
  --wfab6-primary: #2E8B57;
  --wfab6-bg: #0C0C0C;
  --wfab6-accent: #20B2AA;
  --wfab6-dark: #004D40;
  --wfab6-highlight: #7FFF00;
  --wfab6-text: #E8F5E9;
  --wfab6-text-muted: #A5D6A7;
  --wfab6-border: #1B5E20;
  --wfab6-card-bg: #0D1F12;
  --wfab6-card-border: #1a3a22;
  --wfab6-radius: 8px;
  --wfab6-radius-lg: 12px;
  --wfab6-shadow: 0 2px 12px rgba(46, 139, 87, 0.15);
  --wfab6-transition: all 0.3s ease;
  font-size: 62.5%;
}

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

body {
  font-family: 'Hind Siliguri', sans-serif;
  background-color: var(--wfab6-bg);
  color: var(--wfab6-text);
  line-height: 1.5rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: var(--wfab6-accent);
  text-decoration: none;
  transition: var(--wfab6-transition);
}

a:hover {
  color: var(--wfab6-highlight);
}

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

/* === Container === */
.wfab6-container {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
  width: 100%;
}

/* === Header === */
.wfab6-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--wfab6-dark) 0%, #00332a 100%);
  border-bottom: 1px solid var(--wfab6-border);
  height: 5.6rem;
}

.wfab6-header-inner {
  max-width: 430px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  height: 100%;
}

.wfab6-logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

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

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

.wfab6-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.wfab6-btn-register,
.wfab6-btn-login {
  padding: 0.5rem 1.2rem;
  border-radius: var(--wfab6-radius);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--wfab6-transition);
  font-family: 'Hind Siliguri', sans-serif;
}

.wfab6-btn-register {
  background: linear-gradient(135deg, var(--wfab6-primary), var(--wfab6-accent));
  color: #fff;
}

.wfab6-btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(46, 139, 87, 0.4);
}

.wfab6-btn-login {
  background: transparent;
  color: var(--wfab6-accent);
  border: 1px solid var(--wfab6-accent);
}

.wfab6-btn-login:hover {
  background: rgba(32, 178, 170, 0.1);
}

.wfab6-menu-toggle {
  background: none;
  border: none;
  color: var(--wfab6-text);
  font-size: 2rem;
  cursor: pointer;
  padding: 0.4rem;
  display: flex;
  align-items: center;
}

/* === Mobile Menu === */
.wfab6-mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  z-index: 9999;
  background: linear-gradient(180deg, var(--wfab6-dark) 0%, var(--wfab6-bg) 100%);
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 2rem 0;
}

.wfab6-menu-active {
  right: 0;
}

.wfab6-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 2rem;
  color: var(--wfab6-text);
  font-size: 1.4rem;
  border-bottom: 1px solid rgba(46, 139, 87, 0.1);
  transition: var(--wfab6-transition);
}

.wfab6-mobile-menu a:hover,
.wfab6-mobile-menu a:active {
  background: rgba(46, 139, 87, 0.15);
  color: var(--wfab6-highlight);
}

.wfab6-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.wfab6-overlay-active {
  opacity: 1;
  pointer-events: all;
}

.wfab6-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem 1.5rem;
  border-bottom: 1px solid var(--wfab6-border);
  margin-bottom: 1rem;
}

.wfab6-menu-header span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wfab6-highlight);
}

.wfab6-menu-close {
  background: none;
  border: none;
  color: var(--wfab6-text);
  font-size: 2.2rem;
  cursor: pointer;
}

/* === Slider === */
.wfab6-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--wfab6-radius-lg);
  margin-top: 6.4rem;
}

.wfab6-slides-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.wfab6-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

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

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

.wfab6-slide-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 5;
}

.wfab6-slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--wfab6-transition);
}

.wfab6-dot-active {
  background: var(--wfab6-highlight);
  transform: scale(1.3);
}

/* === Section Headings === */
.wfab6-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wfab6-highlight);
  margin: 2rem 0 1.2rem;
  padding-left: 1rem;
  border-left: 3px solid var(--wfab6-primary);
}

.wfab6-section-subtitle {
  font-size: 1.4rem;
  color: var(--wfab6-text-muted);
  margin-bottom: 1rem;
}

/* === Game Grid === */
.wfab6-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.wfab6-game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: var(--wfab6-transition);
  border-radius: var(--wfab6-radius);
  padding: 0.4rem;
}

.wfab6-game-card:hover {
  transform: translateY(-2px);
  background: rgba(46, 139, 87, 0.1);
}

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

.wfab6-game-card span {
  font-size: 1rem;
  color: var(--wfab6-text-muted);
  text-align: center;
  margin-top: 0.3rem;
  line-height: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* === Content Cards === */
.wfab6-card {
  background: var(--wfab6-card-bg);
  border: 1px solid var(--wfab6-card-border);
  border-radius: var(--wfab6-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.wfab6-card h2 {
  font-size: 1.6rem;
  color: var(--wfab6-highlight);
  margin-bottom: 1rem;
}

.wfab6-card h3 {
  font-size: 1.4rem;
  color: var(--wfab6-accent);
  margin: 1rem 0 0.6rem;
}

.wfab6-card p {
  font-size: 1.3rem;
  color: var(--wfab6-text);
  line-height: 1.8rem;
  margin-bottom: 0.8rem;
}

.wfab6-card ul {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
}

.wfab6-card li {
  font-size: 1.3rem;
  color: var(--wfab6-text);
  line-height: 1.8rem;
  margin-bottom: 0.4rem;
}

/* === Promo Buttons === */
.wfab6-promo-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--wfab6-primary), var(--wfab6-accent));
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--wfab6-radius-lg);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--wfab6-transition);
  text-align: center;
  font-family: 'Hind Siliguri', sans-serif;
}

.wfab6-promo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(46, 139, 87, 0.4);
  color: #fff;
}

.wfab6-promo-link {
  color: var(--wfab6-highlight);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.wfab6-promo-link:hover {
  color: var(--wfab6-accent);
}

/* === Partners === */
.wfab6-partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 0;
}

.wfab6-partners span {
  background: rgba(46, 139, 87, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--wfab6-radius);
  font-size: 1.1rem;
  color: var(--wfab6-text-muted);
  border: 1px solid var(--wfab6-card-border);
}

/* === Footer === */
.wfab6-footer {
  background: linear-gradient(180deg, var(--wfab6-dark) 0%, var(--wfab6-bg) 100%);
  padding: 2rem 0 8rem;
  margin-top: 2rem;
  border-top: 1px solid var(--wfab6-border);
}

.wfab6-footer-desc {
  font-size: 1.2rem;
  color: var(--wfab6-text-muted);
  line-height: 1.6rem;
  margin-bottom: 1.5rem;
}

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

.wfab6-footer-links a {
  font-size: 1.2rem;
  color: var(--wfab6-text-muted);
}

.wfab6-footer-links a:hover {
  color: var(--wfab6-highlight);
}

.wfab6-copyright {
  font-size: 1.1rem;
  color: rgba(165, 214, 167, 0.5);
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid rgba(27, 94, 32, 0.3);
}

/* === Bottom Navigation === */
.wfab6-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 60px;
  background: linear-gradient(180deg, #003d33 0%, var(--wfab6-dark) 100%);
  border-top: 1px solid var(--wfab6-primary);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 0.3rem;
}

.wfab6-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 56px;
  background: none;
  border: none;
  color: var(--wfab6-text-muted);
  cursor: pointer;
  transition: var(--wfab6-transition);
  text-decoration: none;
  padding: 0.3rem;
  border-radius: var(--wfab6-radius);
}

.wfab6-bottom-nav-btn:hover,
.wfab6-bottom-nav-btn:active {
  color: var(--wfab6-highlight);
  background: rgba(127, 255, 0, 0.08);
  transform: scale(1.08);
}

.wfab6-bottom-nav-btn.active {
  color: var(--wfab6-highlight);
}

.wfab6-bottom-nav-btn i,
.wfab6-bottom-nav-btn .material-icons-outlined {
  font-size: 22px;
  margin-bottom: 2px;
}

.wfab6-bottom-nav-btn span {
  font-size: 1rem;
  font-family: 'Hind Siliguri', sans-serif;
}

/* === Back to Top === */
.wfab6-back-top {
  position: fixed;
  bottom: 72px;
  right: 1.2rem;
  width: 40px;
  height: 40px;
  background: var(--wfab6-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--wfab6-transition);
  z-index: 999;
  font-size: 1.6rem;
}

.wfab6-back-top-visible {
  opacity: 1;
  pointer-events: all;
}

.wfab6-back-top:hover {
  background: var(--wfab6-accent);
  transform: translateY(-2px);
}

/* === FAQ Accordion === */
.wfab6-faq-item {
  border: 1px solid var(--wfab6-card-border);
  border-radius: var(--wfab6-radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
}

.wfab6-faq-q {
  padding: 1rem 1.2rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--wfab6-accent);
  background: var(--wfab6-card-bg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.wfab6-faq-item.open .wfab6-faq-a {
  max-height: 200px;
  padding: 0.8rem 1.2rem;
}

.wfab6-faq-item.open .wfab6-faq-toggle {
  transform: rotate(180deg);
}

.wfab6-faq-toggle {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
  main {
    padding-bottom: 80px;
  }
}

@media (min-width: 769px) {
  .wfab6-bottom-nav {
    display: none;
  }
}

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

/* === Feature List === */
.wfab6-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.wfab6-feature-item {
  background: var(--wfab6-card-bg);
  border: 1px solid var(--wfab6-card-border);
  border-radius: var(--wfab6-radius);
  padding: 1rem;
  text-align: center;
}

.wfab6-feature-item i {
  font-size: 2rem;
  color: var(--wfab6-highlight);
  margin-bottom: 0.5rem;
}

.wfab6-feature-item h4 {
  font-size: 1.2rem;
  color: var(--wfab6-accent);
  margin-bottom: 0.3rem;
}

.wfab6-feature-item p {
  font-size: 1rem;
  color: var(--wfab6-text-muted);
  line-height: 1.4rem;
}

/* === Winner Showcase === */
.wfab6-winner-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.wfab6-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: rgba(46, 139, 87, 0.05);
  border-radius: var(--wfab6-radius);
  border: 1px solid var(--wfab6-card-border);
}

.wfab6-winner-name {
  font-size: 1.2rem;
  color: var(--wfab6-text);
}

.wfab6-winner-amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--wfab6-highlight);
}

.wfab6-winner-game {
  font-size: 1rem;
  color: var(--wfab6-text-muted);
}
