@charset "utf-8";

/*!
 * dynamic-d89565-chrome.css
 * phpark mobile-first styling layer (canvas 320-430px).
 * All custom classes and variables use the "cd8956-" prefix.
 * Comments are written in English only.
 */

/* =====================================================================
   Design tokens
   Palette: #E0E0E0 / #36454F / #C0C0C0 / #880E4F / #FFCCCB / #1A1A1A
   Dark hues drive backgrounds, light hues carry text and borders.
   ===================================================================== */
:root {
    --cd8956-ink: #1A1A1A;            /* deepest background */
    --cd8956-slate: #36454F;          /* primary surface */
    --cd8956-silver: #C0C0C0;         /* muted text / borders */
    --cd8956-paper: #E0E0E0;          /* primary readable text */
    --cd8956-wine: #880E4F;           /* brand accent */
    --cd8956-wine-deep: #6c0a3e;      /* hover / pressed accent */
    --cd8956-blush: #FFCCCB;          /* soft highlight */
    --cd8956-canvas: #211c20;         /* page backdrop */
    --cd8956-line: rgba(224, 224, 224, 0.14);
    --cd8956-line-strong: rgba(224, 224, 224, 0.28);
    --cd8956-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
    --cd8956-radius-s: 8px;
    --cd8956-radius-m: 14px;
    --cd8956-radius-l: 22px;
    --cd8956-max-canvas: 440px;
    --cd8956-header-h: 56px;
    --cd8956-bottomnav-h: 64px;
}

/* =====================================================================
   Reset & base
   ===================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: var(--cd8956-paper);
    background: var(--cd8956-canvas);
    background-image:
        radial-gradient(circle at 12% -8%, rgba(136, 14, 79, 0.35), transparent 48%),
        radial-gradient(circle at 92% 4%, rgba(54, 69, 79, 0.55), transparent 42%),
        linear-gradient(180deg, #1c1a1d 0%, #15141a 60%, #110f14 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--cd8956-blush);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: #fff; }

h1, h2, h3, h4 {
    margin: 0 0 0.5em;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0.2px;
}

p { margin: 0 0 0.9em; }

ul, ol { margin: 0 0 1em; padding-left: 1.15em; }

button { font-family: inherit; }

:focus-visible {
    outline: 2px solid var(--cd8956-blush);
    outline-offset: 2px;
}

/* =====================================================================
   Mobile canvas wrapper — keeps the 320-430px composition on any screen.
   ===================================================================== */
.cd8956-page {
    width: 100%;
    max-width: var(--cd8956-max-canvas);
    margin: 0 auto;
    min-height: 100vh;
    background:
        linear-gradient(180deg, rgba(33, 28, 32, 0.92) 0%, rgba(26, 26, 26, 0.96) 40%, rgba(17, 15, 20, 0.98) 100%);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.55);
    position: relative;
}

/* =====================================================================
   Header — minimal title action band
   ===================================================================== */
.cd8956-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    max-width: var(--cd8956-max-canvas);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 8px 12px;
    min-height: var(--cd8956-header-h);
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.96) 0%, rgba(33, 28, 32, 0.96) 100%);
    border-bottom: 1px solid var(--cd8956-line);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cd8956-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    color: #fff;
}

.cd8956-brand-logo {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid var(--cd8956-line-strong);
    background: #fff;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(136, 14, 79, 0.45);
}

.cd8956-brand-text { display: flex; flex-direction: column; min-width: 0; line-height: 1.1; }
.cd8956-brand-name {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: #fff;
    text-transform: lowercase;
}
.cd8956-brand-tag {
    font-size: 10px;
    color: var(--cd8956-silver);
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.cd8956-header-actions { display: flex; align-items: center; gap: 7px; }

.cd8956-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
}
.cd8956-btn:active { transform: scale(0.96); }

.cd8956-btn--ghost {
    background: rgba(224, 224, 224, 0.08);
    color: var(--cd8956-paper);
    border: 1px solid var(--cd8956-line-strong);
}

