/**
 * okplay casino apk - Shell stylesheet
 * Prefix: ce6fc3-
 * Palette: #006400 | #E9ECEF | #00B8D4 | #4DB6AC | #212F3D | #20B2AA
 * Mobile canvas: 320-430px. Wider screens keep the centered mobile canvas.
 */

:root {
  --ce6fc3-green: #006400;
  --ce6fc3-ice: #E9ECEF;
  --ce6fc3-cyan: #00B8D4;
  --ce6fc3-teal: #4DB6AC;
  --ce6fc3-navy: #212F3D;
  --ce6fc3-sea: #20B2AA;
  --ce6fc3-bg: #0b1620;
  --ce6fc3-bg-2: #102132;
  --ce6fc3-surface: #15293a;
  --ce6fc3-surface-2: #1b3346;
  --ce6fc3-line: rgba(233, 236, 239, 0.12);
  --ce6fc3-line-strong: rgba(233, 236, 239, 0.22);
  --ce6fc3-text: #E9ECEF;
  --ce6fc3-muted: #a7b4c0;
  --ce6fc3-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
  --ce6fc3-shadow-soft: 0 4px 14px rgba(0, 0, 0, 0.32);
  --ce6fc3-radius: 14px;
  --ce6fc3-radius-sm: 10px;
  --ce6fc3-max: 480px;
  --ce6fc3-header-h: 60px;
  --ce6fc3-bottom-h: 70px;
  --ce6fc3-gradient-brand: linear-gradient(135deg, #006400 0%, #0a5a3f 45%, #212F3D 100%);
  --ce6fc3-gradient-cta: linear-gradient(135deg, #00B8D4 0%, #20B2AA 60%, #4DB6AC 100%);
}

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

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  background: #04080c;
  color: var(--ce6fc3-text);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.ce6fc3-no-scroll { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }

/* App canvas */
.ce6fc3-app {
  max-width: var(--ce6fc3-max);
  margin: 0 auto;
  background: var(--ce6fc3-bg);
  min-height: 100vh;
  position: relative;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.65);
  padding-bottom: calc(var(--ce6fc3-bottom-h) + 18px);
  overflow: hidden;
}

/* ===== Header ===== */
.ce6fc3-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--ce6fc3-header-h);
  background: var(--ce6fc3-gradient-brand);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}
.ce6fc3-header-bar {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
}
.ce6fc3-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.ce6fc3-logo {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
  background: #04140c;
  flex-shrink: 0;
}
.ce6fc3-brand-name {
  font-weight: 800;
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: 0.2px;
  color: #ffffff;
  text-transform: lowercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ce6fc3-brand-name span { color: var(--ce6fc3-cyan); }

.ce6fc3-actions { display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.ce6fc3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.ce6fc3-btn:active { transform: scale(0.96); }
.ce6fc3-btn-register {
  background: var(--ce6fc3-gradient-cta);
  color: #04212a;
  box-shadow: 0 3px 12px rgba(0, 184, 212, 0.45);
}
.ce6fc3-btn-login {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}
.ce6fc3-btn-login:active { background: rgba(255, 255, 255, 0.08); }

.ce6fc3-menu-toggle {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}
.ce6fc3-menu-toggle .ce6fc3-bars,
.ce6fc3-menu-toggle .ce6fc3-bars::before,
.ce6fc3-menu-toggle .ce6fc3-bars::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  position: relative;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.ce6fc3-menu-toggle .ce6fc3-bars::before { position: absolute; top: -6px; left: 0; }
.ce6fc3-menu-toggle .ce6fc3-bars::after { position: absolute; top: 6px; left: 0; }

/* ===== Full-height menu layer ===== */
.ce6fc3-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 10, 0.55);
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.ce6fc3-full-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(86vw, 380px);
  background: var(--ce6fc3-navy);
  z-index: 70;
  transform: translateX(105%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.6);
  overflow-y: auto;
}
.ce6fc3-full-menu.ce6fc3-menu-open { transform: translateX(0); }
.ce6fc3-full-menu.ce6fc3-menu-open ~ .ce6fc3-menu-backdrop { opacity: 1; visibility: visible; }

