/* jljl9 layout styles - prefix w6d72- | palette #FAFAFA #0D1117 #F08080 */
:root {
  --w6d72-bg: #0D1117;
  --w6d72-bg-deep: #010409;
  --w6d72-bg-soft: #161b22;
  --w6d72-bg-card: #1c2128;
  --w6d72-text: #FAFAFA;
  --w6d72-text-dim: #c9d1d9;
  --w6d72-primary: #F08080;
  --w6d72-accent: #ff9a9a;
  --w6d72-accent-hot: #e85d5d;
  --w6d72-border: rgba(240, 128, 128, 0.25);
  --w6d72-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  --w6d72-radius: 0.8rem;
  --w6d72-header-h: 5.6rem;
  --w6d72-bottom-h: 6.2rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  background: var(--w6d72-bg);
  color: var(--w6d72-text);
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--w6d72-accent); text-decoration: none; }
a:hover { color: #ffc0c0; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.w6d72-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.w6d72-wrapper { width: 100%; max-width: 430px; margin: 0 auto; }
.w6d72-main {
  padding-top: calc(var(--w6d72-header-h) + 1rem);
  padding-bottom: 2rem;
}
@media (max-width: 768px) {
  .w6d72-main { padding-bottom: 8rem; }
}

/* Header */
.w6d72-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #161b22 0%, #0D1117 100%);
  border-bottom: 1px solid var(--w6d72-border);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}
.w6d72-header-inner {
  max-width: 430px;
  margin: 0 auto;
  height: var(--w6d72-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  gap: 0.8rem;
}
.w6d72-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  flex: 1;
}
.w6d72-logo img {
  width: 3rem; height: 3rem;
  border-radius: 0.6rem;
  object-fit: cover;
  border: 1px solid var(--w6d72-border);
}
.w6d72-logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--w6d72-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.w6d72-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.w6d72-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 4.4rem;
  padding: 0 1.2rem;
  border-radius: 2.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.w6d72-btn:active { transform: scale(0.96); }
.w6d72-btn-register {
  background: linear-gradient(135deg, #F08080, #e85d5d);
  color: #0D1117;
  box-shadow: 0 4px 12px rgba(240, 128, 128, 0.35);
}
.w6d72-btn-login {
  background: transparent;
  color: var(--w6d72-primary);
  border: 1.5px solid var(--w6d72-primary);
}
.w6d72-btn-primary {
  background: linear-gradient(135deg, #F08080, #e85d5d);
  color: #0D1117;
  font-weight: 700;
  width: 100%;
  min-height: 4.8rem;
  font-size: 1.4rem;
  border-radius: var(--w6d72-radius);
  box-shadow: var(--w6d72-shadow);
}
.w6d72-btn-outline {
  border: 1.5px solid var(--w6d72-primary);
  color: var(--w6d72-primary);
  background: rgba(240, 128, 128, 0.08);
  min-height: 4.4rem;
  padding: 0 1.4rem;
  border-radius: 2.2rem;
  font-weight: 700;
  font-size: 1.2rem;
}
.w6d72-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.2rem 0;
  justify-content: center;
}
.w6d72-menu-toggle {
  width: 4.4rem; height: 4.4rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.8rem;
  color: var(--w6d72-primary);
  font-size: 2.2rem;
}

/* Mobile menu */
.w6d72-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}
.w6d72-overlay-show { opacity: 1; visibility: visible; }
.w6d72-mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(82vw, 320px);
  height: 100%;
  background: linear-gradient(180deg, #161b22, #010409);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  padding: 2rem 1.6rem;
  overflow-y: auto;
  border-left: 1px solid var(--w6d72-border);
}
.w6d72-menu-open { transform: translateX(0); }
.w6d72-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
.w6d72-menu-close {
  width: 4.4rem; height: 4.4rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
  color: var(--w6d72-primary);
}
.w6d72-menu-list { display: flex; flex-direction: column; gap: 0.4rem; }
.w6d72-menu-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.8rem;
  padding: 0 1.2rem;
  border-radius: 0.8rem;
  color: var(--w6d72-text);
  font-size: 1.4rem;
  font-weight: 600;
  transition: background 0.18s ease;
}
.w6d72-menu-list a:hover,
.w6d72-menu-list a:active {
  background: rgba(240, 128, 128, 0.12);
  color: var(--w6d72-accent);
}
.w6d72-menu-list i,
.w6d72-menu-list .material-icons,
.w6d72-menu-list .ti {
  font-size: 2rem;
  width: 2.4rem;
  text-align: center;
}

/* Carousel */
.w6d72-carousel {
  position: relative;
  border-radius: 1.2rem;
  overflow: hidden;
  margin-bottom: 1.6rem;
  box-shadow: var(--w6d72-shadow);
  aspect-ratio: 16 / 9;
  background: var(--w6d72-bg-deep);
}
.w6d72-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  cursor: pointer;
}
.w6d72-slide-active { opacity: 1; z-index: 1; }
.w6d72-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.w6d72-carousel-dots {
  position: absolute;
  bottom: 1rem; left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}