.cd8956-btn--solid {
    background: linear-gradient(135deg, var(--cd8956-wine) 0%, #a8125d 100%);
    color: #fff;
    box-shadow: 0 6px 14px rgba(136, 14, 79, 0.45);
}
.cd8956-btn--solid:hover { background: linear-gradient(135deg, var(--cd8956-wine-deep) 0%, #8f0f50 100%); color: #fff; }

.cd8956-btn--block { width: 100%; min-height: 44px; font-size: 14px; }

.cd8956-icon-btn {
    width: 38px;
    height: 38px;
    min-height: 38px;
    border-radius: 10px;
    background: rgba(224, 224, 224, 0.08);
    border: 1px solid var(--cd8956-line);
    color: var(--cd8956-paper);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.cd8956-icon-btn svg { width: 20px; height: 20px; }

.cd8956-icon-btn--menu[aria-expanded="true"] {
    background: var(--cd8956-wine);
    color: #fff;
}

/* =====================================================================
   Expandable menu panel
   ===================================================================== */
.cd8956-menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 55;
    max-width: var(--cd8956-max-canvas);
    margin: 0 auto;
}
.cd8956-header--menu-open ~ .cd8956-menu-backdrop,
.cd8956-menu-backdrop.cd8956-menu-backdrop--show {
    opacity: 1;
    visibility: visible;
}

.cd8956-menu-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    max-width: var(--cd8956-max-canvas);
    margin: 0 auto;
    background: linear-gradient(180deg, #221d22 0%, #1a161c 100%);
    border-bottom: 1px solid var(--cd8956-line-strong);
    transform: translateY(-110%);
    transition: transform 0.3s cubic-bezier(0.22, 0.9, 0.32, 1);
    z-index: 60;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.55);
    border-radius: 0 0 22px 22px;
    max-height: 86vh;
    overflow-y: auto;
}
.cd8956-menu-panel--open { transform: translateY(0); }

.cd8956-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 8px;
    border-bottom: 1px solid var(--cd8956-line);
}
.cd8956-menu-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--cd8956-paper);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.cd8956-menu-close {
    background: rgba(224, 224, 224, 0.1);
    border: 0;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
}

.cd8956-menu-body { padding: 8px 12px 18px; }

.cd8956-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}
.cd8956-menu-link {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 12px;
    background: rgba(224, 224, 224, 0.06);
    border: 1px solid var(--cd8956-line);
    border-radius: var(--cd8956-radius-m);
    color: var(--cd8956-paper);
    font-size: 13px;
    font-weight: 600;
    min-height: 44px;
}
.cd8956-menu-link:hover {
    background: rgba(136, 14, 79, 0.32);
    color: #fff;
}
.cd8956-menu-link svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--cd8956-blush); }

.cd8956-menu-link.cd8956-active {
    background: linear-gradient(135deg, rgba(136, 14, 79, 0.55) 0%, rgba(136, 14, 79, 0.35) 100%);
    border-color: var(--cd8956-wine);
    color: #fff;
}

.cd8956-menu-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    padding-top: 10px;
    border-top: 1px dashed var(--cd8956-line);
}
.cd8956-menu-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(224, 224, 224, 0.07);
    color: var(--cd8956-silver);
    font-size: 12px;
    border: 1px solid var(--cd8956-line);
    cursor: pointer;
}
.cd8956-menu-chip:hover { color: #fff; border-color: var(--cd8956-wine); }

.cd8956-menu-cta {
    margin-top: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

/* =====================================================================
   Generic section rhythm
   ===================================================================== */
.cd8956-main { padding: 14px 14px calc(var(--cd8956-bottomnav-h) + 28px); }

.cd8956-section { margin: 0 0 24px; }

.cd8956-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}
.cd8956-section-title {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    position: relative;
    padding-left: 14px;
}
.cd8956-section-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 20px;
    background: linear-gradient(180deg, var(--cd8956-wine) 0%, var(--cd8956-blush) 100%);
    border-radius: 3px;
}
.cd8956-section-link {
    font-size: 12px;
    color: var(--cd8956-blush);
    font-weight: 600;
}

.cd8956-h1 {
    font-size: 22px;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 6px;
}
.cd8956-lead {
    color: var(--cd8956-silver);
    font-size: 14px;
    margin: 0 0 14px;
}

