/*!
 * okplay-casino-apk.click base stylesheet
 * Prefix: weca6- (all custom classes)
 * Palette: #1E1E1E (dark bg) | #87CEEB (sky text/accent) | #1E90FF (brand blue)
 * Mobile-first, max-width 430px container.
 */
:root {
  --weca6-bg: #1E1E1E;
  --weca6-bg-2: #151515;
  --weca6-bg-3: #242424;
  --weca6-sky: #87CEEB;
  --weca6-blue: #1E90FF;
  --weca6-blue-dark: #0e6bc4;
  --weca6-text: #f3f6fb;
  --weca6-muted: #9aa6b3;
  --weca6-border: rgba(135, 206, 235, 0.18);
  --weca6-gold: #ffd27a;
  --weca6-red: #ff5b6e;
  --weca6-green: #4ade80;
  --weca6-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
  --weca6-radius: 14px;
  --weca6-max: 430px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--weca6-bg);
  background-image: radial-gradient(circle at top, #20283a 0%, var(--weca6-bg) 55%);
  color: var(--weca6-text);
  font-family: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--weca6-sky); text-decoration: none; }

/* ---------- layout helpers ---------- */
.weca6-wrapper { width: 100%; max-width: var(--weca6-max); margin: 0 auto; position: relative; }
.weca6-container { padding: 0 14px; }
.weca6-section { padding: 26px 14px; }
.weca6-section-alt { background: linear-gradient(180deg, #1b2233, #15191f); }

.weca6-reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.weca6-reveal.weca6-revealed { opacity: 1; transform: none; }

/* ---------- top header ---------- */
.weca6-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, rgba(20,24,32,.96), rgba(20,24,32,.88));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--weca6-border);
}
.weca6-header-inner {
  max-width: var(--weca6-max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px; gap: 8px;
}
.weca6-brand { display: flex; align-items: center; gap: 8px; min-width: 0; }
.weca6-brand img { width: 30px; height: 30px; border-radius: 8px; }
.weca6-brand-name {
  font-size: 15px; font-weight: 800; letter-spacing: .2px; color: var(--weca6-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.weca6-brand-name b { color: var(--weca6-blue); }
.weca6-header-actions { display: flex; align-items: center; gap: 6px; }

.weca6-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border: 0; cursor: pointer; font-weight: 700; font-size: 13px;
  padding: 8px 14px; border-radius: 999px; text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  min-height: 36px; line-height: 1;
}
.weca6-btn-login { background: transparent; color: var(--weca6-sky); border: 1px solid var(--weca6-sky); }
.weca6-btn-login:hover { background: rgba(135,206,235,.12); }
.weca6-btn-register { background: linear-gradient(135deg, var(--weca6-blue), #5ab8ff); color: #fff; box-shadow: 0 6px 16px rgba(30,144,255,.45); }
.weca6-btn-register:hover { transform: translateY(-1px); }

.weca6-menu-btn {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--weca6-border);
  background: var(--weca6-bg-3); color: var(--weca6-sky);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
}
.weca6-menu-btn .material-icons-outlined { font-size: 24px; }

/* ---------- mobile dropdown menu ---------- */
.weca6-mobilemenu {
  position: fixed; top: 56px; left: 0; right: 0; z-index: 9999;
  max-height: 0; overflow: hidden; transition: max-height .32s ease;
  background: rgba(15,18,25,.98); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--weca6-border);
}
.weca6-mobilemenu.weca6-is-open { max-height: 80vh; overflow-y: auto; }
.weca6-mobilemenu ul { list-style: none; margin: 0; padding: 8px 14px 14px; max-width: var(--weca6-max); margin-inline: auto; }
.weca6-mobilemenu li { border-bottom: 1px solid rgba(255,255,255,.05); }
.weca6-mobilemenu a {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 6px; color: var(--weca6-text); font-weight: 600;
}
.weca6-mobilemenu a i, .weca6-mobilemenu a .material-icons-outlined { color: var(--weca6-sky); font-size: 20px; }
.weca6-mobilemenu a:hover { color: var(--weca6-blue); }

/* ---------- hero carousel ---------- */
.weca6-hero { padding: 64px 0 0; }
.weca6-carousel { position: relative; overflow: hidden; border-radius: 0; }
.weca6-slides { position: relative; }
.weca6-slide {
  position: relative; display: none; cursor: pointer;
}
.weca6-slide.weca6-is-active { display: block; }
.weca6-slide img { width: 100%; height: 200px; object-fit: cover; }
.weca6-slide-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85));
}
.weca6-slide-caption h2 { margin: 0 0 4px; font-size: 17px; color: #fff; }
.weca6-slide-caption p { margin: 0; font-size: 12px; color: var(--weca6-sky); }
.weca6-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%; border: 0;
  background: rgba(0,0,0,.5); color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.weca6-arrow i { font-size: 16px; }
.weca6-arrow-prev { left: 8px; }
.weca6-arrow-next { right: 8px; }
.weca6-dots { display: flex; justify-content: center; gap: 6px; padding: 8px 0; }
.weca6-dot {
  width: 8px; height: 8px; border-radius: 50%; border: 0;
  background: rgba(135,206,235,.35); cursor: pointer;
}
.weca6-dot.weca6-is-active { background: var(--weca6-blue); width: 22px; border-radius: 6px; }

/* ---------- section heading ---------- */
.weca6-section-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.weca6-section-head .weca6-ico {
  width: 34px; height: 34px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(30,144,255,.25), rgba(135,206,235,.18));
  color: var(--weca6-sky);
}
.weca6-section-head h2 { margin: 0; font-size: 18px; font-weight: 800; }
.weca6-section-head h2 span { color: var(--weca6-blue); }
.weca6-section-sub { color: var(--weca6-muted); font-size: 13px; margin: 0 0 14px; }