.w6d72-dot {
  width: 0.8rem; height: 0.8rem;
  border-radius: 50%;
  background: rgba(250, 250, 250, 0.4);
  transition: all 0.2s ease;
}
.w6d72-dot-active {
  background: var(--w6d72-primary);
  width: 1.8rem;
  border-radius: 0.4rem;
}
.w6d72-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 3.6rem; height: 3.6rem;
  border-radius: 50%;
  background: rgba(13, 17, 23, 0.65);
  color: var(--w6d72-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid var(--w6d72-border);
}
.w6d72-carousel-prev { left: 0.8rem; }
.w6d72-carousel-next { right: 0.8rem; }

/* Typography */
.w6d72-h1 {
  font-size: 1.9rem;
  line-height: 1.35;
  font-weight: 800;
  color: var(--w6d72-text);
  margin: 0.8rem 0 1.2rem;
  text-align: center;
}
.w6d72-h2 {
  font-size: 1.7rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--w6d72-primary);
  margin: 0 0 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.w6d72-h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--w6d72-text);
  margin: 1rem 0 0.8rem;
}
.w6d72-text {
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--w6d72-text-dim);
  margin-bottom: 1rem;
}
.w6d72-promo-link {
  color: var(--w6d72-primary);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}
.w6d72-section {
  margin: 2rem 0;
  padding: 1.6rem 0;
  border-top: 1px solid var(--w6d72-border);
}
.w6d72-card {
  background: var(--w6d72-bg-card);
  border: 1px solid var(--w6d72-border);
  border-radius: var(--w6d72-radius);
  padding: 1.4rem;
  margin-bottom: 1.2rem;
  box-shadow: var(--w6d72-shadow);
}
.w6d72-cat-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(240, 128, 128, 0.12);
  color: var(--w6d72-primary);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

/* Game grid */
.w6d72-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}
.w6d72-game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.18s ease;
  min-width: 0;
}
.w6d72-game-card:active { transform: scale(0.94); }
.w6d72-game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1rem;
  border: 1.5px solid var(--w6d72-border);
  background: var(--w6d72-bg-soft);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.w6d72-game-card span {
  margin-top: 0.4rem;
  font-size: 1rem;
  line-height: 1.25;
  text-align: center;
  color: var(--w6d72-text-dim);
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}

/* Feature / stats / winners */
.w6d72-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.w6d72-feature-item {
  background: var(--w6d72-bg-soft);
  border: 1px solid var(--w6d72-border);
  border-radius: var(--w6d72-radius);
  padding: 1.2rem;
  text-align: center;
}
.w6d72-feature-item i,
.w6d72-feature-item .material-icons,
.w6d72-feature-item .ti {
  font-size: 2.4rem;
  color: var(--w6d72-primary);
  margin-bottom: 0.6rem;
  display: block;
}
.w6d72-feature-item h3 {
  font-size: 1.3rem;
  color: var(--w6d72-text);
  margin-bottom: 0.4rem;
}
.w6d72-feature-item p {
  font-size: 1.15rem;
  color: var(--w6d72-text-dim);
  line-height: 1.4;
}
.w6d72-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 1.2rem 0;
}
.w6d72-stat {
  background: linear-gradient(160deg, #1c2128, #161b22);
  border: 1px solid var(--w6d72-border);
  border-radius: var(--w6d72-radius);
  padding: 1rem 0.6rem;
  text-align: center;
}
.w6d72-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--w6d72-primary);
  display: block;
}
.w6d72-stat-label {
  font-size: 1.05rem;
  color: var(--w6d72-text-dim);
  margin-top: 0.3rem;
  display: block;
}
.w6d72-winner-list { display: flex; flex-direction: column; gap: 0.8rem; }
.w6d72-winner {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--w6d72-bg-soft);
  border-radius: 0.8rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(240, 128, 128, 0.12);
}
.w6d72-winner img {
  width: 4rem; height: 4rem;
  border-radius: 0.6rem;
  object-fit: cover;
}
.w6d72-winner-info { flex: 1; min-width: 0; }
.w6d72-winner-name { font-size: 1.25rem; font-weight: 700; color: var(--w6d72-text); }
.w6d72-winner-game { font-size: 1.1rem; color: var(--w6d72-text-dim); }
.w6d72-winner-amt { font-size: 1.3rem; font-weight: 800; color: var(--w6d72-primary); }

/* FAQ */
.w6d72-faq-item {
  background: var(--w6d72-bg-card);
  border: 1px solid var(--w6d72-border);
  border-radius: var(--w6d72-radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.w6d72-faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--w6d72-text);
  text-align: left;
  min-height: 4.8rem;
}
.w6d72-faq-q i { color: var(--w6d72-primary); transition: transform 0.2s ease; }
.w6d72-faq-open .w6d72-faq-q i { transform: rotate(180deg); }
.w6d72-faq-a {
  display: none;
  padding: 0 1.4rem 1.2rem;
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--w6d72-text-dim);
}
.w6d72-faq-open .w6d72-faq-a { display: block; }

