/*!
 * okada play time - Core stylesheet (design-c9c8.css)
 * Philippine-focused mobile-first online casino entertainment platform.
 * All custom classes use the wc9c8- prefix for namespace isolation.
 * Color palette: #9966CC (purple) | #E65100 (orange) | #333333 (dark) | #20B2AA (teal) | #006400 (green)
 * Comments in English only.
 */

:root {
  --wc9c8-primary: #9966CC;
  --wc9c8-primary-dark: #6b3f9c;
  --wc9c8-accent: #E65100;
  --wc9c8-accent-light: #ff7a1f;
  --wc9c8-bg: #1a1330;
  --wc9c8-bg-2: #241a44;
  --wc9c8-bg-3: #2e2150;
  --wc9c8-card: #2a1f4a;
  --wc9c8-text: #f4f0ff;
  --wc9c8-text-muted: #b8a8d8;
  --wc9c8-teal: #20B2AA;
  --wc9c8-green: #006400;
  --wc9c8-dark: #333333;
  --wc9c8-gold: #ffcf5c;
  --wc9c8-border: rgba(153, 102, 204, 0.28);
  --wc9c8-shadow: 0 0.6rem 1.8rem rgba(0, 0, 0, 0.45);
  --wc9c8-radius: 1.2rem;
  --wc9c8-radius-sm: 0.8rem;
  --wc9c8-header-h: 6.4rem;
  --wc9c8-nav-h: 6.2rem;
}

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

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

body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: radial-gradient(circle at 20% 10%, #311d5e 0%, var(--wc9c8-bg) 55%, #120b24 100%);
  background-attachment: fixed;
  color: var(--wc9c8-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--wc9c8-accent-light); text-decoration: none; }
a:hover, a:focus { color: var(--wc9c8-gold); }
img { max-width: 100%; display: block; }

