/* jl pub layout styles - prefix: wc0e1- */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

:root {
  --wc0e1-primary: #008000;
  --wc0e1-primary-dark: #006600;
  --wc0e1-bg: #141414;
  --wc0e1-bg-soft: #1e1e1e;
  --wc0e1-panel: #4A4A4A;
  --wc0e1-text: #F0F0F0;
  --wc0e1-muted: #DCDCDC;
  --wc0e1-border: #3a3a3a;
  --wc0e1-accent: #00b300;
  --wc0e1-header-h: 56px;
  --wc0e1-bottom-h: 60px;
  --wc0e1-max: 430px;
  --wc0e1-radius: 1rem;
  --wc0e1-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.35);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--wc0e1-bg);
  color: var(--wc0e1-text);
  font-size: 1.4rem;
  line-height: 1.5rem;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a:hover {
  text-decoration: underline;
}

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* Layout */
.wc0e1-wrapper {
  width: 100%;
  max-width: var(--wc0e1-max);
  margin: 0 auto;
  min-height: 100vh;
  background: linear-gradient(180deg, #181818 0%, #141414 40%, #101010 100%);
  position: relative;
}

.wc0e1-container {
  width: 100%;
  padding: 0 1.2rem;
}

.wc0e1-main {
  padding-top: calc(var(--wc0e1-header-h) + 1rem);
  padding-bottom: 2rem;
}

.wc0e1-section {
  margin: 2rem 0;
  padding: 1.6rem 1.2rem;
  background: var(--wc0e1-bg-soft);
  border: 1px solid var(--wc0e1-border);
  border-radius: var(--wc0e1-radius);
  box-shadow: var(--wc0e1-shadow);
}

.wc0e1-grid {
  display: grid;
  gap: 1rem;
}

/* Header */
.wc0e1-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(20, 20, 20, 0.96);
  border-bottom: 1px solid var(--wc0e1-border);
  backdrop-filter: blur(8px);
}

.wc0e1-header-inner {
  max-width: var(--wc0e1-max);
  margin: 0 auto;
  min-height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  gap: 0.8rem;
}

.wc0e1-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--wc0e1-text);
  text-decoration: none;
  min-height: 4.4rem;
}

.wc0e1-logo img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.6rem;
}

.wc0e1-logo-text {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--wc0e1-text);
  letter-spacing: 0.02em;
}

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

/* Buttons */
.wc0e1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.4rem;
  min-width: 4.4rem;
  padding: 0.8rem 1.4rem;
  border-radius: 0.8rem;
  font-size: 1.3rem;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.wc0e1-btn:active {
  transform: scale(0.96);
}

.wc0e1-btn-register {
  background: var(--wc0e1-primary);
  color: #fff;
  box-shadow: 0 0.2rem 0.8rem rgba(0, 128, 0, 0.35);
}

.wc0e1-btn-login {
  background: transparent;
  color: var(--wc0e1-text);
  border: 1px solid var(--wc0e1-primary);
}

.wc0e1-btn-primary {
  background: linear-gradient(135deg, var(--wc0e1-primary) 0%, var(--wc0e1-accent) 100%);
  color: #fff;
  width: 100%;
  box-shadow: 0 0.4rem 1.2rem rgba(0, 128, 0, 0.3);
}

.wc0e1-btn-outline {
  background: transparent;
  color: var(--wc0e1-text);
  border: 1px solid var(--wc0e1-panel);
}

.wc0e1-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.wc0e1-btn-row .wc0e1-btn {
  flex: 1 1 auto;
}

.wc0e1-menu-toggle,
.wc0e1-menu-close {
  width: 4.4rem;
  height: 4.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: var(--wc0e1-panel);
  color: var(--wc0e1-text);
  font-size: 1.8rem;
}

/* Mobile menu */
.wc0e1-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

.wc0e1-overlay-show {
  opacity: 1;
  visibility: visible;
}

.wc0e1-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(86vw, 32rem);
  height: 100%;
  background: #1a1a1a;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  overflow-y: auto;
  border-left: 1px solid var(--wc0e1-border);
  padding: 1.2rem;
}

.wc0e1-menu-open {
  transform: translateX(0);
}

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

.wc0e1-menu-list li {
  margin-bottom: 0.4rem;
}

.wc0e1-menu-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 4.4rem;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  color: var(--wc0e1-text);
  font-size: 1.4rem;
  text-decoration: none;
}

.wc0e1-menu-list a:hover,
.wc0e1-menu-list a:active {
  background: rgba(0, 128, 0, 0.18);
  color: #fff;
  text-decoration: none;
}