.ce6fc3-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  background: var(--ce6fc3-gradient-brand);
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}
.ce6fc3-menu-head .ce6fc3-brand-name { font-size: 14px; }
.ce6fc3-menu-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
}
.ce6fc3-menu-body { padding: 12px 14px 28px; }
.ce6fc3-menu-section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--ce6fc3-cyan);
  margin: 14px 4px 8px;
  font-weight: 700;
}
.ce6fc3-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 10px;
  color: var(--ce6fc3-text);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.ce6fc3-menu-link:active { background: rgba(0, 184, 212, 0.12); border-color: rgba(0, 184, 212, 0.35); }
.ce6fc3-menu-link .ce6fc3-menu-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 184, 212, 0.15);
  color: var(--ce6fc3-cyan);
  font-size: 14px;
}
.ce6fc3-menu-cta-row {
  display: flex;
  gap: 8px;
  padding: 0 4px 6px;
}
.ce6fc3-menu-cta-row .ce6fc3-btn { flex: 1; min-height: 40px; }

/* ===== Hero ===== */
.ce6fc3-hero {
  position: relative;
  padding: 18px 14px 14px;
  background:
    radial-gradient(circle at 85% 8%, rgba(0, 184, 212, 0.18), transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(32, 178, 170, 0.18), transparent 55%),
    linear-gradient(160deg, #0a2a1d 0%, #07181f 60%, #050d12 100%);
  border-bottom: 1px solid var(--ce6fc3-line);
}
.ce6fc3-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 184, 212, 0.14);
  color: var(--ce6fc3-cyan);
  border: 1px solid rgba(0, 184, 212, 0.35);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ce6fc3-hero-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ce6fc3-cyan);
  box-shadow: 0 0 8px var(--ce6fc3-cyan);
}
.ce6fc3-hero h1 {
  font-size: 24px;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #ffffff;
  margin-bottom: 8px;
}
.ce6fc3-hero h1 .ce6fc3-hi { color: var(--ce6fc3-cyan); }
.ce6fc3-hero-lead {
  font-size: 14px;
  color: var(--ce6fc3-muted);
  margin-bottom: 14px;
  max-width: 360px;
}
.ce6fc3-hero-cta {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.ce6fc3-hero-cta .ce6fc3-btn { flex: 1 1 auto; min-height: 44px; font-size: 14px; padding: 0 16px; }
.ce6fc3-hero-cta .ce6fc3-btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ce6fc3-text);
  border: 1.5px solid var(--ce6fc3-line-strong);
}

.ce6fc3-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.ce6fc3-hero-stat {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ce6fc3-line);
  border-radius: 10px;
  padding: 9px 6px;
  text-align: center;
}
.ce6fc3-hero-stat b { display: block; font-size: 16px; color: var(--ce6fc3-cyan); font-weight: 800; }
.ce6fc3-hero-stat span { font-size: 10.5px; color: var(--ce6fc3-muted); text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== Carousel ===== */
.ce6fc3-carousel {
  position: relative;
  margin: 14px 14px 4px;
  border-radius: var(--ce6fc3-radius);
  overflow: hidden;
  box-shadow: var(--ce6fc3-shadow);
  background: #000;
}
.ce6fc3-carousel-track {
  position: relative;
  height: 188px;
}
.ce6fc3-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}
.ce6fc3-slide.ce6fc3-slide-active { opacity: 1; }
.ce6fc3-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ce6fc3-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 12, 17, 0.86) 6%, rgba(7, 12, 17, 0.15) 55%, rgba(7, 12, 17, 0.05) 100%);
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ce6fc3-slide-title {
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 3px;
}
.ce6fc3-slide-text {
  font-size: 12px;
  color: rgba(233, 236, 239, 0.86);
  margin-bottom: 8px;
}
.ce6fc3-slide-btn {
  align-self: flex-start;
  background: var(--ce6fc3-gradient-cta);
  color: #04212a;
  border-radius: 16px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ce6fc3-carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.ce6fc3-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: width 0.22s ease, background 0.22s ease;
}
.ce6fc3-carousel-dot.ce6fc3-dot-active {
  width: 22px;
  border-radius: 6px;
  background: var(--ce6fc3-cyan);
}
.ce6fc3-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(8, 14, 20, 0.6);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.ce6fc3-carousel-arrow.ce6fc3-prev { left: 8px; }
.ce6fc3-carousel-arrow.ce6fc3-next { right: 8px; }

