/* hijabee - Core Stylesheet */
/* All classes use wc5e1- prefix for namespace isolation */
/* Color palette: #008B8B (teal) | #00B8D4 (cyan) | #262626 (dark) */

:root {
  --wc5e1-primary: #008B8B;
  --wc5e1-secondary: #00B8D4;
  --wc5e1-dark: #262626;
  --wc5e1-bg: #0a1a1a;
  --wc5e1-card-bg: #0f2626;
  --wc5e1-text: #e0f7fa;
  --wc5e1-text-muted: #80cbc4;
  --wc5e1-accent: #00e5ff;
  --wc5e1-border: #1a3a3a;
  --wc5e1-glow: rgba(0, 184, 212, 0.3);
  --wc5e1-radius: 10px;
  --wc5e1-radius-sm: 6px;
}

/* Reset and Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Segoe UI', 'Noto Sans Bengali', Tahoma, sans-serif;
  background: var(--wc5e1-bg);
  color: var(--wc5e1-text);
  line-height: 1.5rem;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: var(--wc5e1-secondary);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: var(--wc5e1-accent);
}

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

/* Header */
.wc5e1-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--wc5e1-dark) 0%, #0d2d2d 100%);
  border-bottom: 2px solid var(--wc5e1-primary);
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 1.2rem;
}

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

.wc5e1-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.wc5e1-logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.wc5e1-logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wc5e1-accent);
  letter-spacing: 1px;
}

.wc5e1-header-btns {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.wc5e1-btn-register,
.wc5e1-btn-login {
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: var(--wc5e1-radius-sm);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

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

.wc5e1-btn-register:hover {
  background: linear-gradient(135deg, var(--wc5e1-accent), var(--wc5e1-secondary));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px var(--wc5e1-glow);
}

.wc5e1-btn-login {
  background: transparent;
  color: var(--wc5e1-secondary);
  border: 1.5px solid var(--wc5e1-secondary);
}

.wc5e1-btn-login:hover {
  background: rgba(0, 184, 212, 0.15);
  color: var(--wc5e1-accent);
}

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

/* Mobile Menu Overlay */
.wc5e1-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
}

/* Mobile Slide Menu */
.wc5e1-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: var(--wc5e1-dark);
  z-index: 9999;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  border-right: 2px solid var(--wc5e1-primary);
}

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

.wc5e1-mobile-menu-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wc5e1-accent);
}

.wc5e1-mobile-menu-close {
  background: none;
  border: none;
  color: var(--wc5e1-text);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

.wc5e1-mobile-menu nav {
  padding: 1rem 0;
}

.wc5e1-mobile-menu nav a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  color: var(--wc5e1-text);
  font-size: 1.4rem;
  transition: background 0.2s, color 0.2s;
  border-bottom: 1px solid var(--wc5e1-border);
}

.wc5e1-mobile-menu nav a:hover {
  background: rgba(0, 184, 212, 0.1);
  color: var(--wc5e1-accent);
}

/* Main Content */
.wc5e1-main {
  margin-top: 56px;
  min-height: calc(100vh - 56px);
}

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

.wc5e1-container {
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Carousel */
.wc5e1-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--wc5e1-radius);
  margin: 1rem 0;
}

.wc5e1-slides-wrapper {
  position: relative;
}

.wc5e1-slide {
  display: none;
  cursor: pointer;
}

.wc5e1-slide-active {
  display: block;
}

.wc5e1-slide img {
  width: 100%;
  border-radius: var(--wc5e1-radius);
  aspect-ratio: 16/9;
  object-fit: cover;
}

.wc5e1-slide-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.8rem 0;
}

.wc5e1-slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wc5e1-border);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.wc5e1-dot-active {
  background: var(--wc5e1-accent);
  width: 20px;
  border-radius: 4px;
}

/* Section Headings */
.wc5e1-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--wc5e1-text);
  margin: 2rem 0 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--wc5e1-primary);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.wc5e1-section-title i,
