@charset "utf-8";
/*!
 * FBM (fbm.homes) layout stylesheet.
 * Mobile-first Philippine casino portal. All custom classes use the
 * "w67cd-" prefix; design tokens also use a prefixed CSS variable block.
 * Palette: #FF4500 (orange-red) | #FFBF00 (amber) | #FFA500 (orange)
 *          #0A0A0A (charcoal) | #B22222 (firebrick).
 */

:root {
    --w67cd-orange: #FF4500;
    --w67cd-amber: #FFBF00;
    --w67cd-gold: #FFA500;
    --w67cd-dark: #0A0A0A;
    --w67cd-fire: #B22222;
    --w67cd-bg: #0A0A0A;
    --w67cd-bg2: #161220;
    --w67cd-panel: #1c1530;
    --w67cd-panel2: #241a3d;
    --w67cd-text: #f6f1ff;
    --w67cd-muted: #b6acd6;
    --w67cd-line: rgba(255, 165, 0, 0.22);
    --w67cd-radius: 14px;
    --w67cd-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
    --w67cd-header-h: 56px;
    --w67cd-nav-h: 60px;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--w67cd-bg);
    color: var(--w67cd-text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    font-size: 15px;
    line-height: 1.55;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--w67cd-amber); text-decoration: none; }
a:focus-visible { outline: 2px solid var(--w67cd-amber); outline-offset: 2px; }

h1, h2, h3, h4 { margin: 0 0 8px; line-height: 1.3; font-weight: 800; letter-spacing: .2px; }
p { margin: 0 0 12px; color: var(--w67cd-muted); }

/* Center the mobile canvas on wide screens without going desktop-width. */
.w67cd-shell {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    background: linear-gradient(180deg, #0A0A0A 0%, #14091f 45%, #0A0A0A 100%);
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.55);
}