/* ===== Sections / Main ===== */
.ce6fc3-main { padding: 16px 14px 8px; }
.ce6fc3-section { margin-bottom: 22px; }
.ce6fc3-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.ce6fc3-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--ce6fc3-sea);
  font-weight: 700;
  margin-bottom: 3px;
}
.ce6fc3-h2 {
  font-size: 19px;
  line-height: 1.28;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.2px;
}
.ce6fc3-h2 .ce6fc3-accent { color: var(--ce6fc3-cyan); }
.ce6fc3-h3 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 14px 0 6px;
}
.ce6fc3-para {
  font-size: 14px;
  color: var(--ce6fc3-muted);
  margin-bottom: 9px;
}
.ce6fc3-para strong, .ce6fc3-para b { color: var(--ce6fc3-text); font-weight: 700; }
.ce6fc3-link-inline {
  color: var(--ce6fc3-cyan);
  font-weight: 700;
  border-bottom: 1px dashed rgba(0, 184, 212, 0.55);
}
.ce6fc3-link-inline:active { color: var(--ce6fc3-sea); }

.ce6fc3-more {
  font-size: 12px;
  font-weight: 700;
  color: var(--ce6fc3-cyan);
  white-space: nowrap;
}

/* Intro cards */
.ce6fc3-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.ce6fc3-intro-card {
  background: var(--ce6fc3-surface);
  border: 1px solid var(--ce6fc3-line);
  border-radius: var(--ce6fc3-radius-sm);
  padding: 12px;
}
.ce6fc3-intro-ico {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 184, 212, 0.14);
  color: var(--ce6fc3-cyan);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-bottom: 8px;
}
.ce6fc3-intro-card b { display: block; font-size: 13.5px; color: #ffffff; margin-bottom: 3px; }
.ce6fc3-intro-card p { font-size: 12px; color: var(--ce6fc3-muted); line-height: 1.45; }

/* ===== Game area ===== */
.ce6fc3-games { margin-bottom: 22px; }
.ce6fc3-game-cat {
  margin-bottom: 20px;
  scroll-margin-top: calc(var(--ce6fc3-header-h) + 8px);
}
.ce6fc3-game-cat-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}
.ce6fc3-game-cat-badge {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ce6fc3-gradient-cta);
  color: #04212a;
  font-size: 14px;
  box-shadow: 0 3px 10px rgba(0, 184, 212, 0.35);
}
.ce6fc3-game-cat-title { font-size: 16px; font-weight: 800; color: #ffffff; }
.ce6fc3-game-cat-title .ce6fc3-count { color: var(--ce6fc3-muted); font-weight: 600; font-size: 12px; margin-left: 5px; }

.ce6fc3-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.ce6fc3-game-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--ce6fc3-surface);
  border: 1px solid var(--ce6fc3-line);
  border-radius: 11px;
  padding: 6px 4px 7px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  overflow: hidden;
  min-height: 44px;
}
.ce6fc3-game-card:active {
  transform: translateY(-2px) scale(0.97);
  border-color: rgba(0, 184, 212, 0.55);
  box-shadow: 0 6px 14px rgba(0, 184, 212, 0.25);
}
.ce6fc3-game-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: #0a1820;
  margin-bottom: 4px;
}
.ce6fc3-game-name {
  font-size: 10.5px;
  color: var(--ce6fc3-text);
  font-weight: 600;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 25px;
  width: 100%;
  word-break: break-word;
}
.ce6fc3-game-hot {
  position: relative;
}
.ce6fc3-game-hot::before {
  content: "HOT";
  position: absolute;
  top: 4px;
  left: 4px;
  background: linear-gradient(135deg, #ff5e62, #ff9966);
  color: #ffffff;
  font-size: 8.5px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 5px;
  letter-spacing: 0.4px;
  z-index: 2;
}

/* ===== Modules (RTP / Highlights / Security / How To Play) ===== */
.ce6fc3-modules {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ce6fc3-module {
  background: linear-gradient(160deg, var(--ce6fc3-surface) 0%, var(--ce6fc3-bg-2) 100%);
  border: 1px solid var(--ce6fc3-line);
  border-radius: var(--ce6fc3-radius);
  padding: 14px;
}
.ce6fc3-module-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}
.ce6fc3-module-ico {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(32, 178, 170, 0.16);
  color: var(--ce6fc3-sea);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.ce6fc3-module-list { margin-top: 6px; }
.ce6fc3-module-list li {
  position: relative;
  padding-left: 16px;
  font-size: 13px;
  color: var(--ce6fc3-muted);
  margin-bottom: 5px;
  line-height: 1.5;
}
.ce6fc3-module-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ce6fc3-cyan);
}

