/* 35555 CSS Design - w1c73- prefixed classes */
/* Color palette: #FFFACD, #FFD700, #0F0F23, #FFEF94, #7FFF00, #EEEEEE */

/* CSS Variables */
:root {
  --w1c73-primary: #FFD700;
  --w1c73-secondary: #FFFACD;
  --w1c73-accent: #7FFF00;
  --w1c73-bg: #0F0F23;
  --w1c73-bg-light: #1a1a3e;
  --w1c73-bg-card: #16163a;
  --w1c73-text: #EEEEEE;
  --w1c73-text-light: #FFEF94;
  --w1c73-text-muted: #b0b0cc;
  --w1c73-border: #2a2a5a;
  --w1c73-hover: #FFD700;
  --w1c73-font-size: 62.5%;
  --w1c73-max-width: 430px;
}

html {
  font-size: var(--w1c73-font-size);
}

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

body {
  font-family: 'Segoe UI', 'Noto Sans Bengali', Arial, sans-serif;
  background: var(--w1c73-bg);
  color: var(--w1c73-text);
  line-height: 1.5rem;
  max-width: var(--w1c73-max-width);
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
}

/* Header */
.w1c73-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--w1c73-bg) 0%, var(--w1c73-bg-light) 100%);
  border-bottom: 2px solid var(--w1c73-primary);
  max-width: var(--w1c73-max-width);
  margin: 0 auto;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.w1c73-header-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.w1c73-header-logo {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.w1c73-header-brand {
  color: var(--w1c73-primary);
  font-size: 1.6rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.5px;
}

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

.w1c73-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 36px;
}

.w1c73-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.w1c73-btn-register {
  background: var(--w1c73-primary);
  color: var(--w1c73-bg);
}

.w1c73-btn-login {
  background: transparent;
  color: var(--w1c73-primary);
  border: 2px solid var(--w1c73-primary);
}

.w1c73-menu-btn {
  background: none;
  border: none;
  color: var(--w1c73-primary);
  font-size: 1.8rem;
  cursor: pointer;
  padding: 0.4rem;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Menu */
.w1c73-mobile-menu {
  display: none;
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--w1c73-bg);
  border-bottom: 2px solid var(--w1c73-primary);
  max-width: var(--w1c73-max-width);
  margin: 0 auto;
  padding: 0.8rem 0;
}

.w1c73-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.5rem;
  color: var(--w1c73-text);
  text-decoration: none;
  font-size: 1.3rem;
  border-bottom: 1px solid var(--w1c73-border);
  transition: background 0.2s;
}

.w1c73-mobile-menu a:hover {
  background: var(--w1c73-bg-light);
  color: var(--w1c73-primary);
}

.w1c73-mobile-menu a i,
.w1c73-mobile-menu a span.material-symbols-outlined {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

/* Main Content */
.w1c73-main {
  padding-top: 58px;
  padding-bottom: 80px;
  min-height: 100vh;
}

/* Carousel */
.w1c73-carousel {
  position: relative;
  overflow: hidden;
  margin: 1rem 0;
  border-radius: 0.6rem;
}

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

.w1c73-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.6rem;
}

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

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

.w1c73-dot.x1c73-active {
  background: var(--w1c73-primary);
}

/* Content Sections */
.w1c73-section {
  padding: 1.5rem 1rem;
}

.w1c73-section-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--w1c73-primary);
  margin-bottom: 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--w1c73-primary);
}

.w1c73-section-title i {
  margin-right: 0.4rem;
}

.w1c73-section p {
  color: var(--w1c73-text);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.w1c73-section a {
  color: var(--w1c73-primary);
  text-decoration: underline;
  cursor: pointer;
}

.w1c73-section a:hover {
  color: var(--w1c73-accent);
}

/* Game Grid */
.w1c73-game-list {
  padding: 1rem;
}

.w1c73-game-category-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--w1c73-text-light);
  margin: 1.2rem 0 0.6rem 0;
  padding-left: 0.5rem;
  border-left: 3px solid var(--w1c73-primary);
}

.w1c73-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}