/* ---------- game grid (compact tiles) ---------- */
.weca6-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.weca6-card {
  display: block; background: var(--weca6-bg-3); border: 1px solid var(--weca6-border);
  border-radius: var(--weca6-radius); overflow: hidden; cursor: pointer;
  transition: transform .18s ease, box-shadow .2s ease, border-color .2s ease;
}
.weca6-card:hover { transform: translateY(-2px); border-color: var(--weca6-blue); box-shadow: 0 6px 16px rgba(30,144,255,.25); }
.weca6-card-img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.weca6-card-name { font-size: 11px; padding: 6px 6px 7px; text-align: center; color: var(--weca6-text); line-height: 1.25rem; word-break: break-word; }
.weca6-card-tag {
  position: absolute; top: 6px; left: 6px; background: rgba(255,91,110,.95); color: #fff;
  font-size: 9px; padding: 2px 6px; border-radius: 6px; font-weight: 700;
}
.weca6-card-wrap { position: relative; }

/* ---------- category chip strip ---------- */
.weca6-chips { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
.weca6-chip {
  flex: 0 0 auto; padding: 7px 14px; border-radius: 999px;
  background: var(--weca6-bg-3); border: 1px solid var(--weca6-border);
  color: var(--weca6-text); font-size: 12px; font-weight: 700; white-space: nowrap;
}
.weca6-chip i { color: var(--weca6-sky); margin-right: 4px; }

/* ---------- CTA buttons ---------- */
.weca6-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.weca6-cta .weca6-btn-primary {
  flex: 1 1 100%; padding: 14px; font-size: 15px; border-radius: 14px;
  background: linear-gradient(135deg, var(--weca6-blue), #5ab8ff); color: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 8px 22px rgba(30,144,255,.5); border: 0; cursor: pointer; font-weight: 800;
}
.weca6-cta .weca6-btn-ghost {
  flex: 1 1 100%; padding: 12px; font-size: 13px; border-radius: 12px;
  background: transparent; color: var(--weca6-sky); border: 1px solid var(--weca6-sky);
  display: inline-flex; align-items: center; justify-content: center; gap: 6px; cursor: pointer; font-weight: 700;
}
.weca6-text-link { color: var(--weca6-blue); font-weight: 700; }
.weca6-text-link:hover { text-decoration: underline; }

/* ---------- content text block ---------- */
.weca6-prose { color: var(--weca6-text); font-size: 14px; line-height: 1.6rem; }
.weca6-prose p { margin: 0 0 12px; }
.weca6-prose h3 { font-size: 15px; margin: 16px 0 6px; color: var(--weca6-sky); }
.weca6-prose ul { margin: 0 0 12px; padding-left: 18px; }
.weca6-prose li { margin-bottom: 6px; }
.weca6-prose strong { color: var(--weca6-gold); }

/* ---------- feature / steps list ---------- */
.weca6-steps { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.weca6-step {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--weca6-bg-3); border: 1px solid var(--weca6-border);
  border-radius: 12px; padding: 12px;
}
.weca6-step-num {
  flex: 0 0 32px; width: 32px; height: 32px; border-radius: 10px;
  background: linear-gradient(135deg, var(--weca6-blue), #5ab8ff);
  color: #fff; font-weight: 800; display: inline-flex; align-items: center; justify-content: center;
}
.weca6-step h4 { margin: 0 0 4px; font-size: 14px; color: var(--weca6-text); }
.weca6-step p { margin: 0; font-size: 12px; color: var(--weca6-muted); line-height: 1.4rem; }

/* ---------- RTP table ---------- */
.weca6-table { width: 100%; border-collapse: collapse; font-size: 12px; background: var(--weca6-bg-3); border-radius: 12px; overflow: hidden; }
.weca6-table th, .weca6-table td { padding: 9px 10px; border-bottom: 1px solid rgba(255,255,255,.06); text-align: left; }
.weca6-table th { background: rgba(30,144,255,.18); color: var(--weca6-sky); font-weight: 700; }
.weca6-table td:last-child { color: var(--weca6-green); font-weight: 700; }
.weca6-bar { display: inline-block; height: 6px; border-radius: 4px; background: linear-gradient(90deg, var(--weca6-blue), var(--weca6-sky)); vertical-align: middle; }

/* ---------- winners / testimonials ---------- */
.weca6-row { display: grid; gap: 10px; grid-template-columns: 1fr; }
.weca6-tile {
  background: var(--weca6-bg-3); border: 1px solid var(--weca6-border);
  border-radius: 12px; padding: 12px;
}
.weca6-winner { display: flex; align-items: center; gap: 10px; }
.weca6-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--weca6-blue), var(--weca6-sky)); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; }
.weca6-winner-name { font-weight: 700; font-size: 13px; }
.weca6-winner-meta { color: var(--weca6-muted); font-size: 11px; }
.weca6-winner-amt { margin-left: auto; color: var(--weca6-gold); font-weight: 800; font-size: 13px; }
.weca6-stars { color: var(--weca6-gold); font-size: 12px; }