/* =====================================================================
   Hero carousel
   ===================================================================== */
.cd8956-hero {
    position: relative;
    border-radius: var(--cd8956-radius-l);
    overflow: hidden;
    box-shadow: var(--cd8956-shadow);
    margin-bottom: 18px;
    border: 1px solid var(--cd8956-line);
}
.cd8956-hero-viewport { overflow: hidden; }
.cd8956-hero-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.3, 1);
    will-change: transform;
}
.cd8956-hero-slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 100%;
    display: block;
    cursor: pointer;
}
.cd8956-hero-slide img {
    width: 100%;
    height: 188px;
    object-fit: cover;
    display: block;
}
.cd8956-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.78) 100%);
}
.cd8956-hero-caption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    color: #fff;
    z-index: 2;
}
.cd8956-hero-eyebrow {
    display: inline-block;
    background: var(--cd8956-wine);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    padding: 4px 9px;
    border-radius: 999px;
    margin-bottom: 6px;
    text-transform: uppercase;
}
.cd8956-hero-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 4px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}
.cd8956-hero-text {
    font-size: 12px;
    color: rgba(255,255,255,0.88);
    margin: 0 0 9px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.7);
}
.cd8956-hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--cd8956-wine) 0%, #b31463 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(136, 14, 79, 0.55);
}

.cd8956-hero-dots {
    position: absolute;
    bottom: 8px;
    right: 12px;
    display: flex;
    gap: 6px;
    z-index: 3;
}
.cd8956-hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
}
.cd8956-hero-dot--active {
    width: 20px;
    border-radius: 4px;
    background: var(--cd8956-blush);
}

/* =====================================================================
   Action rails — short horizontal shortcuts
   ===================================================================== */
.cd8956-rail {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 18px;
}
.cd8956-rail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 4px;
    background: rgba(224, 224, 224, 0.05);
    border: 1px solid var(--cd8956-line);
    border-radius: var(--cd8956-radius-m);
    color: var(--cd8956-paper);
    text-align: center;
    min-height: 44px;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s ease;
}
.cd8956-rail-item:active { transform: scale(0.95); }
.cd8956-rail-item:hover { background: rgba(136, 14, 79, 0.28); color: #fff; }
.cd8956-rail-ico {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--cd8956-wine) 0%, #5a0a33 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cd8956-blush);
}
.cd8956-rail-ico svg { width: 17px; height: 17px; }
.cd8956-rail-label { font-size: 11px; font-weight: 600; color: var(--cd8956-paper); }

/* =====================================================================
   Category game grids
   ===================================================================== */
.cd8956-cat { margin-bottom: 26px; }

.cd8956-cat-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 10px;
}
.cd8956-cat-title {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.cd8956-cat-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(136, 14, 79, 0.3);
    color: var(--cd8956-blush);
    border: 1px solid rgba(136, 14, 79, 0.45);
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.cd8956-cat-note { font-size: 12px; color: var(--cd8956-silver); }

.cd8956-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}
@media (min-width: 360px) {
    .cd8956-grid { gap: 8px; }
}
@media (min-width: 400px) {
    .cd8956-grid { grid-template-columns: repeat(5, 1fr); gap: 9px; }
}

.cd8956-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 6px 4px 8px;
    background: rgba(224, 224, 224, 0.05);
    border: 1px solid var(--cd8956-line);
    border-radius: var(--cd8956-radius-m);
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    text-align: center;
}
.cd8956-tile:hover, .cd8956-tile:focus {
    border-color: rgba(136, 14, 79, 0.7);
    background: rgba(136, 14, 79, 0.18);
    transform: translateY(-2px);
}
.cd8956-tile:active { transform: scale(0.95); }

.cd8956-tile-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    background: linear-gradient(135deg, #2a2530 0%, #1c1820 100%);
    border: 1px solid var(--cd8956-line);
}
.cd8956-tile-name {
    font-size: 10.5px;
    line-height: 1.2;
    color: var(--cd8956-paper);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 26px;
    word-break: break-word;
}