.w1c73-game-card {
  cursor: pointer;
  text-align: center;
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--w1c73-bg-card);
  border: 1px solid var(--w1c73-border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.w1c73-game-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.w1c73-game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.w1c73-game-card span {
  display: block;
  font-size: 0.95rem;
  color: var(--w1c73-text);
  padding: 0.3rem 0.2rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

/* Footer */
.w1c73-footer {
  background: var(--w1c73-bg-light);
  padding: 1.5rem 1rem;
  border-top: 2px solid var(--w1c73-primary);
}

.w1c73-footer-brand {
  color: var(--w1c73-text);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

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

.w1c73-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.w1c73-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.8rem;
  background: var(--w1c73-bg);
  color: var(--w1c73-primary);
  border: 1px solid var(--w1c73-border);
  border-radius: 1.5rem;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.w1c73-footer-links a:hover {
  background: var(--w1c73-primary);
  color: var(--w1c73-bg);
}

.w1c73-footer-sitemap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.w1c73-footer-sitemap a {
  color: var(--w1c73-text-muted);
  font-size: 1rem;
  text-decoration: none;
  padding: 0.2rem 0.4rem;
  cursor: pointer;
}

.w1c73-footer-sitemap a:hover {
  color: var(--w1c73-primary);
}

.w1c73-copyright {
  color: var(--w1c73-text-muted);
  font-size: 1rem;
  text-align: center;
  margin-top: 0.8rem;
}

/* Bottom Navigation */
.w1c73-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--w1c73-bg-light) 0%, var(--w1c73-bg) 100%);
  border-top: 2px solid var(--w1c73-primary);
  max-width: var(--w1c73-max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 60px;
}

.w1c73-nav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 56px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  background: transparent;
  color: var(--w1c73-text-muted);
  transition: color 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.w1c73-nav-btn:hover,
.w1c73-nav-btn.x1c73-active {
  color: var(--w1c73-primary);
  transform: scale(1.08);
}

.w1c73-nav-btn i,
.w1c73-nav-btn span.material-symbols-outlined,
.w1c73-nav-btn ion-icon {
  font-size: 22px;
  margin-bottom: 2px;
}

.w1c73-nav-btn ion-icon {
  font-size: 24px;
}

.w1c73-nav-btn span.w1c73-nav-label {
  font-size: 10px;
  line-height: 1.2;
}

/* Content Accent Styles */
.w1c73-highlight {
  color: var(--w1c73-primary);
  font-weight: 700;
}

.w1c73-accent-text {
  color: var(--w1c73-accent);
  font-weight: 600;
}

.w1c73-card {
  background: var(--w1c73-bg-card);
  border: 1px solid var(--w1c73-border);
  border-radius: 0.6rem;
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.w1c73-card h3 {
  color: var(--w1c73-primary);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

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

.w1c73-promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  background: linear-gradient(135deg, var(--w1c73-primary), #e6c200);
  color: var(--w1c73-bg);
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.w1c73-promo-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
}

.w1c73-center {
  text-align: center;
}

/* FAQ Accordion */
.w1c73-faq-item {
  border: 1px solid var(--w1c73-border);
  border-radius: 0.5rem;
  margin-bottom: 0.6rem;
  overflow: hidden;
}

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

.w1c73-faq-answer {
  display: none;
  padding: 1rem;
  background: var(--w1c73-bg);
  font-size: 1.1rem;
  color: var(--w1c73-text);
  line-height: 1.6;
}

/* Badge / Tag */
.w1c73-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--w1c73-primary);
  color: var(--w1c73-bg);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 1rem;
  margin-right: 0.3rem;
}

.w1c73-badge-green {
  background: var(--w1c73-accent);
}

/* Winner bar */
.w1c73-winner-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  background: var(--w1c73-bg-card);
  border-radius: 0.4rem;
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.w1c73-winner-bar img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.w1c73-winner-bar .w1c73-winner-name {
  color: var(--w1c73-text);
  flex: 1;
}

.w1c73-winner-bar .w1c73-winner-amount {
  color: var(--w1c73-primary);
  font-weight: 700;
}

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

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

/* Utility */
.w1c73-mb-1 { margin-bottom: 0.5rem; }
.w1c73-mb-2 { margin-bottom: 1rem; }
.w1c73-mb-3 { margin-bottom: 1.5rem; }
.w1c73-mt-1 { margin-top: 0.5rem; }
.w1c73-mt-2 { margin-top: 1rem; }
.w1c73-text-center { text-align: center; }
.w1c73-text-gold { color: var(--w1c73-primary); }
.w1c73-text-green { color: var(--w1c73-accent); }
.w1c73-fw-bold { font-weight: 700; }