/* ---------- payment grid ---------- */
.weca6-pay { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.weca6-pay-tile {
  background: var(--weca6-bg-3); border: 1px solid var(--weca6-border);
  border-radius: 10px; padding: 12px 6px; text-align: center;
}
.weca6-pay-tile i, .weca6-pay-tile .material-icons-outlined { font-size: 22px; color: var(--weca6-sky); }
.weca6-pay-tile span { display: block; font-size: 11px; margin-top: 4px; color: var(--weca6-text); }

/* ---------- FAQ ---------- */
.weca6-faq-item {
  background: var(--weca6-bg-3); border: 1px solid var(--weca6-border);
  border-radius: 12px; padding: 12px 14px; margin-bottom: 10px;
}
.weca6-faq-item h3 { margin: 0 0 6px; font-size: 14px; color: var(--weca6-sky); display: flex; gap: 8px; align-items: center; }
.weca6-faq-item p { margin: 0; font-size: 13px; color: var(--weca6-text); line-height: 1.5rem; }

/* ---------- app download box ---------- */
.weca6-appbox {
  display: flex; align-items: center; gap: 12px; padding: 14px;
  background: linear-gradient(135deg, rgba(30,144,255,.18), rgba(135,206,235,.08));
  border: 1px solid var(--weca6-border); border-radius: 14px;
}
.weca6-appbox-icon { font-size: 38px; color: var(--weca6-sky); }
.weca6-appbox h3 { margin: 0 0 2px; font-size: 15px; }
.weca6-appbox p { margin: 0; font-size: 12px; color: var(--weca6-muted); }

/* ---------- footer ---------- */
.weca6-footer { background: var(--weca6-bg-2); border-top: 1px solid var(--weca6-border); padding: 24px 14px 100px; }
.weca6-footer-brand { font-size: 13px; color: var(--weca6-muted); line-height: 1.6rem; margin-bottom: 14px; }
.weca6-footer h4 { color: var(--weca6-sky); font-size: 13px; margin: 14px 0 8px; letter-spacing: .5px; }
.weca6-footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 12px; }
.weca6-footer-links a { color: var(--weca6-text); font-size: 12px; }
.weca6-footer-links a:hover { color: var(--weca6-blue); }
.weca6-promo-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.weca6-promo-row .weca6-btn { flex: 1 1 45%; font-size: 12px; padding: 9px 8px; }
.weca6-copy { font-size: 11px; color: var(--weca6-muted); text-align: center; margin-top: 14px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.06); }