/* =====================================================================
   Info cards — supplementary content modules
   ===================================================================== */
.cd8956-card {
    background: linear-gradient(180deg, rgba(54, 69, 79, 0.42) 0%, rgba(26, 26, 26, 0.6) 100%);
    border: 1px solid var(--cd8956-line);
    border-left: 3px solid var(--cd8956-wine);
    border-radius: var(--cd8956-radius-m);
    padding: 14px 14px 12px;
    margin-bottom: 12px;
}
.cd8956-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 7px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.cd8956-card-title svg { width: 18px; height: 18px; color: var(--cd8956-blush); flex-shrink: 0; }
.cd8956-card p, .cd8956-card li { font-size: 13.5px; color: var(--cd8956-paper); }
.cd8956-card p:last-child { margin-bottom: 0; }
.cd8956-card ul, .cd8956-card ol { padding-left: 1.1em; }
.cd8956-card li { margin-bottom: 4px; }

.cd8956-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 380px) {
    .cd8956-info-grid--two { grid-template-columns: 1fr 1fr; }
}

.cd8956-pros-cons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
.cd8956-mini-card {
    border-radius: var(--cd8956-radius-m);
    padding: 12px;
    border: 1px solid var(--cd8956-line);
}
.cd8956-mini-card--pos { background: rgba(54, 69, 79, 0.32); border-left: 3px solid #6f9c5a; }
.cd8956-mini-card--neg { background: rgba(136, 14, 79, 0.18); border-left: 3px solid var(--cd8956-wine); }
.cd8956-mini-card h4 { font-size: 14px; color: #fff; margin: 0 0 6px; }
.cd8956-mini-card p { font-size: 12.5px; color: var(--cd8956-paper); margin: 0; }

/* =====================================================================
   Inline promo banner
   ===================================================================== */
.cd8956-promo-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-radius: var(--cd8956-radius-m);
    background: linear-gradient(120deg, rgba(136, 14, 79, 0.85) 0%, rgba(108, 10, 62, 0.92) 100%);
    border: 1px solid rgba(255, 204, 203, 0.35);
    margin-bottom: 16px;
    color: #fff;
}
.cd8956-promo-strip-text { min-width: 0; }
.cd8956-promo-strip-title { font-size: 14px; font-weight: 800; margin: 0 0 2px; }
.cd8956-promo-strip-sub { font-size: 11.5px; color: rgba(255, 255, 255, 0.86); margin: 0; }

/* =====================================================================
   Extended footer (homepage only)
   ===================================================================== */
.cd8956-ext-footer {
    margin-top: 22px;
    padding: 18px 14px 8px;
    background:
        linear-gradient(180deg, rgba(33, 28, 32, 0.6) 0%, rgba(17, 15, 20, 0.9) 100%);
    border-top: 1px solid var(--cd8956-line);
    border-radius: var(--cd8956-radius-l) var(--cd8956-radius-l) 0 0;
}
.cd8956-ext-foot-brand { display: flex; gap: 11px; align-items: center; margin-bottom: 12px; }
.cd8956-ext-foot-brand img { width: 44px; height: 44px; border-radius: 11px; object-fit: cover; background: #fff; }
.cd8956-ext-foot-brand-text h3 { font-size: 15px; color: #fff; margin: 0 0 2px; }
.cd8956-ext-foot-brand-text p { font-size: 12px; color: var(--cd8956-silver); margin: 0; }

.cd8956-ext-foot-promos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 14px 0;
}
.cd8956-ext-foot-promo {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px;
    border-radius: var(--cd8956-radius-m);
    background: rgba(224, 224, 224, 0.06);
    border: 1px solid var(--cd8956-line);
    cursor: pointer;
    min-height: 44px;
}
.cd8956-ext-foot-promo:hover { background: rgba(136, 14, 79, 0.3); }
.cd8956-ext-foot-promo-title { font-size: 12.5px; font-weight: 700; color: #fff; }
.cd8956-ext-foot-promo-sub { font-size: 11px; color: var(--cd8956-silver); }

.cd8956-ext-foot-dir-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--cd8956-blush);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 16px 0 8px;
}
.cd8956-ext-foot-dir {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}
.cd8956-ext-foot-dir a {
    display: block;
    padding: 8px 10px;
    background: rgba(224, 224, 224, 0.05);
    border: 1px solid var(--cd8956-line);
    border-radius: 9px;
    font-size: 11.5px;
    color: var(--cd8956-paper);
    line-height: 1.3;
}
.cd8956-ext-foot-dir a:hover { background: rgba(136, 14, 79, 0.28); color: #fff; }

.cd8956-ext-foot-disclaimer {
    margin-top: 14px;
    padding: 10px 12px;
    background: rgba(224, 224, 224, 0.04);
    border: 1px dashed var(--cd8956-line-strong);
    border-radius: 10px;
    font-size: 11px;
    color: var(--cd8956-silver);
    line-height: 1.5;
}

/* =====================================================================
   Footer copyright bar
   ===================================================================== */
.cd8956-foot {
    padding: 12px 14px calc(var(--cd8956-bottomnav-h) + 16px);
    text-align: center;
    color: var(--cd8956-silver);
    font-size: 11px;
    border-top: 1px solid var(--cd8956-line);
    background: rgba(17, 15, 20, 0.85);
}
.cd8956-foot-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 10px;
    margin-bottom: 6px;
}
.cd8956-foot-links a { font-size: 11px; color: var(--cd8956-silver); }
.cd8956-foot-links a:hover { color: #fff; }
.cd8956-foot-copy { margin: 0; }

/* =====================================================================
   Mobile bottom navigation — brand-emphasis band (5 roles)
   ===================================================================== */
.cd8956-bottomnav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: var(--cd8956-max-canvas);
    margin: 0 auto;
    height: var(--cd8956-bottomnav-h);
    background: linear-gradient(180deg, rgba(33, 28, 32, 0.98) 0%, rgba(17, 15, 20, 1) 100%);
    border-top: 2px solid var(--cd8956-wine);
    box-shadow: 0 -8px 22px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    z-index: 45;
}
.cd8956-bottomnav::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--cd8956-blush) 50%, transparent 100%);
    border-radius: 0 0 6px 6px;
}