/* Compact category highlights row */
.ce6fc3-cat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.ce6fc3-cat-pill {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--ce6fc3-line);
  border-radius: 11px;
  padding: 10px;
}
.ce6fc3-cat-pill b { display: block; font-size: 13px; color: var(--ce6fc3-cyan); margin-bottom: 3px; }
.ce6fc3-cat-pill p { font-size: 11.5px; color: var(--ce6fc3-muted); line-height: 1.45; }

/* Security steps */
.ce6fc3-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin: 10px 0 4px;
}
.ce6fc3-step {
  background: rgba(0, 184, 212, 0.08);
  border: 1px solid rgba(0, 184, 212, 0.25);
  border-radius: 9px;
  padding: 8px 4px;
  text-align: center;
}
.ce6fc3-step b { display: block; color: var(--ce6fc3-cyan); font-size: 14px; font-weight: 800; }
.ce6fc3-step span { font-size: 9.5px; color: var(--ce6fc3-muted); line-height: 1.2; display: block; }

/* ===== Extended footer ===== */
.ce6fc3-extended {
  margin: 4px 14px 18px;
  background: linear-gradient(180deg, var(--ce6fc3-navy) 0%, #11202d 100%);
  border: 1px solid var(--ce6fc3-line);
  border-radius: 16px;
  padding: 16px 14px;
}
.ce6fc3-ext-group { margin-bottom: 14px; }
.ce6fc3-ext-group:last-child { margin-bottom: 0; }
.ce6fc3-ext-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ce6fc3-cyan);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ce6fc3-ext-title::before {
  content: "";
  width: 3px;
  height: 14px;
  background: var(--ce6fc3-cyan);
  border-radius: 2px;
}
.ce6fc3-ext-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 7px;
}
.ce6fc3-ext-brand img {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}
.ce6fc3-ext-brand b { color: #ffffff; font-size: 13.5px; font-weight: 800; }
.ce6fc3-ext-brand-text { font-size: 12px; color: var(--ce6fc3-muted); line-height: 1.5; }

.ce6fc3-ext-promos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}
.ce6fc3-ext-promo {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  border-radius: 9px;
  background: rgba(0, 184, 212, 0.1);
  border: 1px solid rgba(0, 184, 212, 0.3);
  color: var(--ce6fc3-text);
  font-size: 12px;
  font-weight: 700;
  transition: background 0.18s ease, transform 0.18s ease;
}
.ce6fc3-ext-promo:active { background: rgba(0, 184, 212, 0.22); transform: scale(0.97); }
.ce6fc3-ext-promo i { color: var(--ce6fc3-cyan); font-size: 13px; }

.ce6fc3-ext-directory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
.ce6fc3-ext-dir-link {
  font-size: 12px;
  color: var(--ce6fc3-muted);
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--ce6fc3-line);
  text-align: center;
  transition: background 0.18s ease, color 0.18s ease;
}
.ce6fc3-ext-dir-link:active { background: rgba(0, 184, 212, 0.14); color: var(--ce6fc3-cyan); }