.wc9c8-container { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.wc9c8-wrapper { width: 100%; max-width: 430px; margin: 0 auto; }

/* ===== Header ===== */
.wc9c8-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, rgba(26,19,48,0.96), rgba(46,33,80,0.96));
  backdrop-filter: blur(10px);
  border-bottom: 0.1rem solid var(--wc9c8-border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.wc9c8-header.wc9c8-scrolled { box-shadow: 0 0.4rem 1.2rem rgba(0,0,0,0.55); }
.wc9c8-header-inner {
  max-width: 430px; margin: 0 auto; height: var(--wc9c8-header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.2rem; gap: 0.8rem;
}
.wc9c8-logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.wc9c8-logo img { width: 2.8rem; height: 2.8rem; border-radius: 0.6rem; }
.wc9c8-logo-text { font-size: 1.5rem; font-weight: 800; color: var(--wc9c8-text);
  background: linear-gradient(90deg, var(--wc9c8-primary), var(--wc9c8-accent-light));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  white-space: nowrap; letter-spacing: 0.02em; }
.wc9c8-header-actions { display: flex; align-items: center; gap: 0.6rem; }
.wc9c8-menu-btn {
  background: transparent; border: 0.1rem solid var(--wc9c8-border); color: var(--wc9c8-text);
  width: 4rem; height: 4rem; border-radius: 0.8rem; font-size: 1.8rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.wc9c8-menu-btn:hover { background: var(--wc9c8-bg-3); }

/* ===== Buttons ===== */
.wc9c8-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  padding: 0.9rem 1.6rem; font-size: 1.3rem; font-weight: 700; border: none;
  border-radius: 2rem; cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s;
  text-decoration: none; line-height: 1; min-height: 4rem;
}
.wc9c8-btn:active { transform: scale(0.96); }
.wc9c8-btn-primary { background: linear-gradient(135deg, var(--wc9c8-accent), var(--wc9c8-accent-light));
  color: #fff; box-shadow: 0 0.4rem 1.2rem rgba(230,81,0,0.45); }
.wc9c8-btn-primary:hover { filter: brightness(1.1); color: #fff; }
.wc9c8-btn-secondary { background: linear-gradient(135deg, var(--wc9c8-primary), var(--wc9c8-primary-dark));
  color: #fff; box-shadow: 0 0.4rem 1.2rem rgba(153,102,204,0.4); }
.wc9c8-btn-secondary:hover { filter: brightness(1.1); color: #fff; }
.wc9c8-btn-ghost { background: transparent; border: 0.15rem solid var(--wc9c8-primary); color: var(--wc9c8-text); }
.wc9c8-btn-ghost:hover { background: var(--wc9c8-bg-3); color: var(--wc9c8-text); }
.wc9c8-btn-block { width: 100%; }
.wc9c8-btn-sm { padding: 0.6rem 1.1rem; font-size: 1.1rem; min-height: 3.4rem; }
.wc9c8-btn-lg { padding: 1.1rem 2rem; font-size: 1.5rem; min-height: 4.6rem; }
.wc9c8-text-link { color: var(--wc9c8-accent-light); font-weight: 700; cursor: pointer; }
.wc9c8-text-link:hover { color: var(--wc9c8-gold); text-decoration: underline; }

/* ===== Mobile menu ===== */
.wc9c8-mobile-menu {
  position: fixed; top: var(--wc9c8-header-h); left: 0; right: 0; z-index: 9999;
  background: linear-gradient(180deg, rgba(26,19,48,0.99), rgba(36,26,68,0.99));
  border-bottom: 0.1rem solid var(--wc9c8-border);
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.wc9c8-mobile-menu.wc9c8-open { max-height: 80vh; overflow-y: auto; box-shadow: var(--wc9c8-shadow); }
.wc9c8-mobile-menu-inner { max-width: 430px; margin: 0 auto; padding: 1.2rem; }
.wc9c8-mobile-menu a {
  display: flex; align-items: center; gap: 0.9rem; padding: 1.2rem 1rem;
  color: var(--wc9c8-text); border-bottom: 0.1rem solid rgba(153,102,204,0.14); font-size: 1.35rem; font-weight: 600;
}
.wc9c8-mobile-menu a:hover { background: var(--wc9c8-bg-3); color: var(--wc9c8-gold); }
.wc9c8-mobile-menu a i, .wc9c8-mobile-menu a .material-icons-outlined { font-size: 2rem; color: var(--wc9c8-primary); }

/* ===== Main ===== */
.wc9c8-main { padding-top: calc(var(--wc9c8-header-h) + 1rem); }

/* ===== Hero carousel ===== */
.wc9c8-hero { position: relative; border-radius: var(--wc9c8-radius); overflow: hidden; margin-bottom: 1.6rem; box-shadow: var(--wc9c8-shadow); }
.wc9c8-carousel { position: relative; width: 100%; aspect-ratio: 16 / 9; background: var(--wc9c8-bg-2); }
.wc9c8-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease;
  display: flex; align-items: flex-end; cursor: pointer;
}
.wc9c8-slide.wc9c8-active { opacity: 1; }
.wc9c8-slide img { width: 100%; height: 100%; object-fit: cover; }
.wc9c8-slide-overlay {
  position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,19,48,0) 40%, rgba(26,19,48,0.88) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.6rem;
}
.wc9c8-slide-title { font-size: 1.7rem; font-weight: 800; color: #fff; margin-bottom: 0.4rem; text-shadow: 0 0.2rem 0.6rem rgba(0,0,0,0.6); }
.wc9c8-slide-sub { font-size: 1.2rem; color: var(--wc9c8-text-muted); margin-bottom: 0.8rem; }
.wc9c8-dots { position: absolute; bottom: 1rem; right: 1.2rem; display: flex; gap: 0.5rem; z-index: 5; }
.wc9c8-dot { width: 0.8rem; height: 0.8rem; border-radius: 50%; background: rgba(255,255,255,0.45); cursor: pointer; transition: all 0.25s; }
.wc9c8-dot.wc9c8-active { background: var(--wc9c8-accent); width: 2rem; border-radius: 0.4rem; }

/* ===== Section ===== */
.wc9c8-section { margin-bottom: 2rem; }
.wc9c8-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; gap: 0.8rem; }
.wc9c8-section-title { font-size: 1.7rem; font-weight: 800; color: var(--wc9c8-text);
  display: flex; align-items: center; gap: 0.6rem; }
.wc9c8-section-title .material-icons-outlined, .wc9c8-section-title i { color: var(--wc9c8-accent); font-size: 2rem; }
.wc9c8-section-title::before {
  content: ""; width: 0.4rem; height: 2rem; border-radius: 0.2rem;
  background: linear-gradient(180deg, var(--wc9c8-primary), var(--wc9c8-accent));
}
.wc9c8-section-link { font-size: 1.1rem; color: var(--wc9c8-accent-light); font-weight: 600; white-space: nowrap; }

/* ===== Game grid ===== */
.wc9c8-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
.wc9c8-game-card {
  background: var(--wc9c8-card); border-radius: var(--wc9c8-radius-sm); overflow: hidden;
  cursor: pointer; border: 0.1rem solid var(--wc9c8-border); position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s;
}
.wc9c8-game-card:hover, .wc9c8-game-card:active {
  transform: translateY(-0.3rem); box-shadow: 0 0.6rem 1.4rem rgba(153,102,204,0.4); border-color: var(--wc9c8-primary);
}
.wc9c8-game-thumb { width: 100%; aspect-ratio: 1 / 1; background: var(--wc9c8-bg-3); }
.wc9c8-game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.wc9c8-game-name {
  font-size: 1.05rem; color: var(--wc9c8-text); text-align: center; padding: 0.5rem 0.4rem;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.25));
}
.wc9c8-game-badge {
  position: absolute; top: 0.4rem; left: 0.4rem; background: var(--wc9c8-accent); color: #fff;
  font-size: 0.85rem; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 0.4rem; z-index: 2;
}

/* ===== Category chips ===== */
.wc9c8-chips { display: flex; gap: 0.6rem; overflow-x: auto; padding: 0.2rem 0 0.8rem; -webkit-overflow-scrolling: touch; }
.wc9c8-chips::-webkit-scrollbar { display: none; }
.wc9c8-chip {
  flex: 0 0 auto; padding: 0.6rem 1.2rem; border-radius: 2rem; background: var(--wc9c8-card);
  color: var(--wc9c8-text-muted); font-size: 1.15rem; font-weight: 600; border: 0.1rem solid var(--wc9c8-border);
  display: flex; align-items: center; gap: 0.4rem; cursor: pointer;
}
.wc9c8-chip i, .wc9c8-chip .material-icons-outlined { font-size: 1.4rem; }

/* ===== Cards / panels ===== */
.wc9c8-card {
  background: linear-gradient(160deg, var(--wc9c8-card), var(--wc9c8-bg-3));
  border: 0.1rem solid var(--wc9c8-border); border-radius: var(--wc9c8-radius);
  padding: 1.4rem; margin-bottom: 1.2rem; box-shadow: var(--wc9c8-shadow);
}
.wc9c8-card h2, .wc9c8-card h3 { color: var(--wc9c8-text); }
.wc9c8-card p { color: var(--wc9c8-text-muted); margin-bottom: 0.8rem; font-size: 1.3rem; line-height: 1.6rem; }
.wc9c8-card p:last-child { margin-bottom: 0; }
.wc9c8-card-accent { border-left: 0.4rem solid var(--wc9c8-accent); }
.wc9c8-card-primary { border-left: 0.4rem solid var(--wc9c8-primary); }
.wc9c8-card-teal { border-left: 0.4rem solid var(--wc9c8-teal); }

/* ===== H tags ===== */
.wc9c8-h1 { font-size: 2.1rem; font-weight: 800; line-height: 1.3; margin-bottom: 0.6rem;
  background: linear-gradient(90deg, #fff, var(--wc9c8-primary));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.wc9c8-h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: 0.8rem; color: var(--wc9c8-text); }
.wc9c8-h3 { font-size: 1.4rem; font-weight: 700; margin: 1rem 0 0.5rem; color: var(--wc9c8-accent-light); }
.wc9c8-lead { font-size: 1.35rem; color: var(--wc9c8-text-muted); line-height: 1.7rem; margin-bottom: 1rem; }

/* ===== Feature list ===== */
.wc9c8-feature-grid { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
.wc9c8-feature-item {
  display: flex; gap: 1rem; padding: 1.1rem; border-radius: var(--wc9c8-radius-sm);
  background: var(--wc9c8-card); border: 0.1rem solid var(--wc9c8-border);
}
.wc9c8-feature-icon { flex: 0 0 3.6rem; width: 3.6rem; height: 3.6rem; border-radius: 0.8rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.9rem;
  background: linear-gradient(135deg, var(--wc9c8-primary), var(--wc9c8-accent)); color: #fff; }
.wc9c8-feature-body h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--wc9c8-text); }
.wc9c8-feature-body p { font-size: 1.2rem; color: var(--wc9c8-text-muted); margin: 0; line-height: 1.5rem; }

/* ===== Steps ===== */
.wc9c8-steps { counter-reset: step; display: flex; flex-direction: column; gap: 0.9rem; }
.wc9c8-step { display: flex; gap: 1rem; padding: 1.1rem; border-radius: var(--wc9c8-radius-sm); background: var(--wc9c8-card); border: 0.1rem solid var(--wc9c8-border); }
.wc9c8-step-num { flex: 0 0 3rem; width: 3rem; height: 3rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--wc9c8-accent), var(--wc9c8-gold)); color: #fff;
  font-weight: 800; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; }
.wc9c8-step-body h4 { font-size: 1.3rem; color: var(--wc9c8-text); margin-bottom: 0.2rem; font-weight: 700; }
.wc9c8-step-body p { font-size: 1.2rem; color: var(--wc9c8-text-muted); margin: 0; line-height: 1.5rem; }

/* ===== RTP table ===== */
.wc9c8-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.15rem; }
.wc9c8-rpt-row { display: contents; }
.wc9c8-rtp-table th, .wc9c8-rtp-table td { padding: 0.8rem 0.6rem; text-align: left; border-bottom: 0.1rem solid var(--wc9c8-border); }
.wc9c8-rtp-table th { color: var(--wc9c8-gold); font-weight: 700; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 0.04em; }
.wc9c8-rtp-table td { color: var(--wc9c8-text-muted); }
.wc9c8-rtp-table td.wc9c8-rtp-val { color: var(--wc9c8-teal); font-weight: 800; }
.wc9c8-rtp-bar { height: 0.5rem; border-radius: 0.3rem; background: var(--wc9c8-bg-3); overflow: hidden; margin-top: 0.3rem; }
.wc9c8-rtp-bar-fill { height: 100%; background: linear-gradient(90deg, var(--wc9c8-teal), var(--wc9c8-green)); }

/* ===== VIP tier ===== */
.wc9c8-tier-grid { display: grid; grid-template-columns: 1fr; gap: 0.8rem; }
.wc9c8-tier { display: flex; align-items: center; gap: 1rem; padding: 1.1rem; border-radius: var(--wc9c8-radius-sm);
  background: linear-gradient(135deg, var(--wc9c8-card), var(--wc9c8-bg-3)); border: 0.1rem solid var(--wc9c8-border); }
.wc9c8-tier-icon { flex: 0 0 3.4rem; width: 3.4rem; height: 3.4rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: #fff; background: linear-gradient(135deg, var(--wc9c8-primary), var(--wc9c8-accent)); }
.wc9c8-tier-body h4 { font-size: 1.3rem; color: var(--wc9c8-gold); font-weight: 800; }
.wc9c8-tier-body p { font-size: 1.15rem; color: var(--wc9c8-text-muted); margin: 0; }

/* ===== Testimonials ===== */
.wc9c8-testi-grid { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
.wc9c8-testi { padding: 1.2rem; border-radius: var(--wc9c8-radius-sm); background: var(--wc9c8-card); border: 0.1rem solid var(--wc9c8-border); }
.wc9c8-testi-stars { color: var(--wc9c8-gold); font-size: 1.3rem; margin-bottom: 0.5rem; }
.wc9c8-testi-text { font-size: 1.25rem; color: var(--wc9c8-text); line-height: 1.6rem; margin-bottom: 0.8rem; font-style: italic; }
.wc9c8-testi-author { display: flex; align-items: center; gap: 0.6rem; }
.wc9c8-testi-avatar { width: 2.6rem; height: 2.6rem; border-radius: 50%; background: linear-gradient(135deg, var(--wc9c8-primary), var(--wc9c8-teal));
  display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 1.1rem; }
.wc9c8-testi-name { font-size: 1.15rem; color: var(--wc9c8-text-muted); font-weight: 600; }

/* ===== Winners ===== */
.wc9c8-winner-list { display: flex; flex-direction: column; gap: 0.6rem; }
.wc9c8-winner { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 1rem; border-radius: 0.8rem;
  background: var(--wc9c8-card); border: 0.1rem solid var(--wc9c8-border); }
.wc9c8-winner-name { font-size: 1.2rem; color: var(--wc9c8-text); font-weight: 600; }
.wc9c8-winner-game { font-size: 1.05rem; color: var(--wc9c8-text-muted); }
.wc9c8-winner-amount { font-size: 1.3rem; color: var(--wc9c8-gold); font-weight: 800; }

/* ===== Payment ===== */
.wc9c8-pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.wc9c8-pay-item { aspect-ratio: 1 / 1; border-radius: 0.8rem; background: var(--wc9c8-card); border: 0.1rem solid var(--wc9c8-border);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.3rem; padding: 0.5rem; }
.wc9c8-pay-item i, .wc9c8-pay-item .material-icons-outlined { font-size: 1.8rem; color: var(--wc9c8-primary); }
.wc9c8-pay-item span { font-size: 0.9rem; color: var(--wc9c8-text-muted); text-align: center; }

/* ===== FAQ ===== */
.wc9c8-faq-item { background: var(--wc9c8-card); border: 0.1rem solid var(--wc9c8-border); border-radius: var(--wc9c8-radius-sm); margin-bottom: 0.7rem; overflow: hidden; }
.wc9c8-faq-q { width: 100%; text-align: left; background: transparent; border: none; color: var(--wc9c8-text);
  padding: 1.1rem 1.2rem; font-size: 1.3rem; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 0.8rem; }
.wc9c8-faq-q i, .wc9c8-faq-q .material-icons-outlined { transition: transform 0.25s; color: var(--wc9c8-accent); font-size: 1.6rem; }
.wc9c8-faq-item.wc9c8-open .wc9c8-faq-q i, .wc9c8-faq-item.wc9c8-open .wc9c8-faq-q .material-icons-outlined { transform: rotate(45deg); }
.wc9c8-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 1.2rem; }
.wc9c8-faq-item.wc9c8-open .wc9c8-faq-a { max-height: 30rem; padding: 0 1.2rem 1.1rem; }
.wc9c8-faq-a p { font-size: 1.2rem; color: var(--wc9c8-text-muted); line-height: 1.6rem; margin: 0; }

/* ===== App download CTA ===== */
.wc9c8-app-cta { background: linear-gradient(135deg, var(--wc9c8-primary), var(--wc9c8-accent)); border-radius: var(--wc9c8-radius);
  padding: 1.6rem; color: #fff; text-align: center; margin-bottom: 1.2rem; box-shadow: var(--wc9c8-shadow); }
.wc9c8-app-cta h3 { color: #fff; font-size: 1.7rem; margin-bottom: 0.4rem; }
.wc9c8-app-cta p { color: rgba(255,255,255,0.92); font-size: 1.2rem; margin-bottom: 1rem; line-height: 1.5rem; }
.wc9c8-app-btns { display: flex; flex-direction: column; gap: 0.6rem; }
.wc9c8-app-btn { background: rgba(0,0,0,0.35); color: #fff; padding: 0.9rem 1.2rem; border-radius: 0.8rem;
  font-weight: 700; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; gap: 0.6rem; cursor: pointer; border: 0.1rem solid rgba(255,255,255,0.25); }
.wc9c8-app-btn:hover { background: rgba(0,0,0,0.55); color: #fff; }
.wc9c8-app-btn i, .wc9c8-app-btn .material-icons-outlined { font-size: 1.8rem; }

/* ===== Play now CTA banner ===== */
.wc9c8-cta-banner { background: linear-gradient(135deg, var(--wc9c8-accent), var(--wc9c8-gold)); border-radius: var(--wc9c8-radius);
  padding: 1.6rem; text-align: center; color: #fff; margin-bottom: 1.2rem; box-shadow: 0 0.6rem 1.6rem rgba(230,81,0,0.4); }
.wc9c8-cta-banner h3 { color: #fff; font-size: 1.8rem; margin-bottom: 0.4rem; }
.wc9c8-cta-banner p { color: rgba(255,255,255,0.95); font-size: 1.2rem; margin-bottom: 1rem; }
.wc9c8-cta-banner .wc9c8-btn { background: #fff; color: var(--wc9c8-accent); }

/* ===== Promo ===== */
.wc9c8-promo-row { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
.wc9c8-promo-card { background: var(--wc9c8-card); border: 0.1rem solid var(--wc9c8-border); border-radius: var(--wc9c8-radius); overflow: hidden; }
.wc9c8-promo-card img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; }
.wc9c8-promo-body { padding: 1.1rem; }
.wc9c8-promo-body h4 { font-size: 1.4rem; color: var(--wc9c8-gold); font-weight: 800; margin-bottom: 0.3rem; }
.wc9c8-promo-body p { font-size: 1.2rem; color: var(--wc9c8-text-muted); margin-bottom: 0.7rem; line-height: 1.5rem; }

/* ===== Security ===== */
.wc9c8-sec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.wc9c8-sec-item { background: var(--wc9c8-card); border: 0.1rem solid var(--wc9c8-border); border-radius: 0.8rem; padding: 1rem; text-align: center; }
.wc9c8-sec-item i, .wc9c8-sec-item .material-icons-outlined { font-size: 2rem; color: var(--wc9c8-teal); margin-bottom: 0.4rem; }
.wc9c8-sec-item h4 { font-size: 1.15rem; color: var(--wc9c8-text); margin-bottom: 0.2rem; font-weight: 700; }
.wc9c8-sec-item p { font-size: 1rem; color: var(--wc9c8-text-muted); margin: 0; line-height: 1.35rem; }

/* ===== Tricks ===== */
.wc9c8-trick-list { display: flex; flex-direction: column; gap: 0.7rem; }
.wc9c8-trick { display: flex; gap: 0.8rem; padding: 0.9rem 1rem; border-radius: 0.8rem; background: var(--wc9c8-card); border: 0.1rem solid var(--wc9c8-border); }
.wc9c8-trick-icon { flex: 0 0 2.6rem; width: 2.6rem; height: 2.6rem; border-radius: 0.6rem; background: rgba(32,178,170,0.18); color: var(--wc9c8-teal);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.wc9c8-trick-body p { font-size: 1.2rem; color: var(--wc9c8-text); margin: 0; line-height: 1.5rem; }
.wc9c8-trick-body strong { color: var(--wc9c8-gold); }

/* ===== Achievements ===== */
.wc9c8-ach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
.wc9c8-ach-item { background: var(--wc9c8-card); border: 0.1rem solid var(--wc9c8-border); border-radius: 0.8rem; padding: 1rem 0.6rem; text-align: center; }
.wc9c8-ach-num { font-size: 1.7rem; font-weight: 800; color: var(--wc9c8-gold); }
.wc9c8-ach-label { font-size: 1rem; color: var(--wc9c8-text-muted); margin-top: 0.2rem; }

/* ===== Category highlights ===== */
.wc9c8-cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.wc9c8-cat-card { background: var(--wc9c8-card); border: 0.1rem solid var(--wc9c8-border); border-radius: var(--wc9c8-radius-sm); padding: 1.1rem; cursor: pointer; position: relative; overflow: hidden; }
.wc9c8-cat-card:hover { border-color: var(--wc9c8-primary); transform: translateY(-0.2rem); }
.wc9c8-cat-card i, .wc9c8-cat-card .material-icons-outlined { font-size: 2.2rem; color: var(--wc9c8-accent); margin-bottom: 0.5rem; }
.wc9c8-cat-card h4 { font-size: 1.3rem; color: var(--wc9c8-text); font-weight: 800; margin-bottom: 0.2rem; }
.wc9c8-cat-card p { font-size: 1.05rem; color: var(--wc9c8-text-muted); margin: 0; line-height: 1.4rem; }

/* ===== Footer ===== */
.wc9c8-footer { background: linear-gradient(180deg, var(--wc9c8-bg-2), #0f0a1f); border-top: 0.1rem solid var(--wc9c8-border); padding: 2rem 0 1.5rem; margin-top: 1.5rem; }
.wc9c8-footer-inner { max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.wc9c8-footer-brand { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--wc9c8-primary), var(--wc9c8-accent-light));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.wc9c8-footer-desc { font-size: 1.2rem; color: var(--wc9c8-text-muted); line-height: 1.6rem; margin-bottom: 1.2rem; }
.wc9c8-footer-promos { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.2rem; }
.wc9c8-footer-promos .wc9c8-btn { flex: 1 1 auto; min-width: 12rem; }
.wc9c8-footer-links { display: flex; flex-wrap: wrap; gap: 0.8rem 1.4rem; margin-bottom: 1rem; }
.wc9c8-footer-links a { font-size: 1.15rem; color: var(--wc9c8-text-muted); }
.wc9c8-footer-links a:hover { color: var(--wc9c8-accent-light); }
.wc9c8-footer-copy { font-size: 1.05rem; color: var(--wc9c8-text-muted); border-top: 0.1rem solid var(--wc9c8-border); padding-top: 1rem; text-align: center; }

/* ===== Bottom nav ===== */
.wc9c8-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; height: var(--wc9c8-nav-h);
  background: linear-gradient(180deg, rgba(26,19,48,0.98), rgba(15,10,31,0.99));
  border-top: 0.1rem solid var(--wc9c8-border);
  display: flex; justify-content: space-around; align-items: stretch;
  box-shadow: 0 -0.4rem 1.2rem rgba(0,0,0,0.5);
}
.wc9c8-nav-btn {
  flex: 1; min-width: 60px; min-height: 60px; background: transparent; border: none; color: var(--wc9c8-text-muted);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem;
  font-size: 1rem; font-weight: 600; cursor: pointer; padding: 0.4rem 0.2rem; transition: color 0.2s ease, transform 0.18s ease;
}
.wc9c8-nav-btn i, .wc9c8-nav-btn .material-icons-outlined, .wc9c8-nav-btn ion-icon { font-size: 2.2rem; transition: transform 0.18s ease; }
.wc9c8-nav-btn:active { transform: scale(0.92); }
.wc9c8-nav-btn:hover { color: var(--wc9c8-text); }
.wc9c8-nav-btn:hover i, .wc9c8-nav-btn:hover .material-icons-outlined { transform: translateY(-0.15rem); }
.wc9c8-nav-btn.wc9c8-active { color: var(--wc9c8-accent); }
.wc9c8-nav-btn.wc9c8-active i, .wc9c8-nav-btn.wc9c8-active .material-icons-outlined { color: var(--wc9c8-accent); }
.wc9c8-nav-btn.wc9c8-promo { color: var(--wc9c8-gold); }
.wc9c8-nav-btn.wc9c8-promo i, .wc9c8-nav-btn.wc9c8-promo .material-icons-outlined { color: var(--wc9c8-gold); }
.wc9c8-nav-badge { position: absolute; top: 0.6rem; right: 1.4rem; background: var(--wc9c8-accent); color: #fff;
  font-size: 0.8rem; font-weight: 700; min-width: 1.5rem; height: 1.5rem; border-radius: 0.8rem; padding: 0 0.3rem;
  display: flex; align-items: center; justify-content: center; }
.wc9c8-nav-btn { position: relative; }

/* ===== Utility ===== */
.wc9c8-text-center { text-align: center; }
.wc9c8-mt-1 { margin-top: 1rem; }
.wc9c8-mt-2 { margin-top: 2rem; }
.wc9c8-mb-1 { margin-bottom: 1rem; }
.wc9c8-mb-2 { margin-bottom: 2rem; }
.wc9c8-flex { display: flex; }
.wc9c8-flex-center { display: flex; align-items: center; justify-content: center; }
.wc9c8-gap { gap: 0.6rem; }
.wc9c8-hide-mobile { display: none; }
.wc9c8-tag { display: inline-block; padding: 0.2rem 0.7rem; border-radius: 1rem; font-size: 1rem; font-weight: 700;
  background: rgba(153,102,204,0.2); color: var(--wc9c8-primary); margin-right: 0.4rem; }
.wc9c8-divider { height: 0.1rem; background: var(--wc9c8-border); margin: 1.4rem 0; border: none; }

/* ===== Responsive ===== */
@media (min-width: 431px) and (max-width: 768px) {
  .wc9c8-grid { grid-template-columns: repeat(4, 1fr); }
  .wc9c8-pay-grid { grid-template-columns: repeat(6, 1fr); }
  .wc9c8-cat-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 769px) {
  .wc9c8-bottom-nav { display: none; }
  .wc9c8-menu-btn { display: none; }
  .wc9c8-container, .wc9c8-wrapper, .wc9c8-header-inner, .wc9c8-mobile-menu-inner, .wc9c8-footer-inner { max-width: 960px; }
  .wc9c8-grid { grid-template-columns: repeat(5, 1fr); }
  .wc9c8-feature-grid, .wc9c8-tier-grid, .wc9c8-testi-grid, .wc9c8-promo-row { grid-template-columns: 1fr 1fr; }
  .wc9c8-pay-grid { grid-template-columns: repeat(8, 1fr); }
  .wc9c8-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .wc9c8-hide-mobile { display: block; }
  .wc9c8-hide-desktop { display: none; }
}

@media (max-width: 768px) {
  .wc9c8-main { padding-bottom: calc(var(--wc9c8-nav-h) + 1.2rem); }
  .wc9c8-footer { padding-bottom: calc(var(--wc9c8-nav-h) + 1.5rem); }
}

@media (max-width: 360px) {
  .wc9c8-grid { grid-template-columns: repeat(2, 1fr); }
  .wc9c8-h1 { font-size: 1.8rem; }
}