.wc5e1-section-title .material-icons {
  color: var(--wc5e1-accent);
  font-size: 2rem;
}

/* Game Grid */
.wc5e1-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 1rem 0;
}

.wc5e1-game-item {
  background: var(--wc5e1-card-bg);
  border-radius: var(--wc5e1-radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--wc5e1-border);
}

.wc5e1-game-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px var(--wc5e1-glow);
}

.wc5e1-game-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.wc5e1-game-item p {
  font-size: 1.1rem;
  text-align: center;
  padding: 0.4rem 0.2rem;
  color: var(--wc5e1-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Category Label */
.wc5e1-cat-label {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--wc5e1-secondary);
  margin: 1.5rem 0 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wc5e1-cat-label i {
  font-size: 1.6rem;
}

/* Content Blocks */
.wc5e1-content-block {
  background: var(--wc5e1-card-bg);
  border-radius: var(--wc5e1-radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid var(--wc5e1-border);
}

.wc5e1-content-block h2 {
  font-size: 1.6rem;
  color: var(--wc5e1-accent);
  margin-bottom: 1rem;
}

.wc5e1-content-block h3 {
  font-size: 1.4rem;
  color: var(--wc5e1-secondary);
  margin: 1rem 0 0.5rem;
}

.wc5e1-content-block p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--wc5e1-text-muted);
  margin-bottom: 0.8rem;
}

.wc5e1-content-block ul {
  list-style: none;
  padding: 0;
}

.wc5e1-content-block ul li {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--wc5e1-text-muted);
  padding: 0.3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.wc5e1-content-block ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--wc5e1-primary);
  font-size: 1rem;
}

/* Promo Text Link */
.wc5e1-promo-link {
  color: var(--wc5e1-accent);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.3s;
}

.wc5e1-promo-link:hover {
  color: #fff;
}

/* CTA Button */
.wc5e1-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--wc5e1-secondary), var(--wc5e1-primary));
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
}

.wc5e1-cta-btn:hover {
  background: linear-gradient(135deg, var(--wc5e1-accent), var(--wc5e1-secondary));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--wc5e1-glow);
}

/* Feature Cards */
.wc5e1-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}

.wc5e1-feature-card {
  background: var(--wc5e1-card-bg);
  border-radius: var(--wc5e1-radius);
  padding: 1.2rem;
  text-align: center;
  border: 1px solid var(--wc5e1-border);
  transition: border-color 0.3s;
}

.wc5e1-feature-card:hover {
  border-color: var(--wc5e1-primary);
}

.wc5e1-feature-card i,
.wc5e1-feature-card .material-icons {
  font-size: 2.4rem;
  color: var(--wc5e1-accent);
  margin-bottom: 0.5rem;
}

.wc5e1-feature-card h3 {
  font-size: 1.3rem;
  color: var(--wc5e1-text);
  margin-bottom: 0.3rem;
}

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

/* Testimonial */
.wc5e1-testimonial {
  background: var(--wc5e1-card-bg);
  border-radius: var(--wc5e1-radius);
  padding: 1.2rem;
  margin: 0.8rem 0;
  border-left: 3px solid var(--wc5e1-primary);
}

.wc5e1-testimonial p {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--wc5e1-text-muted);
  line-height: 1.6;
}

.wc5e1-testimonial cite {
  font-size: 1.1rem;
  color: var(--wc5e1-secondary);
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
}

/* Payment Methods */
.wc5e1-payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0;
}

.wc5e1-payment-item {
  background: var(--wc5e1-card-bg);
  border: 1px solid var(--wc5e1-border);
  border-radius: var(--wc5e1-radius-sm);
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
  color: var(--wc5e1-text-muted);
}

/* Winner Showcase */
.wc5e1-winner-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem;
  border-bottom: 1px solid var(--wc5e1-border);
}

.wc5e1-winner-item:last-child {
  border-bottom: none;
}

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

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

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