.wc0e1-menu-list i,
.wc0e1-menu-list .material-icons,
.wc0e1-menu-list .ti {
  width: 2.4rem;
  font-size: 2rem;
  color: var(--wc0e1-primary);
  text-align: center;
}

/* Typography */
.wc0e1-h1 {
  font-size: 2rem;
  line-height: 1.35;
  margin: 1.6rem 0 1.2rem;
  color: #fff;
  font-weight: 800;
}

.wc0e1-h2 {
  font-size: 1.7rem;
  line-height: 1.35;
  margin: 0 0 1.2rem;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.wc0e1-h3 {
  font-size: 1.5rem;
  line-height: 1.35;
  margin: 1.2rem 0 0.8rem;
  color: var(--wc0e1-muted);
  font-weight: 700;
}

.wc0e1-text {
  font-size: 1.4rem;
  line-height: 1.55;
  color: var(--wc0e1-muted);
  margin-bottom: 1rem;
}

.wc0e1-promo-link {
  color: var(--wc0e1-accent);
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

.wc0e1-cat-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 128, 0, 0.15);
  color: var(--wc0e1-accent);
  border: 1px solid rgba(0, 128, 0, 0.35);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

/* Carousel */
.wc0e1-carousel {
  position: relative;
  width: 100%;
  border-radius: var(--wc0e1-radius);
  overflow: hidden;
  margin-bottom: 0.8rem;
  background: #000;
  aspect-ratio: 16 / 9;
}

.wc0e1-slide {
  display: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

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

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

.wc0e1-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 1.4rem;
}

.wc0e1-carousel-prev { left: 0.8rem; }
.wc0e1-carousel-next { right: 0.8rem; }

.wc0e1-carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  z-index: 2;
}

.wc0e1-dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.wc0e1-dot-active {
  background: var(--wc0e1-primary);
  transform: scale(1.2);
}

/* Game grid */
.wc0e1-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.wc0e1-game-card {
  background: #1a1a1a;
  border: 1px solid var(--wc0e1-border);
  border-radius: 0.8rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.wc0e1-game-card:active,
.wc0e1-game-card:hover {
  transform: translateY(-2px) scale(1.02);
  border-color: var(--wc0e1-primary);
  box-shadow: 0 0.4rem 1rem rgba(0, 128, 0, 0.25);
}

.wc0e1-game-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #0d0d0d;
}

.wc0e1-game-card span {
  display: block;
  padding: 0.5rem 0.3rem;
  font-size: 1rem;
  line-height: 1.25;
  color: var(--wc0e1-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Cards / feature modules */
.wc0e1-card {
  background: #1b1b1b;
  border: 1px solid var(--wc0e1-border);
  border-radius: 0.8rem;
  padding: 1.2rem;
  margin-bottom: 1rem;
}

.wc0e1-feature-list {
  display: grid;
  gap: 1rem;
}

.wc0e1-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: rgba(74, 74, 74, 0.25);
  border-radius: 0.8rem;
  border-left: 3px solid var(--wc0e1-primary);
}

.wc0e1-feature-item i,
.wc0e1-feature-item .material-icons,
.wc0e1-feature-item .bi,
.wc0e1-feature-item .ti {
  font-size: 2.2rem;
  color: var(--wc0e1-primary);
  min-width: 2.4rem;
}

.wc0e1-steps {
  counter-reset: wc0e1step;
}

.wc0e1-step {
  position: relative;
  padding: 1.2rem 1.2rem 1.2rem 4.4rem;
  margin-bottom: 0.8rem;
  background: rgba(0, 128, 0, 0.08);
  border-radius: 0.8rem;
  border: 1px solid rgba(0, 128, 0, 0.2);
}

.wc0e1-step::before {
  counter-increment: wc0e1step;
  content: counter(wc0e1step);
  position: absolute;
  left: 1rem;
  top: 1.2rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--wc0e1-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
}

.wc0e1-faq-item {
  border-bottom: 1px solid var(--wc0e1-border);
  padding: 1.2rem 0;
}

.wc0e1-faq-item:last-child {
  border-bottom: none;
}

.wc0e1-rtp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.wc0e1-rtp-card {
  background: #1a1a1a;
  border: 1px solid var(--wc0e1-border);
  border-radius: 0.8rem;
  padding: 1rem;
  text-align: center;
}

.wc0e1-rtp-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--wc0e1-accent);
  margin: 0.4rem 0;
}

.wc0e1-payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.wc0e1-payment-item {
  background: #1a1a1a;
  border: 1px solid var(--wc0e1-border);
  border-radius: 0.8rem;
  padding: 1.2rem 0.6rem;
  text-align: center;
  font-size: 1.1rem;
  color: var(--wc0e1-muted);
}