.ce6fc3-ext-disclaimer {
  margin-top: 10px;
  font-size: 11px;
  color: rgba(167, 180, 192, 0.7);
  line-height: 1.5;
  border-top: 1px dashed var(--ce6fc3-line);
  padding-top: 9px;
}

/* ===== Footer ===== */
.ce6fc3-footer {
  background: #04101a;
  border-top: 1px solid var(--ce6fc3-line);
  padding: 18px 16px 14px;
  text-align: center;
  margin: 0 0 var(--ce6fc3-bottom-h);
}
.ce6fc3-footer-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  margin: 0 auto 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.ce6fc3-footer b { color: #ffffff; font-size: 14px; font-weight: 800; display: block; margin-bottom: 6px; }
.ce6fc3-footer p { font-size: 11.5px; color: var(--ce6fc3-muted); margin-bottom: 8px; line-height: 1.55; }
.ce6fc3-footer-copy { font-size: 11px; color: rgba(167, 180, 192, 0.65); }

/* ===== Bottom navigation ===== */
.ce6fc3-bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 100%;
  max-width: var(--ce6fc3-max);
  height: var(--ce6fc3-bottom-h);
  background: linear-gradient(180deg, #024f1a 0%, #013311 100%);
  border-top: 2px solid var(--ce6fc3-cyan);
  display: flex;
  align-items: stretch;
  z-index: 55;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.55);
}
.ce6fc3-bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: rgba(233, 236, 239, 0.72);
  font-size: 10px;
  font-weight: 600;
  position: relative;
  min-height: 44px;
  padding: 6px 2px 5px;
  transition: color 0.2s ease;
}
.ce6fc3-bottom-nav-item .ce6fc3-bn-ico {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.22s ease, background 0.22s ease;
}
.ce6fc3-bottom-nav-item.ce6fc3-bn-promo .ce6fc3-bn-ico { color: var(--ce6fc3-cyan); }
.ce6fc3-bottom-nav-item.ce6fc3-active { color: #ffffff; }
.ce6fc3-bottom-nav-item.ce6fc3-active .ce6fc3-bn-ico {
  background: rgba(0, 184, 212, 0.18);
  border-radius: 8px;
  color: var(--ce6fc3-cyan);
  transform: translateY(-1px) scale(1.05);
}
.ce6fc3-bottom-nav-item.ce6fc3-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--ce6fc3-cyan);
  border-radius: 0 0 4px 4px;
}
.ce6fc3-bottom-nav-item:active .ce6fc3-bn-ico { transform: scale(0.92); }
.ce6fc3-bottom-nav-item.ce6fc3-bn-promo::before {
  content: "";
  position: absolute;
  top: 4px;
  right: 50%;
  margin-right: -16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff9966;
  box-shadow: 0 0 6px #ff9966;
}

/* ===== Reveal animation ===== */
.ce6fc3-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.ce6fc3-reveal.ce6fc3-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive tweaks inside 320-430px ===== */
@media (max-width: 359px) {
  .ce6fc3-hero h1 { font-size: 21px; }
  .ce6fc3-game-grid { gap: 5px; }
  .ce6fc3-game-name { font-size: 10px; }
  .ce6fc3-ext-promos, .ce6fc3-ext-directory { grid-template-columns: 1fr; }
  .ce6fc3-brand-name { font-size: 13px; }
  .ce6fc3-btn { padding: 0 10px; font-size: 12px; }
  .ce6fc3-carousel-track { height: 168px; }
}
@media (min-width: 376px) {
  .ce6fc3-game-grid { grid-template-columns: repeat(4, 1fr); gap: 9px; }
  .ce6fc3-ext-promos { grid-template-columns: repeat(3, 1fr); }
  .ce6fc3-hero h1 { font-size: 26px; }
  .ce6fc3-carousel-track { height: 200px; }
}
@media (min-width: 410px) {
  .ce6fc3-game-grid { grid-template-columns: repeat(5, 1fr); }
  .ce6fc3-hero h1 { font-size: 27px; }
}