/* Payment icons */
.w6d72-pay-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}
.w6d72-pay-item {
  background: var(--w6d72-bg-soft);
  border: 1px solid var(--w6d72-border);
  border-radius: 0.6rem;
  padding: 0.8rem 1.2rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--w6d72-text-dim);
  min-height: 4.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Footer */
.w6d72-footer {
  background: var(--w6d72-bg-deep);
  border-top: 1px solid var(--w6d72-border);
  padding: 2.4rem 1.2rem 2rem;
  margin-top: 2rem;
}
.w6d72-footer-inner {
  max-width: 430px;
  margin: 0 auto;
}
.w6d72-footer-brand {
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--w6d72-text-dim);
  margin-bottom: 1.4rem;
  text-align: center;
}
.w6d72-footer-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.6rem;
}
.w6d72-footer-btns .w6d72-btn {
  min-height: 4rem;
  padding: 0 1.2rem;
  font-size: 1.15rem;
  background: rgba(240, 128, 128, 0.15);
  color: var(--w6d72-primary);
  border: 1px solid var(--w6d72-border);
  border-radius: 2rem;
}
.w6d72-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.w6d72-seo-links a {
  font-size: 1.2rem;
  color: var(--w6d72-text-dim);
  min-height: 3.2rem;
  display: inline-flex;
  align-items: center;
}
.w6d72-seo-links a:hover { color: var(--w6d72-primary); }
.w6d72-copy {
  text-align: center;
  font-size: 1.15rem;
  color: #8b949e;
  padding-top: 1rem;
  border-top: 1px solid rgba(240, 128, 128, 0.12);
}

/* Mobile bottom nav - unique coral bar design */
.w6d72-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  height: 6.2rem;
  background: linear-gradient(0deg, #010409 0%, #161b22 100%);
  border-top: 2px solid var(--w6d72-primary);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  box-shadow: 0 -4px 18px rgba(240, 128, 128, 0.18);
  max-width: 430px;
  margin: 0 auto;
}
.w6d72-bottom-nav a,
.w6d72-bottom-nav button {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  min-width: 6rem;
  min-height: 6rem;
  color: var(--w6d72-text-dim);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.18s ease, transform 0.18s ease;
  background: transparent;
  border: none;
  padding: 0.4rem;
}
.w6d72-bottom-nav a i,
.w6d72-bottom-nav a .material-icons,
.w6d72-bottom-nav a .ti,
.w6d72-bottom-nav button i,
.w6d72-bottom-nav button .material-icons,
.w6d72-bottom-nav button .ti {
  font-size: 2.2rem;
  line-height: 1;
  color: var(--w6d72-text-dim);
  transition: color 0.18s ease, transform 0.18s ease;
}
.w6d72-bottom-nav a:active,
.w6d72-bottom-nav button:active {
  transform: scale(0.92);
}
.w6d72-bottom-nav a:active i,
.w6d72-bottom-nav a:active .material-icons,
.w6d72-bottom-nav button:active i {
  color: var(--w6d72-primary);
}
.w6d72-nav-active,
.w6d72-nav-active i,
.w6d72-nav-active .material-icons,
.w6d72-nav-active .ti {
  color: var(--w6d72-primary) !important;
}
.w6d72-nav-active {
  position: relative;
}
.w6d72-nav-active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.4rem;
  height: 0.3rem;
  background: var(--w6d72-primary);
  border-radius: 0 0 0.4rem 0.4rem;
}

@media (min-width: 769px) {
  .w6d72-bottom-nav { display: none; }
  .w6d72-main { padding-bottom: 2rem; }
  body {
    background: #010409;
  }
  .w6d72-wrapper,
  .w6d72-header-inner,
  .w6d72-footer-inner {
    max-width: 430px;
  }
  .w6d72-header {
    background: rgba(13, 17, 23, 0.96);
  }
}

/* Utility */
.w6d72-mt-1 { margin-top: 1rem; }
.w6d72-mb-1 { margin-bottom: 1rem; }
.w6d72-center { text-align: center; }
.w6d72-list {
  padding-left: 1.6rem;
  margin-bottom: 1rem;
  list-style: disc;
}
.w6d72-list li {
  font-size: 1.3rem;
  color: var(--w6d72-text-dim);
  margin-bottom: 0.5rem;
  line-height: 1.5;
  list-style: disc;
}
.w6d72-steps { counter-reset: step; }
.w6d72-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  align-items: flex-start;
}
.w6d72-step-num {
  width: 3.2rem; height: 3.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #F08080, #e85d5d);
  color: #0D1117;
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.w6d72-step-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
  color: var(--w6d72-text);
}
.w6d72-step-body p {
  font-size: 1.25rem;
  color: var(--w6d72-text-dim);
  line-height: 1.5;
}
.w6d72-badge {
  display: inline-block;
  background: var(--w6d72-primary);
  color: #0D1117;
  font-size: 1rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 0.4rem;
  margin-left: 0.4rem;
}