.cd8956-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 2px 4px;
    color: var(--cd8956-silver);
    text-decoration: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    position: relative;
    min-height: 44px;
    transition: color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}
.cd8956-nav-item:hover { color: #fff; }

.cd8956-nav-ico {
    width: 34px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.25s ease;
}
.cd8956-nav-ico svg { width: 21px; height: 21px; }

.cd8956-nav-label { font-size: 10px; font-weight: 600; letter-spacing: 0.2px; }

/* Active state — background support block + icon morph */
.cd8956-nav-item.cd8956-active {
    color: #fff;
}
.cd8956-nav-item.cd8956-active .cd8956-nav-ico {
    background: linear-gradient(135deg, var(--cd8956-wine) 0%, #b31463 100%);
    box-shadow: 0 4px 10px rgba(136, 14, 79, 0.6);
    color: var(--cd8956-blush);
    transform: translateY(-1px) scale(1.04);
}
.cd8956-nav-item.cd8956-active .cd8956-nav-label { color: var(--cd8956-blush); }

/* Promotional accent for the two promo roles */
.cd8956-nav-item--promo .cd8956-nav-ico {
    color: var(--cd8956-blush);
}

/* =====================================================================
   Back-to-top control
   ===================================================================== */
.cd8956-top-btn {
    position: fixed;
    right: 14px;
    bottom: calc(var(--cd8956-bottomnav-h) + 14px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cd8956-wine);
    color: #fff;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(136, 14, 79, 0.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 40;
}
.cd8956-top-btn--show { opacity: 1; visibility: visible; transform: translateY(0); }
.cd8956-top-btn svg { width: 20px; height: 20px; }

/* =====================================================================
   Utility & accessibility
   ===================================================================== */
.cd8956-visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.cd8956-row { display: flex; gap: 10px; align-items: center; }
.cd8956-grow { flex: 1; min-width: 0; }

/* =====================================================================
   Help-page reading modules
   ===================================================================== */
.cd8956-article-main, .cd8956-faq-main { padding-top: 18px; }
.cd8956-article-hero, .cd8956-faq-intro { padding: 18px 16px; border: 1px solid var(--cd8956-line-strong); border-radius: 18px; background: linear-gradient(145deg, rgba(54,69,79,.68), rgba(26,26,26,.62)); margin-bottom: 14px; }
.cd8956-kicker { margin: 0 0 7px; color: var(--cd8956-blush); text-transform: uppercase; letter-spacing: 1.2px; font-size: 10px; font-weight: 800; }
.cd8956-answer, .cd8956-direct-answer { padding: 12px 13px; border-left: 3px solid var(--cd8956-blush); background: rgba(224,224,224,.06); color: var(--cd8956-paper); font-size: 13px; }
.cd8956-action-row { display: flex; gap: 8px; flex-wrap: wrap; }
.cd8956-review-ribbon { display: flex; gap: 11px; align-items: flex-start; padding: 12px; margin-bottom: 20px; border-top: 1px solid var(--cd8956-line-strong); border-bottom: 1px solid var(--cd8956-line-strong); }
.cd8956-ribbon-mark, .cd8956-question-mark { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto; width: 36px; height: 36px; border-radius: 10px; background: var(--cd8956-wine); color: #fff; font-weight: 800; }
.cd8956-review-ribbon strong { color: #fff; font-size: 14px; } .cd8956-review-ribbon p { margin: 2px 0 0; color: var(--cd8956-silver); font-size: 12px; }
.cd8956-article-section, .cd8956-faq-section { margin: 0 0 24px; }
.cd8956-article-section h2, .cd8956-faq-section h2, .cd8956-review-conclusion h2 { font-size: 19px; color: #fff; margin-bottom: 10px; }
.cd8956-article-section h2::after, .cd8956-faq-section h2::after { content: ""; display: block; width: 42px; height: 2px; margin-top: 7px; background: var(--cd8956-blush); }
.cd8956-article-section p, .cd8956-faq-section p, .cd8956-review-conclusion p { font-size: 13.5px; color: var(--cd8956-paper); }
.cd8956-step-list { list-style: none; padding: 0; counter-reset: none; }
.cd8956-step-list li { display: flex; gap: 10px; margin: 0 0 10px; padding: 11px; border: 1px solid var(--cd8956-line); background: rgba(224,224,224,.045); border-radius: 12px; }
.cd8956-step-list li > span { color: var(--cd8956-blush); font-size: 11px; font-weight: 800; min-width: 22px; } .cd8956-step-list h3 { color: #fff; font-size: 14px; margin: 0 0 3px; } .cd8956-step-list p { margin: 0; font-size: 12.5px; }
.cd8956-inline-promo, .cd8956-text-promo, .cd8956-faq-promo { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 8px 13px; border: 1px solid rgba(255,204,203,.42); border-radius: 9px; background: rgba(136,14,79,.4); color: #fff; font: 700 12px inherit; cursor: pointer; }
.cd8956-compare-table { border: 1px solid var(--cd8956-line-strong); border-radius: 12px; overflow: hidden; margin: 12px 0; }
.cd8956-compare-row { display: grid; grid-template-columns: .82fr 1.18fr; gap: 8px; padding: 10px; border-top: 1px solid var(--cd8956-line); font-size: 12px; } .cd8956-compare-row:first-child { border-top: 0; } .cd8956-compare-row span:first-child { color: var(--cd8956-blush); font-weight: 700; } .cd8956-compare-head { background: rgba(136,14,79,.35); color: #fff; font-weight: 800; }
.cd8956-split-section { display: grid; grid-template-columns: 1fr; gap: 12px; } .cd8956-side-note { padding: 13px; border: 1px dashed var(--cd8956-line-strong); border-radius: 12px; background: rgba(54,69,79,.35); } .cd8956-side-note span { color: var(--cd8956-blush); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; } .cd8956-side-note strong { display:block; color:#fff; margin: 4px 0; }
.cd8956-evidence-grid { display: grid; grid-template-columns: 1fr; gap: 8px; margin: 12px 0; } .cd8956-evidence-grid > div, .cd8956-faq-pros article { padding: 11px; border: 1px solid var(--cd8956-line); border-radius: 10px; } .cd8956-evidence-grid h3, .cd8956-faq-pros h3 { color: #fff; font-size: 14px; margin: 0 0 4px; } .cd8956-evidence-grid p, .cd8956-faq-pros p { margin: 0; font-size: 12.5px; }
.cd8956-trouble-list details, .cd8956-faq-stack details { border-bottom: 1px solid var(--cd8956-line-strong); padding: 12px 0; } .cd8956-trouble-list summary, .cd8956-faq-stack summary { cursor: pointer; color: #fff; font-weight: 700; font-size: 14px; min-height: 30px; } .cd8956-trouble-list details p, .cd8956-faq-stack details p { margin: 7px 0; }
.cd8956-verification-track { display: grid; grid-template-columns: 1fr; gap: 7px; margin: 12px 0; } .cd8956-verification-track div { display:grid; grid-template-columns: 70px 1fr; gap: 8px; padding: 9px; border-left: 3px solid var(--cd8956-wine); background: rgba(224,224,224,.05); font-size: 12px; } .cd8956-verification-track b { color: var(--cd8956-blush); } .cd8956-verification-track span { color: var(--cd8956-paper); }
.cd8956-review-conclusion { padding: 15px; border-radius: 16px; border: 1px solid rgba(255,204,203,.3); background: linear-gradient(135deg, rgba(136,14,79,.38), rgba(54,69,79,.42)); }
.cd8956-faq-intro { display:flex; gap: 11px; align-items:flex-start; } .cd8956-faq-intro .cd8956-h1 { font-size: 21px; } .cd8956-direct-answer { margin: 0 0 20px; border-radius: 9px; }
.cd8956-faq-stack { padding: 0 12px; border: 1px solid var(--cd8956-line); border-radius: 14px; background: rgba(26,26,26,.4); } .cd8956-faq-stack details:last-child { border-bottom: 0; }
.cd8956-entity-map { display:flex; align-items: stretch; gap: 4px; overflow-x: auto; padding: 4px 0 10px; } .cd8956-entity-map i { display:flex; align-items:center; color:var(--cd8956-blush); font-style:normal; } .cd8956-entity-node { min-width: 92px; padding: 9px; border:1px solid var(--cd8956-line-strong); border-radius:10px; background:rgba(54,69,79,.4); } .cd8956-entity-node b { display:block; color:#fff; font-size:12px; } .cd8956-entity-node span { color:var(--cd8956-silver); font-size:10px; }
.cd8956-check-list { list-style: none; padding: 0; } .cd8956-check-list li { padding: 9px 10px 9px 28px; margin: 0 0 7px; position: relative; border-bottom: 1px solid var(--cd8956-line); font-size: 12.5px; } .cd8956-check-list li::before { content:"✓"; position:absolute; left:8px; color:var(--cd8956-blush); font-weight:800; }
.cd8956-safety-band { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin: 12px 0; } .cd8956-safety-band > div { padding: 11px; border:1px solid var(--cd8956-line); border-radius:11px; } .cd8956-safety-icon { display:inline-flex; width:25px; height:25px; justify-content:center; align-items:center; border-radius:50%; background:var(--cd8956-wine); color:#fff; font-weight:800; } .cd8956-safety-band h3 { color:#fff; font-size:13px; margin:6px 0 3px; } .cd8956-safety-band p { font-size:11.5px; margin:0; }
.cd8956-faq-pros { display:grid; grid-template-columns:1fr; gap:8px; margin: 12px 0; } .cd8956-question-grid { display:grid; grid-template-columns:1fr; gap:7px; margin:12px 0 16px; } .cd8956-question-grid a { padding:10px; border:1px solid var(--cd8956-line); border-radius:9px; font-size:12px; }
@media (min-width: 380px) { .cd8956-evidence-grid, .cd8956-faq-pros { grid-template-columns: repeat(3, 1fr); } .cd8956-faq-pros { grid-template-columns: 1fr 1fr; } }
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