/* Help page accents */
.ce6fc3-help-hero {
  margin: 14px;
  padding: 18px 15px;
  border-radius: 18px 8px 18px 8px;
  background: linear-gradient(145deg, #123d2a 0%, #10283a 62%, #212f3d 100%);
  border: 1px solid rgba(0, 184, 212, 0.28);
  box-shadow: var(--ce6fc3-shadow-soft);
}
.ce6fc3-help-hero h1 { color: #fff; font-size: 24px; line-height: 1.22; margin-bottom: 8px; }
.ce6fc3-help-hero p { color: var(--ce6fc3-muted); font-size: 14px; }
.ce6fc3-answer {
  margin: 12px 14px 18px;
  padding: 13px 14px;
  border-left: 4px solid var(--ce6fc3-cyan);
  border-radius: 4px 13px 13px 4px;
  background: rgba(0, 184, 212, 0.09);
  color: var(--ce6fc3-text);
  font-size: 14px;
}
.ce6fc3-checklist { display: grid; gap: 8px; counter-reset: help-step; }
.ce6fc3-check-row {
  counter-increment: help-step;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
  padding: 11px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--ce6fc3-line);
  border-radius: 10px 4px 10px 4px;
}
.ce6fc3-check-row::before { content: counter(help-step); display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center; border-radius: 50%; background: var(--ce6fc3-gradient-cta); color: #04212a; font-weight: 800; }
.ce6fc3-check-row b { display: block; color: #fff; font-size: 13px; margin-bottom: 2px; }
.ce6fc3-check-row span { color: var(--ce6fc3-muted); font-size: 12.5px; line-height: 1.48; }
.ce6fc3-fact-band { display: flex; gap: 7px; overflow-x: auto; padding: 2px 0 10px; scrollbar-width: thin; }
.ce6fc3-fact { min-width: 112px; flex: 1; padding: 10px; background: #10283a; border-radius: 9px; border-bottom: 3px solid var(--ce6fc3-sea); }
.ce6fc3-fact b { display: block; color: var(--ce6fc3-cyan); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 15px; }
.ce6fc3-fact span { color: var(--ce6fc3-muted); font-size: 11px; }
.ce6fc3-promo-rail { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 10px; }
.ce6fc3-promo-tile { min-height: 48px; padding: 10px; border-radius: 9px; background: rgba(32, 178, 170, 0.11); border: 1px solid rgba(32, 178, 170, 0.28); color: #fff; font-size: 12px; font-weight: 700; display: flex; align-items: center; gap: 7px; }
.ce6fc3-promo-tile i { color: var(--ce6fc3-cyan); }
.ce6fc3-qa-list { display: grid; gap: 8px; }
.ce6fc3-qa { padding: 12px; background: var(--ce6fc3-surface); border: 1px solid var(--ce6fc3-line); border-radius: 12px 5px 12px 5px; }
.ce6fc3-qa h3 { margin: 0 0 5px; color: #fff; font-size: 14px; }
.ce6fc3-qa p { color: var(--ce6fc3-muted); font-size: 13px; }
.ce6fc3-split { display: grid; gap: 10px; }
.ce6fc3-split article { padding: 13px; background: linear-gradient(150deg, #15293a, #0d1d2a); border-top: 2px solid var(--ce6fc3-sea); border-radius: 8px 15px 8px 15px; }
.ce6fc3-split article h3 { margin: 0 0 6px; color: #fff; font-size: 15px; }
.ce6fc3-split article p, .ce6fc3-split article li { color: var(--ce6fc3-muted); font-size: 13px; line-height: 1.52; }
.ce6fc3-split article ul { list-style: disc; padding-left: 18px; }
.ce6fc3-promo-line { display: inline-flex; min-height: 44px; align-items: center; gap: 7px; padding: 9px 12px; border-radius: 20px; background: var(--ce6fc3-gradient-cta); color: #04212a; font-weight: 800; font-size: 12px; margin: 3px 4px 3px 0; }

/* Utility */
.ce6fc3-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