/* ---------- back to top ---------- */
.weca6-backtop {
  position: fixed; right: 14px; bottom: 76px; z-index: 1100;
  width: 42px; height: 42px; border-radius: 50%; border: 0;
  background: var(--weca6-blue); color: #fff; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .25s ease;
  box-shadow: 0 6px 18px rgba(30,144,255,.5);
}
.weca6-backtop.weca6-is-visible { opacity: 1; visibility: visible; transform: none; }

/* ---------- mobile bottom nav ---------- */
.weca6-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  max-width: var(--weca6-max); margin: 0 auto;
  height: 62px; display: flex; justify-content: space-around; align-items: stretch;
  background: linear-gradient(180deg, #181d27, #0f1218);
  border-top: 1px solid var(--weca6-border);
  box-shadow: 0 -6px 22px rgba(0,0,0,.5);
}
.weca6-bottomnav-link {
  flex: 1 1 0; min-width: 60px; min-height: 60px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  color: var(--weca6-muted); font-size: 10px; font-weight: 600; text-decoration: none;
  position: relative; transition: color .2s ease, transform .15s ease;
}
.weca6-bottomnav-link i,
.weca6-bottomnav-link .material-icons-outlined,
.weca6-bottomnav-link .material-icons { font-size: 22px; }
.weca6-bottomnav-link:active { transform: scale(.92); }
.weca6-bottomnav-link.weca6-is-current { color: var(--weca6-blue); }
.weca6-bottomnav-link.weca6-is-current::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 26px; height: 3px; border-radius: 0 0 6px 6px; background: var(--weca6-blue);
}
.weca6-bottomnav-link.weca6-promo { color: var(--weca6-gold); }
.weca6-bottomnav-badge {
  position: absolute; top: 6px; right: 18px;
  background: var(--weca6-red); color: #fff; font-size: 8px;
  border-radius: 8px; padding: 1px 5px; font-weight: 800;
}

/* ---------- desktop: hide bottom nav, widen container ---------- */
@media (min-width: 769px) {
  .weca6-bottomnav { display: none; }
  .weca6-backtop { bottom: 24px; }
  .weca6-footer { padding-bottom: 40px; }
  .weca6-wrapper { max-width: 720px; }
  body { font-size: 16px; }
  .weca6-grid { grid-template-columns: repeat(5, 1fr); }
  .weca6-pay { grid-template-columns: repeat(6, 1fr); }
  .weca6-row { grid-template-columns: 1fr 1fr; }
}

/* mobile: ensure content clears fixed header & bottom nav */
@media (max-width: 768px) {
  main { padding-bottom: 80px; }
  .weca6-section { padding: 22px 14px; }
}