.wc0e1-payment-item i,
.wc0e1-payment-item .bi,
.wc0e1-payment-item .material-icons {
  display: block;
  font-size: 2.2rem;
  color: var(--wc0e1-primary);
  margin-bottom: 0.6rem;
}

.wc0e1-testimonial {
  background: #1a1a1a;
  border-radius: 0.8rem;
  padding: 1.2rem;
  margin-bottom: 0.8rem;
  border: 1px solid var(--wc0e1-border);
}

.wc0e1-testimonial strong {
  color: #fff;
  display: block;
  margin-bottom: 0.4rem;
}

.wc0e1-stars {
  color: #f5c518;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.wc0e1-winners {
  display: grid;
  gap: 0.6rem;
}

.wc0e1-winner-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: rgba(0, 128, 0, 0.08);
  border-radius: 0.6rem;
  font-size: 1.2rem;
}

.wc0e1-winner-row span:last-child {
  color: var(--wc0e1-accent);
  font-weight: 700;
}

/* Footer */
.wc0e1-footer {
  background: #0d0d0d;
  border-top: 1px solid var(--wc0e1-border);
  padding: 2.4rem 1.2rem 2rem;
  margin-top: 2rem;
}

.wc0e1-footer-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.8rem;
}

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

.wc0e1-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.wc0e1-footer-links a {
  color: var(--wc0e1-muted);
  font-size: 1.2rem;
  padding: 0.4rem 0.2rem;
}

.wc0e1-footer-promo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.2rem 0;
}

.wc0e1-footer-promo .wc0e1-btn {
  min-height: 4rem;
  font-size: 1.2rem;
  padding: 0.6rem 1rem;
  background: var(--wc0e1-panel);
  color: #fff;
}

.wc0e1-footer-promo .wc0e1-btn:nth-child(odd) {
  background: var(--wc0e1-primary);
}

.wc0e1-copyright {
  font-size: 1.1rem;
  color: #888;
  text-align: center;
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--wc0e1-border);
}

/* Bottom navigation - unique pill style */
.wc0e1-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  height: 6.2rem;
  background: linear-gradient(180deg, #1c1c1c 0%, #121212 100%);
  border-top: 2px solid var(--wc0e1-primary);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  max-width: var(--wc0e1-max);
  margin: 0 auto;
  box-shadow: 0 -0.4rem 1.6rem rgba(0, 0, 0, 0.4);
}

.wc0e1-bottom-nav a,
.wc0e1-bottom-nav button {
  flex: 1;
  min-width: 6rem;
  min-height: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: var(--wc0e1-muted);
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.15s ease;
  background: transparent;
  border: none;
  padding: 0.4rem;
}

.wc0e1-bottom-nav a i,
.wc0e1-bottom-nav a .material-icons,
.wc0e1-bottom-nav a .bi,
.wc0e1-bottom-nav a .ti,
.wc0e1-bottom-nav button i,
.wc0e1-bottom-nav button .material-icons,
.wc0e1-bottom-nav button .bi,
.wc0e1-bottom-nav button .ti {
  font-size: 2.2rem;
  line-height: 1;
}

.wc0e1-bottom-nav a:active,
.wc0e1-bottom-nav button:active {
  transform: scale(0.92);
  color: var(--wc0e1-accent);
}

.wc0e1-bottom-nav .wc0e1-nav-active {
  color: var(--wc0e1-accent);
}

.wc0e1-bottom-nav .wc0e1-nav-active i,
.wc0e1-bottom-nav .wc0e1-nav-active .material-icons {
  filter: drop-shadow(0 0 0.4rem rgba(0, 179, 0, 0.5));
}

.wc0e1-nav-icon-wrap {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.wc0e1-nav-active .wc0e1-nav-icon-wrap {
  background: rgba(0, 128, 0, 0.2);
}

/* Mobile bottom padding */
@media (max-width: 768px) {
  .wc0e1-main {
    padding-bottom: 8rem;
  }
  .wc0e1-footer {
    padding-bottom: 8.4rem;
  }
}

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

  .wc0e1-wrapper {
    max-width: 430px;
    box-shadow: 0 0 4rem rgba(0, 0, 0, 0.5);
  }

  body {
    background: #0a0a0a;
  }

  .wc0e1-game-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 360px) {
  .wc0e1-game-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wc0e1-logo-text {
    font-size: 1.4rem;
  }

  .wc0e1-btn-register,
  .wc0e1-btn-login {
    padding: 0.6rem 1rem;
    font-size: 1.2rem;
  }
}
