/**
 * PUBLIC CAR SHOW — PREMIUM STYLES
 * File: /assets/css/public_carshow_20260304.css
 *
 * LIGHT MODE ONLY. No dark mode.
 * PCG Brand: Fredoka + Nunito, teal-blue gradients, warm accents
 * Includes slide-in drawer for car detail view.
 * All classes timestamped _20260304
 *
 * Redesigned: 20260304
 */

/* ─── LAYOUT ─────────────────────────────────────────────── */
.pcg_cs_main_20260304 {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    font-family: 'Nunito', sans-serif;
    color: #1e2a36;
    background: #f3f0ec;
    min-height: 100vh;
}
.pcg_cs_empty_20260304 {
    text-align: center;
    padding: 120px 24px;
    font-size: 17px;
    color: #8a7a6a;
}

/* ─── HERO BANNER ────────────────────────────────────────── */
.pcg_cs_hero_20260304 {
    background: linear-gradient(160deg, #3f6f8a 0%, #2d5a73 50%, #234b62 100%);
    padding: 52px 24px 44px;
    position: relative;
    overflow: hidden;
}
.pcg_cs_hero_20260304::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(255,255,255,0.06) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0,0,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.pcg_cs_hero_20260304::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.pcg_cs_hero_inner_20260304 {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.pcg_cs_hero_title_20260304 {
    font-family: 'Fredoka', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
    line-height: 1.1;
    text-shadow: 0 2px 16px rgba(0,0,0,0.18);
    letter-spacing: -0.02em;
}
.pcg_cs_hero_title_20260304 span {
    background: rgba(255,255,255,0.12);
    padding: 2px 14px;
    border-radius: 10px;
    display: inline-block;
}
.pcg_cs_hero_sub_20260304 {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    font-weight: 500;
}

/* ─── PULSE ──────────────────────────────────────────────── */
.pcg_cs_pulse_20260304 {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 14px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    padding: 9px 22px;
    margin-top: 22px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    font-weight: 600;
}
.pcg_cs_pulse_20260304 strong { color: #fff; font-weight: 800; }
.pcg_cs_pulse_dot_20260304 {
    width: 7px; height: 7px;
    background: #4ade80;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 6px rgba(74,222,128,0.6);
    animation: pcg_cs_dot_20260304 2.2s ease-in-out infinite;
}
@keyframes pcg_cs_dot_20260304 {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.3; }
}
.pcg_cs_pulse_stat_20260304 {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.pcg_cs_pulse_sep_20260304 {
    width: 3px; height: 3px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: inline-block;
}

/* ─── TAB BAR ────────────────────────────────────────────── */
.pcg_cs_tabbar_20260304 {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #f3f0ec;
    border-bottom: 1px solid #ddd5ca;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.pcg_cs_tabbar_inner_20260304 {
    display: flex;
    gap: 6px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 12px 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.pcg_cs_tabbar_inner_20260304::-webkit-scrollbar { display: none; }
.pcg_cs_tab_20260304 {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #5a4e42;
    background: #ffffff;
    border: 1px solid #ddd5ca;
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}
.pcg_cs_tab_20260304:hover {
    background: #faf6f2;
    border-color: #c4b8a8;
    color: #2a2018;
}
.pcg_cs_tab_count_20260304 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px; height: 20px;
    font-size: 10px; font-weight: 800;
    background: #eee8df; color: #7a6a5a;
    border-radius: 50px; padding: 0 5px;
    line-height: 1;
}
.pcg_cs_tab_on_20260304 {
    background: linear-gradient(135deg, #3f6f8a 0%, #2d5a73 100%);
    color: #fff; border-color: transparent;
    box-shadow: 0 2px 10px rgba(45,90,115,0.3);
}
.pcg_cs_tab_on_20260304 .pcg_cs_tab_count_20260304 { background: rgba(255,255,255,0.2); color: #fff; }
.pcg_cs_tab_on_20260304:hover { background: linear-gradient(135deg, #365f78, #264d63); color: #fff; border-color: transparent; }

/* ─── SECTION ────────────────────────────────────────────── */
.pcg_cs_sec_20260304 { max-width: 1300px; margin: 0 auto; padding: 28px 20px 44px; }
.pcg_cs_sec_off_20260304 { display: none; }
.pcg_cs_sec_head_20260304 { margin-bottom: 22px; }
.pcg_cs_sec_title_20260304 { font-family: 'Fredoka', sans-serif; font-size: 26px; font-weight: 600; color: #1e2a36; margin: 0 0 4px; }
.pcg_cs_sec_desc_20260304 { font-size: 14px; color: #7a6a5a; margin: 0; font-weight: 500; }

/* ─── GRID ───────────────────────────────────────────────── */
.pcg_cs_grid_20260304 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }

/* ─── CARD ───────────────────────────────────────────────── */
.pcg_cs_card_20260304 {
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
    background: #ffffff; border-radius: 12px;
    overflow: hidden; cursor: pointer;
    position: relative; border: 1px solid #e4ddd5;
    transition: transform 0.24s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.24s ease, border-color 0.2s ease;
    animation: pcg_cs_cardIn_20260304 0.45s ease both;
    animation-delay: calc(var(--ci, 0) * 0.05s);
}
@keyframes pcg_cs_cardIn_20260304 {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}
.pcg_cs_card_20260304:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(45,90,115,0.12), 0 2px 8px rgba(0,0,0,0.06);
    border-color: #3f6f8a; z-index: 2;
}
.pcg_cs_card_20260304:visited { color: inherit; }
.pcg_cs_card_r_chase_20260304      { border-left: 3px solid #dc2626; }
.pcg_cs_card_r_superchase_20260304 { border-left: 3px solid #9333ea; }
.pcg_cs_card_r_rare_20260304       { border-left: 3px solid #2563eb; }
.pcg_cs_card_r_uncommon_20260304   { border-left: 3px solid #16a34a; }
.pcg_cs_card_r_common_20260304     { border-left: 3px solid #c8bdb0; }

.pcg_cs_card_imgwrap_20260304 {
    position: relative; overflow: hidden;
    background: linear-gradient(145deg, #f6f2ee, #eae4dc);
}
.pcg_cs_card_img_20260304 {
    width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block;
    transition: transform 0.35s ease;
}
.pcg_cs_card_20260304:hover .pcg_cs_card_img_20260304 { transform: scale(1.06); }

.pcg_cs_card_badge_20260304 {
    position: absolute; bottom: 7px; left: 7px;
    font-size: 8.5px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.7px; padding: 3px 7px; border-radius: 4px;
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); line-height: 1;
}
.pcg_cs_badge_chase_20260304      { background: rgba(220,38,38,0.88); color: #fff; }
.pcg_cs_badge_superchase_20260304 { background: rgba(147,51,234,0.88); color: #fff; }
.pcg_cs_badge_rare_20260304       { background: rgba(37,99,235,0.88); color: #fff; }
.pcg_cs_badge_uncommon_20260304   { background: rgba(22,163,74,0.88); color: #fff; }
.pcg_cs_badge_common_20260304     { background: rgba(0,0,0,0.45); color: rgba(255,255,255,0.9); }

.pcg_cs_card_info_20260304 { padding: 9px 10px 10px; display: flex; flex-direction: column; gap: 1px; flex: 1; }
.pcg_cs_card_name_20260304 { font-size: 12px; font-weight: 700; color: #1e2a36; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pcg_cs_card_meta_20260304 { font-size: 11px; color: #8a7a6a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.pcg_cs_card_codes_20260304 { display: flex; gap: 4px; margin-top: 3px; }
.pcg_cs_card_codes_20260304 span {
    font-family: 'JetBrains Mono', monospace; font-size: 9.5px; font-weight: 500;
    color: #8a7a6a; background: #f4f0eb; padding: 1px 5px; border-radius: 3px; letter-spacing: 0.02em; line-height: 1.4;
}
.pcg_cs_card_signals_20260304 { display: flex; flex-wrap: wrap; gap: 3px; margin-top: 5px; }
.pcg_cs_chip_20260304 {
    font-size: 9.5px; font-weight: 600; color: #2d5a73;
    background: #edf5fa; border: 1px solid #d0e4f0; border-radius: 3px; padding: 1px 5px; white-space: nowrap; line-height: 1.4;
}

/* ─── HOOK ───────────────────────────────────────────────── */
.pcg_cs_hook_20260304 {
    margin-top: 24px; display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(135deg, #2d5a73, #3f6f8a); border-radius: 14px; padding: 20px 28px; gap: 20px;
    position: relative; overflow: hidden;
}
.pcg_cs_hook_20260304::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 10% 50%, rgba(255,255,255,0.06) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.pcg_cs_hook_text_20260304 { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.6; position: relative; }
.pcg_cs_hook_text_20260304 strong { color: #fff; display: block; font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.pcg_cs_hook_btn_20260304 {
    display: inline-flex; align-items: center; background: #fff; color: #2d5a73 !important;
    font-size: 13px; font-weight: 800; padding: 12px 28px; border-radius: 50px;
    text-decoration: none !important; white-space: nowrap; flex-shrink: 0;
    letter-spacing: 0.02em; position: relative; box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}
.pcg_cs_hook_btn_20260304:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.2); color: #1a3a4e !important; }

/* ─── NAV ACTIVE + BADGE ─────────────────────────────────── */
.pcg_pub_nav_active_20260304 { border-bottom: 2px solid #e05c1e; padding-bottom: 2px; }
.pcg_cs_nav_badge_20260304 {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #b24131 !important;
    color: #ffffff !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    padding: 1px 5px !important;
    border-radius: 50px !important;
    min-width: 16px !important;
    height: 16px !important;
    line-height: 1 !important;
    margin-left: 3px !important;
    letter-spacing: -0.02em !important;
    text-decoration: none !important;
    vertical-align: middle !important;
    box-sizing: border-box !important;
}
/* ─── NO-LOGO HEADER ────────────────────────────────────── */
.pcg_pub_header_nologo_20260304 .pcg_pub_header_top {
    justify-content: space-between !important;
    gap: 12px !important;
}
.pcg_pub_header_nologo_20260304 .pcg_pub_header_nav_icons {
    flex: 1 !important;
    justify-content: center !important;
    gap: 20px !important;
}
.pcg_pub_header_nologo_20260304 .pcg_pub_header_nav_btn {
    gap: 6px !important;
}
.pcg_pub_header_nologo_20260304 .pcg_pub_header_nav_label {
    font-size: 14px !important;
}
@media (max-width: 480px) {
    .pcg_pub_header_nologo_20260304 .pcg_pub_header_nav_icons {
        gap: 14px !important;
    }
    .pcg_pub_header_nologo_20260304 .pcg_pub_header_nav_label {
        font-size: 12px !important;
    }
}


/* ═══════════════════════════════════════════════════════════════
   SLIDE-IN DRAWER — Car Detail View
   ═══════════════════════════════════════════════════════════════ */

/* Overlay */
.pcg_cs_dw_overlay_20260304 {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 9000;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.pcg_cs_dw_overlay_20260304.pcg_cs_dw_open_20260304 {
    opacity: 1;
}

/* Panel */
.pcg_cs_dw_panel_20260304 {
    position: fixed;
    top: 0;
    right: -100%;
    width: 92%;
    max-width: 420px;
    height: 100%;
    background: #fdfdfd;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
    z-index: 9001;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transition: right 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.pcg_cs_dw_open_20260304 .pcg_cs_dw_panel_20260304 {
    right: 0;
}
.pcg_cs_dw_body_20260304 {
    padding-bottom: 40px;
}

/* Close button */
.pcg_cs_dw_close_20260304 {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 14px 6px;
    background: linear-gradient(180deg, #fdfdfd 70%, transparent);
}
.pcg_cs_dw_close_btn_20260304 {
    background: #f1f5f9;
    border: none;
    width: 34px; height: 34px;
    border-radius: 50%;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.pcg_cs_dw_close_btn_20260304:hover {
    background: #e2e8f0;
    color: #334155;
}

/* Main image area */
.pcg_cs_dw_imgarea_20260304 {
    position: relative;
    background: linear-gradient(145deg, #f6f2ee, #eae4dc);
    overflow: hidden;
}
.pcg_cs_dw_mainimg_20260304 {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Content */
.pcg_cs_dw_content_20260304 {
    padding: 16px 18px 20px;
}

/* Name */
.pcg_cs_dw_name_20260304 {
    font-family: 'Fredoka', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 4px;
}

/* Codes (mattel / asst) */
.pcg_cs_dw_codes_20260304 {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}
.pcg_cs_dw_codes_20260304 span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    color: #7a6a5a;
    background: #f4f0eb;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.03em;
}

/* Meta line */
.pcg_cs_dw_meta_20260304 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13px;
    color: #475569;
}

/* Rarity badge inside drawer */
.pcg_cs_dw_rbadge_20260304 {
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pcg_cs_dw_rbadge_chase_20260304      { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.pcg_cs_dw_rbadge_superchase_20260304 { background: #faf5ff; color: #9333ea; border: 1px solid #e9d5ff; }
.pcg_cs_dw_rbadge_rare_20260304       { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }
.pcg_cs_dw_rbadge_uncommon_20260304   { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }
.pcg_cs_dw_rbadge_common_20260304     { background: #f8f6f3; color: #7a6a5a; border: 1px solid #e4ddd5; }

/* Signal chips in drawer */
.pcg_cs_dw_chips_20260304 {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 18px;
}
.pcg_cs_dw_chip_20260304 {
    font-size: 11px;
    font-weight: 600;
    color: #2d5a73;
    background: #edf5fa;
    border: 1px solid #d0e4f0;
    border-radius: 6px;
    padding: 4px 10px;
    white-space: nowrap;
}

/* Gated action buttons */
.pcg_cs_dw_actions_20260304 {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}
.pcg_cs_dw_action_20260304 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 0;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: 1.5px solid #d0e4f0;
    background: #f8fbfd;
    color: #3f6f8a;
    transition: all 0.15s ease;
}
.pcg_cs_dw_action_20260304:hover {
    background: #edf5fa;
    border-color: #3f6f8a;
}
.pcg_cs_dw_action_icon_20260304 {
    font-size: 16px;
    line-height: 1;
}

/* Gate message */
.pcg_cs_dw_gate_20260304 {
    font-size: 12px;
    color: #94a3b8;
    text-align: center;
    margin: 0 0 20px;
    padding: 0 8px;
    line-height: 1.5;
}

/* ─── VARIANTS SECTION ───────────────────────────────────── */
.pcg_cs_dw_variants_20260304 {
    border-top: 1px solid #f1f5f9;
    padding-top: 18px;
}
.pcg_cs_dw_var_head_20260304 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.pcg_cs_dw_var_title_20260304 {
    font-family: 'Fredoka', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1e2a36;
}

/* Variants grid — horizontal cards */
.pcg_cs_dw_var_grid_20260304 {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 4px;
}
.pcg_cs_dw_var_grid_20260304::-webkit-scrollbar { display: none; }

.pcg_cs_dw_var_card_20260304 {
    flex: 0 0 110px;
    background: #fff;
    border: 1px solid #e4ddd5;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.pcg_cs_dw_var_card_20260304:hover {
    border-color: #3f6f8a;
    box-shadow: 0 4px 12px rgba(45,90,115,0.1);
}
.pcg_cs_dw_var_img_20260304 {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    background: #f4f0eb;
}
.pcg_cs_dw_var_info_20260304 {
    padding: 6px 7px;
}
.pcg_cs_dw_var_name_20260304 {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: #1e2a36;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pcg_cs_dw_var_year_20260304 {
    display: block;
    font-size: 9px;
    color: #8a7a6a;
    margin-top: 1px;
}

/* Loading state */
.pcg_cs_dw_var_loading_20260304 {
    font-size: 12px;
    color: #94a3b8;
    padding: 16px 0;
    text-align: center;
    width: 100%;
}

/* "Log in to see all variants" link */
.pcg_cs_dw_var_link_20260304 {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #3f6f8a;
    text-decoration: none;
    padding: 10px 0;
    border: 1.5px solid #d0e4f0;
    border-radius: 8px;
    background: #f8fbfd;
    transition: all 0.15s ease;
}
.pcg_cs_dw_var_link_20260304:hover {
    background: #edf5fa;
    border-color: #3f6f8a;
    color: #2d5a73;
}


/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
    .pcg_cs_grid_20260304 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    .pcg_cs_grid_20260304 { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .pcg_cs_hero_title_20260304 { font-size: 30px; }
    .pcg_cs_hero_20260304 { padding: 40px 16px 36px; }
}
@media (max-width: 600px) {
    .pcg_cs_sec_20260304 { padding: 20px 12px 32px; }
    .pcg_cs_hero_title_20260304 { font-size: 26px; }
    .pcg_cs_hero_sub_20260304 { font-size: 14px; }
    .pcg_cs_hook_20260304 { flex-direction: column; align-items: stretch; text-align: center; padding: 18px 20px; }
    .pcg_cs_hook_btn_20260304 { width: 100%; justify-content: center; }
    .pcg_cs_pulse_20260304 { border-radius: 14px; padding: 10px 16px; }
    .pcg_cs_tabbar_inner_20260304 {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 6px;
        padding: 10px 12px;
    }
    .pcg_cs_tab_20260304 { padding: 8px 10px; font-size: 12px; justify-content: center; }
    .pcg_cs_sec_title_20260304 { font-size: 22px; }
    .pcg_cs_dw_panel_20260304 { width: 100%; max-width: 100%; }
}
@media (max-width: 480px) {
    .pcg_cs_grid_20260304 { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .pcg_cs_hero_title_20260304 { font-size: 22px; }
    .pcg_cs_card_info_20260304 { padding: 7px 8px 8px; }
    .pcg_cs_card_name_20260304 { font-size: 11px; }
}