/* Footer */
.wc5e1-footer {
  background: var(--wc5e1-dark);
  border-top: 2px solid var(--wc5e1-primary);
  padding: 2rem 1rem;
  margin-top: 2rem;
}

.wc5e1-footer-inner {
  max-width: 430px;
  margin: 0 auto;
  text-align: center;
}

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

.wc5e1-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.wc5e1-footer-link {
  background: var(--wc5e1-card-bg);
  border: 1px solid var(--wc5e1-border);
  border-radius: var(--wc5e1-radius-sm);
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  color: var(--wc5e1-secondary);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.wc5e1-footer-link:hover {
  background: var(--wc5e1-primary);
  color: #fff;
  border-color: var(--wc5e1-primary);
}

.wc5e1-footer-copy {
  font-size: 1.1rem;
  color: var(--wc5e1-text-muted);
  margin-top: 1rem;
}

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

.wc5e1-bottom-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 52px;
  background: none;
  border: none;
  color: var(--wc5e1-text-muted);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  gap: 0.2rem;
  position: relative;
}

.wc5e1-bottom-nav-btn i,
.wc5e1-bottom-nav-btn .material-icons {
  font-size: 22px;
  transition: transform 0.3s, color 0.3s;
}

.wc5e1-bottom-nav-btn span {
  font-size: 1rem;
  white-space: nowrap;
}

.wc5e1-bottom-nav-btn:hover,
.wc5e1-bottom-nav-btn.wc5e1-nav-active {
  color: var(--wc5e1-accent);
}

.wc5e1-bottom-nav-btn:hover i,
.wc5e1-bottom-nav-btn:hover .material-icons,
.wc5e1-bottom-nav-btn.wc5e1-nav-active i,
.wc5e1-bottom-nav-btn.wc5e1-nav-active .material-icons {
  transform: scale(1.15);
  color: var(--wc5e1-accent);
}

.wc5e1-bottom-nav-btn.wc5e1-nav-active::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--wc5e1-accent);
  border-radius: 0 0 3px 3px;
}

/* Desktop: hide bottom nav */
@media (min-width: 769px) {
  .wc5e1-bottom-nav {
    display: none;
  }
}

/* FAQ Section */
.wc5e1-faq-item {
  background: var(--wc5e1-card-bg);
  border-radius: var(--wc5e1-radius-sm);
  margin: 0.6rem 0;
  padding: 1rem 1.2rem;
  border: 1px solid var(--wc5e1-border);
}

.wc5e1-faq-item h3 {
  font-size: 1.3rem;
  color: var(--wc5e1-secondary);
  margin-bottom: 0.4rem;
}

.wc5e1-faq-item p {
  font-size: 1.2rem;
  color: var(--wc5e1-text-muted);
  line-height: 1.6;
}

/* Steps List */
.wc5e1-steps-list {
  list-style: none;
  padding: 0;
  counter-reset: wc5e1-step;
}

.wc5e1-steps-list li {
  counter-increment: wc5e1-step;
  font-size: 1.3rem;
  line-height: 1.7;
  color: var(--wc5e1-text-muted);
  padding: 0.6rem 0 0.6rem 3rem;
  position: relative;
}

.wc5e1-steps-list li::before {
  content: counter(wc5e1-step);
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 2rem;
  height: 2rem;
  background: var(--wc5e1-primary);
  color: #fff;
  border-radius: 50%;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* H1 title */
.wc5e1-page-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--wc5e1-accent);
  margin: 1.5rem 0;
  line-height: 1.3;
}

/* Text helpers */
.wc5e1-text-center {
  text-align: center;
}

.wc5e1-mt-1 {
  margin-top: 1rem;
}

.wc5e1-mt-2 {
  margin-top: 2rem;
}

.wc5e1-mb-1 {
  margin-bottom: 1rem;
}

.wc5e1-mb-2 {
  margin-bottom: 2rem;
}