/* ===== Header ===== */
.w67cd-header {
    position: sticky;
    top: 0;
    z-index: 50;
    height: var(--w67cd-header-h);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 10px;
    background: linear-gradient(90deg, #0A0A0A 0%, #2a0d05 50%, #0A0A0A 100%);
    border-bottom: 2px solid var(--w67cd-orange);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.55);
}
.w67cd-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}
.w67cd-brand img {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--w67cd-amber);
    flex-shrink: 0;
    background: #1a0c00;
}
.w67cd-brand b {
    color: var(--w67cd-text);
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1;
    white-space: nowrap;
}
.w67cd-brand b span {
    color: var(--w67cd-orange);
}
.w67cd-brand small {
    display: block;
    color: var(--w67cd-amber);
    font-size: 9px;
    letter-spacing: 2px;
    margin-top: 2px;
    text-transform: uppercase;
}
.w67cd-hbtns { display: flex; align-items: center; gap: 6px; }
.w67cd-btn {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .4px;
    cursor: pointer;
    min-height: 34px;
    line-height: 1;
    transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.w67cd-btn-login {
    background: transparent;
    color: var(--w67cd-text);
    border: 1px solid var(--w67cd-amber);
}
.w67cd-btn-register {
    background: linear-gradient(180deg, #FFA500 0%, #FF4500 100%);
    color: #1a0500;
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.45);
}
.w67cd-btn:active { transform: scale(.96); }
.w67cd-iconbtn {
    width: 36px; height: 36px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: rgba(255, 165, 0, 0.12);
    color: var(--w67cd-amber);
    border: 1px solid var(--w67cd-line);
    cursor: pointer;
}
.w67cd-iconbtn svg { width: 20px; height: 20px; }

/* ===== Drawer menu ===== */
.w67cd-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
    z-index: 60;
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}
.w67cd-overlay-show { opacity: 1; pointer-events: auto; }
.w67cd-drawer {
    position: fixed;
    top: 0; right: 0;
    width: 82%;
    max-width: 340px;
    height: 100%;
    background: linear-gradient(180deg, #160a25 0%, #0A0A0A 100%);
    border-left: 2px solid var(--w67cd-orange);
    z-index: 70;
    transform: translateX(105%);
    transition: transform .26s ease;
    overflow-y: auto;
    padding: 14px 16px 80px;
}
.w67cd-drawer-open { transform: translateX(0); }
.w67cd-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--w67cd-line);
    margin-bottom: 10px;
}
.w67cd-drawer-head b { color: var(--w67cd-amber); font-size: 15px; }
.w67cd-drawer-section { margin-bottom: 14px; }
.w67cd-drawer-section h4 {
    color: var(--w67cd-amber);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 6px;
    padding-left: 4px;
}
.w67cd-drawer a {
    display: block;
    color: var(--w67cd-text);
    padding: 9px 10px;
    border-radius: 10px;
    font-size: 13px;
    border: 1px solid transparent;
}
.w67cd-drawer a:active { background: rgba(255, 165, 0, 0.12); border-color: var(--w67cd-line); }
.w67cd-drawer-cta {
    margin-top: 8px;
    display: block;
    text-align: center;
    background: linear-gradient(180deg, #FFA500, #FF4500);
    color: #1a0500;
    font-weight: 800;
    padding: 11px;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(255, 69, 0, 0.4);
}

/* ===== Hero carousel ===== */
.w67cd-hero {
    position: relative;
    overflow: hidden;
    margin: 12px 10px 4px;
    border-radius: var(--w67cd-radius);
    box-shadow: var(--w67cd-shadow);
    border: 1px solid var(--w67cd-line);
}
.w67cd-hero-viewport { overflow: hidden; border-radius: var(--w67cd-radius); }
.w67cd-hero-track {
    display: flex;
    width: 100%;
    transition: transform .55s ease;
}
.w67cd-hero-slide {
    flex: 0 0 100%;
    position: relative;
}
.w67cd-hero-slide img {
    width: 100%;
    height: 168px;
    object-fit: cover;
    display: block;
}
.w67cd-hero-cap {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 10px 12px 12px;
    background: linear-gradient(0deg, rgba(10,5,0,.92) 0%, rgba(10,5,0,.0) 100%);
}
.w67cd-hero-cap b { color: var(--w67cd-amber); font-size: 15px; display: block; }
.w67cd-hero-cap p { margin: 2px 0 8px; font-size: 11px; color: #f0e7c8; }
.w67cd-hero-cta {
    display: inline-block;
    background: linear-gradient(180deg, #FFA500, #FF4500);
    color: #1a0500;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 999px;
}
.w67cd-hero-dots {
    position: absolute;
    bottom: 8px; right: 10px;
    display: flex; gap: 5px;
    z-index: 2;
}
.w67cd-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.35);
    border: none; padding: 0; cursor: pointer;
}
.w67cd-dot-active { background: var(--w67cd-amber); transform: scale(1.2); }

/* ===== Quick category jump bar ===== */
.w67cd-catbar {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 10px 10px 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.w67cd-catbar::-webkit-scrollbar { display: none; }
.w67cd-catjump {
    flex: 0 0 auto;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: var(--w67cd-text);
    background: rgba(255, 165, 0, 0.10);
    border: 1px solid var(--w67cd-line);
    cursor: pointer;
}
.w67cd-catjump-active {
    background: linear-gradient(180deg, #FFA500, #FF4500);
    color: #1a0500;
    border-color: transparent;
}

/* ===== Section heading ===== */
.w67cd-section { padding: 10px 10px 4px; }
.w67cd-sec-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 8px;
}
.w67cd-sec-head h2 {
    font-size: 16px;
    color: var(--w67cd-text);
    position: relative;
    padding-left: 12px;
}
.w67cd-sec-head h2::before {
    content: "";
    position: absolute;
    left: 0; top: 3px;
    width: 4px; height: 16px;
    background: linear-gradient(180deg, var(--w67cd-gold), var(--w67cd-orange));
    border-radius: 2px;
}
.w67cd-sec-head h2 em {
    color: var(--w67cd-amber);
    font-style: normal;
}
.w67cd-sec-more {
    color: var(--w67cd-amber);
    font-size: 11px;
    font-weight: 700;
}

/* ===== Game grid ===== */
.w67cd-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}
@media (min-width: 360px) { .w67cd-grid { gap: 7px; } }
@media (min-width: 410px) { .w67cd-grid { grid-template-columns: repeat(5, 1fr); } }

.w67cd-tile {
    background: linear-gradient(160deg, #1c1530 0%, #110a1f 100%);
    border: 1px solid var(--w67cd-line);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform .14s ease, box-shadow .14s ease, border-color .14s ease;
    text-align: center;
}
.w67cd-tile:active {
    transform: translateY(2px) scale(.98);
    border-color: var(--w67cd-amber);
    box-shadow: 0 6px 14px rgba(255, 69, 0, 0.3);
}
.w67cd-tile-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #0c0718;
    overflow: hidden;
}
.w67cd-tile-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.w67cd-tile-name {
    font-size: 10px;
    line-height: 1.25;
    color: var(--w67cd-text);
    padding: 4px 3px 6px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 600;
}
.w67cd-tile-tag {
    position: absolute;
    top: 4px; left: 4px;
    background: linear-gradient(180deg, var(--w67cd-fire), #6e0c0c);
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 2px 5px;
    border-radius: 4px;
    text-transform: uppercase;
}
.w67cd-tile-tag.gold { background: linear-gradient(180deg, var(--w67cd-gold), #9a5400); color: #1a0500; }

/* ===== Promo strip ===== */
.w67cd-promo-strip {
    margin: 10px;
    padding: 12px;
    border-radius: var(--w67cd-radius);
    background: linear-gradient(110deg, #2a0d05 0%, #4a1503 60%, #1a0500 100%);
    border: 1px solid var(--w67cd-orange);
    display: flex; align-items: center; gap: 10px;
    box-shadow: var(--w67cd-shadow);
}
.w67cd-promo-strip .w67cd-pstrip-ico {
    flex: 0 0 auto;
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--w67cd-amber);
    color: #1a0500;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900;
    font-size: 20px;
}
.w67cd-promo-strip .w67cd-pstrip-txt { flex: 1; min-width: 0; }
.w67cd-promo-strip b { color: var(--w67cd-text); font-size: 13px; display: block; }
.w67cd-promo-strip p { margin: 0; font-size: 11px; color: #f0e0c0; }
.w67cd-promo-strip .w67cd-btn-register { padding: 8px 12px; font-size: 11px; }

/* ===== Info / SEO content blocks ===== */
.w67cd-content {
    padding: 14px 12px 6px;
}
.w67cd-content h2 {
    font-size: 15px;
    color: var(--w67cd-amber);
    margin-bottom: 6px;
}
.w67cd-content h3 {
    font-size: 13px;
    color: var(--w67cd-text);
    margin-top: 10px;
    margin-bottom: 4px;
}
.w67cd-content p { font-size: 13px; line-height: 1.6; color: var(--w67cd-muted); }
.w67cd-content ul { padding-left: 18px; margin: 0 0 10px; }
.w67cd-content li { color: var(--w67cd-muted); font-size: 13px; margin-bottom: 4px; }

/* ===== Feature card cluster (Popular Play Styles, etc.) ===== */
.w67cd-feat-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 4px 10px 4px;
}
.w67cd-feat-card {
    background: linear-gradient(160deg, #1c1530 0%, #110a1f 100%);
    border: 1px solid var(--w67cd-line);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
}
.w67cd-feat-card .w67cd-feat-ico {
    width: 38px; height: 38px;
    border-radius: 50%;
    margin: 0 auto 6px;
    background: linear-gradient(180deg, var(--w67cd-gold), var(--w67cd-orange));
    color: #1a0500;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 900;
}
.w67cd-feat-card b { color: var(--w67cd-text); font-size: 12px; display: block; margin-bottom: 2px; }
.w67cd-feat-card span { color: var(--w67cd-muted); font-size: 11px; line-height: 1.4; display: block; }

/* ===== Payment methods ===== */
.w67cd-pay-row {
    display: flex; flex-wrap: wrap; gap: 6px;
    padding: 4px 10px;
}
.w67cd-pay-chip {
    flex: 0 0 auto;
    padding: 6px 10px;
    border-radius: 8px;
    background: #1c1530;
    border: 1px solid var(--w67cd-line);
    color: var(--w67cd-text);
    font-size: 11px;
    font-weight: 700;
}

/* ===== Testimonial ===== */
.w67cd-quote {
    margin: 10px;
    padding: 12px;
    background: linear-gradient(160deg, #1c1530 0%, #110a1f 100%);
    border-left: 3px solid var(--w67cd-amber);
    border-radius: 10px;
}
.w67cd-quote p { font-style: italic; font-size: 12px; margin-bottom: 6px; color: #ece4ff; }
.w67cd-quote b { color: var(--w67cd-amber); font-size: 11px; }

/* ===== Achievement strip ===== */
.w67cd-stats {
    margin: 10px;
    padding: 12px;
    border-radius: var(--w67cd-radius);
    background: linear-gradient(110deg, #160a25 0%, #2a0d05 100%);
    border: 1px solid var(--w67cd-line);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    text-align: center;
}
.w67cd-stat b { display: block; color: var(--w67cd-amber); font-size: 16px; }
.w67cd-stat span { color: var(--w67cd-muted); font-size: 10px; }

/* ===== Extended footer (home only) ===== */
.w67cd-extfoot {
    margin: 12px 10px 4px;
    background: #0d0719;
    border: 1px solid var(--w67cd-line);
    border-radius: var(--w67cd-radius);
    overflow: hidden;
}
.w67cd-extfoot-head {
    padding: 9px 12px;
    background: linear-gradient(90deg, #2a0d05, #160a25);
    border-bottom: 1px solid var(--w67cd-line);
}
.w67cd-extfoot-head b { color: var(--w67cd-amber); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.w67cd-extfoot-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
.w67cd-extfoot-col { padding: 8px 10px; }
.w67cd-extfoot-col + .w67cd-extfoot-col { border-left: 1px solid var(--w67cd-line); }
.w67cd-extfoot-col h5 {
    font-size: 10px;
    color: var(--w67cd-amber);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 4px 0 6px;
}
.w67cd-extfoot-col a {
    display: block;
    color: var(--w67cd-muted);
    font-size: 11px;
    padding: 4px 0;
}
.w67cd-extfoot-col a:active { color: var(--w67cd-amber); }
.w67cd-extfoot-disclaim {
    padding: 8px 12px 10px;
    font-size: 10px;
    color: #7d72a0;
    border-top: 1px solid var(--w67cd-line);
    line-height: 1.5;
}

/* ===== Footer (all pages) ===== */
.w67cd-footer {
    padding: 16px 14px calc(var(--w67cd-nav-h) + 18px);
    background: #060309;
    border-top: 1px solid var(--w67cd-line);
    text-align: center;
    font-size: 11px;
    color: #7d72a0;
}
.w67cd-footer b { color: var(--w67cd-amber); }
.w67cd-footer-links {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 4px 10px;
    margin-bottom: 8px;
}
.w67cd-footer-links a { color: var(--w67cd-muted); font-size: 11px; }

/* ===== Mobile bottom nav ===== */
.w67cd-bottomnav {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    max-width: 480px;
    height: var(--w67cd-nav-h);
    background: linear-gradient(180deg, #160a25 0%, #060309 100%);
    border-top: 2px solid var(--w67cd-orange);
    display: flex;
    align-items: stretch;
    z-index: 40;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.55);
}
.w67cd-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: var(--w67cd-muted);
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 4px 2px;
    position: relative;
    min-height: 44px;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
.w67cd-nav-item svg { width: 22px; height: 22px; }
.w67cd-nav-item span { font-size: 9.5px; font-weight: 700; letter-spacing: .3px; }
.w67cd-nav-item:active { color: var(--w67cd-amber); }
.w67cd-nav-active { color: var(--w67cd-amber); }
.w67cd-nav-active::before {
    content: "";
    position: absolute;
    top: -2px; left: 50%;
    transform: translateX(-50%);
    width: 30px; height: 3px;
    background: linear-gradient(90deg, var(--w67cd-gold), var(--w67cd-orange));
    border-radius: 0 0 3px 3px;
}
.w67cd-nav-promo {
    color: #fff;
}
.w67cd-nav-promo span { color: #fff; }
.w67cd-nav-promo-1 {
    background: linear-gradient(180deg, rgba(255,165,0,0.22), rgba(255,69,0,0.06));
}
.w67cd-nav-promo-2 {
    background: linear-gradient(180deg, rgba(178,34,34,0.32), rgba(178,34,34,0.05));
}

/* ===== Back-to-top ===== */
.w67cd-totop {
    position: fixed;
    right: 12px;
    bottom: calc(var(--w67cd-nav-h) + 14px);
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--w67cd-gold), var(--w67cd-orange));
    color: #1a0500;
    border: none;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--w67cd-shadow);
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    z-index: 35;
}
.w67cd-totop-show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.w67cd-totop svg { width: 20px; height: 20px; }

/* ===== Marquee announcement ===== */
.w67cd-marquee {
    margin: 6px 10px 0;
    padding: 5px 10px;
    background: rgba(255,165,0,.10);
    border: 1px dashed var(--w67cd-line);
    border-radius: 8px;
    color: var(--w67cd-amber);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== Utility ===== */
.w67cd-clear { clear: both; }
.w67cd-hidden { display: none !important; }

/* Reserve clearance under content for fixed bottom nav. */
body { padding-bottom: 0; }
.w67cd-shell > *:last-child { margin-bottom: var(--w67cd-nav-h); }

/* ===== Mobile canvas cap (320–430px priority) =====
   Hard-cap the mobile canvas at ~430px so phones in this band get a
   tailored layout while wider screens keep the centered 480px shell. */
@media (max-width: 430px) {
    .w67cd-shell {
        max-width: 430px;
        padding-left: 0;
        padding-right: 0;
    }
    .w67cd-header { padding: 0 8px; }
    .w67cd-brand b { font-size: 17px; }
    .w67cd-hero { margin: 10px 8px 4px; }
    .w67cd-hero-slide img { height: 156px; }
    .w67cd-catbar { padding: 10px 8px 6px; }
    .w67cd-section,
    .w67cd-content,
    .w67cd-feat-row,
    .w67cd-pay-row { padding-left: 8px; padding-right: 8px; }
    .w67cd-promo-strip,
    .w67cd-quote,
    .w67cd-stats,
    .w67cd-extfoot,
    .w67cd-marquee { margin-left: 8px; margin-right: 8px; }
    .w67cd-grid { gap: 5px; }
    .w67cd-tile-name { font-size: 9.5px; height: 28px; }
    .w67cd-bottomnav { max-width: 430px; }
    .w67cd-sec-head h2 { font-size: 15px; }
    .w67cd-content h2 { font-size: 14px; }
}

/* ===== Help page reading patterns ===== */
.w67cd-help-intro { padding: 18px 12px 8px; border-bottom: 1px solid var(--w67cd-line); }
.w67cd-help-intro h1 { font-size: 21px; color: var(--w67cd-text); }
.w67cd-help-intro .w67cd-lead { color: #e8dff7; font-size: 14px; }
.w67cd-answer-band { margin: 10px; padding: 14px; border: 1px solid var(--w67cd-orange); border-radius: 10px; background: linear-gradient(135deg, #351505, #171025); }
.w67cd-answer-band strong { color: var(--w67cd-amber); display: block; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px; }
.w67cd-answer-band p { color: #fff2d5; margin: 0; font-size: 13px; }
.w67cd-faq-list { padding: 4px 10px; }
.w67cd-faq-item { border-bottom: 1px solid var(--w67cd-line); padding: 10px 2px; }
.w67cd-faq-item summary { cursor: pointer; list-style: none; color: var(--w67cd-text); font-weight: 800; font-size: 13px; padding: 8px 32px 8px 8px; position: relative; min-height: 44px; }
.w67cd-faq-item summary::-webkit-details-marker { display: none; }
.w67cd-faq-item summary::after { content: "+"; position: absolute; right: 8px; color: var(--w67cd-amber); font-size: 19px; top: 5px; }
.w67cd-faq-item[open] summary::after { content: "−"; }
.w67cd-faq-item p { padding: 0 8px; font-size: 13px; }
.w67cd-branch { margin: 10px; border-left: 3px solid var(--w67cd-orange); padding: 2px 0 2px 12px; }
.w67cd-branch h3 { color: var(--w67cd-amber); font-size: 14px; margin-top: 10px; }
.w67cd-action-line { display: flex; align-items: center; gap: 8px; margin: 10px 0; padding: 10px; border-radius: 9px; background: rgba(255,165,0,.08); border: 1px solid var(--w67cd-line); }
.w67cd-action-line span { flex: 1; min-width: 0; color: var(--w67cd-muted); font-size: 12px; }
.w67cd-action-line .w67cd-btn { flex: 0 0 auto; }
.w67cd-checklist { margin: 8px 10px; padding: 0; list-style: none; counter-reset: w67cd-check; }
.w67cd-checklist li { counter-increment: w67cd-check; display: flex; gap: 10px; padding: 10px 4px; border-bottom: 1px dashed var(--w67cd-line); color: var(--w67cd-muted); font-size: 13px; }
.w67cd-checklist li::before { content: counter(w67cd-check); flex: 0 0 24px; height: 24px; border-radius: 50%; background: var(--w67cd-fire); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; font-size: 11px; }
.w67cd-feature-map { margin: 8px 10px; display: grid; gap: 8px; }
.w67cd-feature-row { display: grid; grid-template-columns: 72px 1fr; gap: 10px; padding: 10px; border-left: 3px solid var(--w67cd-amber); background: #171025; border-radius: 0 10px 10px 0; }
.w67cd-feature-row b { color: var(--w67cd-amber); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px; }
.w67cd-feature-row p { margin: 0; font-size: 12px; }
.w67cd-fact-ribbon { margin: 10px; padding: 10px 12px; border-radius: 8px; background: #251530; color: #efe8ff; font-size: 12px; border-right: 3px solid var(--w67cd-orange); }
.w67cd-help-cta { margin: 12px 10px; padding: 14px; border-radius: 12px; background: linear-gradient(110deg,#3b1304,#1b1027); border: 1px solid var(--w67cd-orange); }
.w67cd-help-cta h2 { color: var(--w67cd-amber); font-size: 15px; }
.w67cd-help-cta p { color: #eadfca; font-size: 12px; }
.w67cd-help-cta .w67cd-btn { margin: 3px 4px 3px 0; }
.w67cd-notice { padding: 8px 12px; color: #c6b9dd; font-size: 11px; border-top: 1px solid var(--w67cd-line); }
