.rcm-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    align-items: end;
    margin: 0 0 22px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(28,28,45,.95), rgba(11,11,17,.95));
    color: white;
    box-shadow: 0 14px 35px rgba(0,0,0,.16);
}

.rcm-filters label span {
    display: block;
    font-size: 12px;
    opacity: .78;
    margin-bottom: 5px;
}

.rcm-filters input,
.rcm-filters select {
    width: 100%;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
    color: white;
    border-radius: 12px;
    padding: 10px 12px;
}

.rcm-filters select option {
    color: #111;
}

.rcm-filters button,
.rcm-clear {
    min-height: 42px;
    border: 0;
    border-radius: 12px;
    padding: 10px 14px;
    font-weight: 800;
    cursor: pointer;
}

.rcm-filters button {
    background: #60a5fa;
    color: #111;
}

.rcm-clear {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.12);
    color: white;
    text-decoration: none;
}

.rcm-count {
    margin: 0 0 12px;
    font-weight: 700;
}

.rcm-binder {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 22px;
    padding: 18px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top left, rgba(251,191,36,.18), transparent 34%),
        linear-gradient(135deg, #151521, #07070b);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 20px 55px rgba(0,0,0,.22);
}

.rcm-card {
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(0,0,0,.28);
    position: relative;
    transition: transform .22s ease, box-shadow .22s ease;
}

.rcm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(0,0,0,.35);
}

.rcm-card-image {
    position: relative;
    background: #09090f;
}

.rcm-card-image img {
    width: 100%;
    display: block;
}

.rcm-placeholder {
    aspect-ratio: 0.716;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-weight: 800;
}

.rcm-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .02em;
    color: white;
    box-shadow: 0 8px 18px rgba(0,0,0,.28);
}

.rcm-badge.sale { background: #16a34a; }
.rcm-badge.trade { background: #2563eb; }
.rcm-badge.collection { background: #9333ea; }

.rcm-card-body {
    padding: 14px;
    color: white;
}

.rcm-card h3 {
    margin: 0 0 4px;
    font-size: 17px;
    line-height: 1.22;
}

.rcm-version {
    margin: 0 0 10px;
    color: #cbd5e1;
    font-size: 13px;
}

.rcm-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: #fef3c7;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
}

.rcm-details {
    margin: 0;
    display: grid;
    gap: 6px;
    font-size: 12px;
}

.rcm-details div {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 8px;
}

.rcm-details dt {
    color: #94a3b8;
}

.rcm-details dd {
    margin: 0;
    color: #e2e8f0;
}

@media (max-width: 560px) {
    .rcm-binder {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 14px;
        padding: 12px;
    }

    .rcm-card-body {
        padding: 10px;
    }
}

.rcm-legal{font-size:12px;color:#64748b;margin-top:14px}.rcm-text{grid-column:1/-1}.rcm-text dd{white-space:pre-wrap}
