/* ── MTG Rarity Badges ─────────────────────────────────────── */
.mtg-rarity-badge {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    border: 2px solid rgba(255,255,255,0.5);
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    z-index: 2;
}

.mtg-rarity-badge-sm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 7px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.mtg-rarity-common,    .mtg-rarity-badge.mtg-rarity-common    { background: #6b6b6b; color: #fff; }
.mtg-rarity-uncommon,  .mtg-rarity-badge.mtg-rarity-uncommon  { background: #8aabb4; color: #fff; }
.mtg-rarity-rare,      .mtg-rarity-badge.mtg-rarity-rare      { background: #c8a000; color: #fff; }
.mtg-rarity-mythic,    .mtg-rarity-badge.mtg-rarity-mythic    { background: linear-gradient(135deg,#e05000,#c8a000); color: #fff; }
.mtg-rarity-special,   .mtg-rarity-badge.mtg-rarity-special   { background: linear-gradient(135deg,#7b2fbe,#c8a000); color: #fff; }

/* ── MTG Mana Pips ─────────────────────────────────────────── */
.mtg-color-pips { display: flex; gap: 3px; flex-wrap: wrap; }

.mtg-pip {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.mtg-pip-w { background: radial-gradient(circle at 40% 40%, #fffde0, #d4c97a); }
.mtg-pip-u { background: radial-gradient(circle at 40% 40%, #4fa3e8, #1a3a8b); }
.mtg-pip-b { background: radial-gradient(circle at 40% 40%, #555, #1a1a2e); }
.mtg-pip-r { background: radial-gradient(circle at 40% 40%, #f06030, #8b1010); }
.mtg-pip-g { background: radial-gradient(circle at 40% 40%, #30b050, #0a4a1a); }
.mtg-pip-c { background: radial-gradient(circle at 40% 40%, #ddd, #888); }

/* ── Expansion Grid Cards ──────────────────────────────────── */
.mtg-expansion-card {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.mtg-expansion-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 24px rgba(139,26,26,0.18);
}

.mtg-expansion-img-wrap {
    position: relative;
    background: #f0e8e0;
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.mtg-expansion-img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.mtg-expansion-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    color: #bbb;
}

.mtg-expansion-info {
    padding: 8px 10px 10px;
    flex: 1;
}

.mtg-expansion-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mtg-expansion-type {
    font-size: 0.7rem;
    color: #888;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mtg-expansion-price {
    font-size: 0.78rem;
    font-weight: 700;
}

/* ── Mana Cost Display ─────────────────────────────────────── */
.mtg-mana-cost {
    display: inline-flex;
    gap: 2px;
    align-items: center;
    flex-wrap: wrap;
}

.mtg-mana-symbol {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    border: 1px solid rgba(0,0,0,0.25);
}

.mtg-mana-W { background: #f9f7e8; color: #888; }
.mtg-mana-U { background: #1a3a8b; color: #fff; }
.mtg-mana-B { background: #1a1a2e; color: #ccc; }
.mtg-mana-R { background: #8b1010; color: #fff; }
.mtg-mana-G { background: #0a4a1a; color: #fff; }
.mtg-mana-C { background: #9e9e9e; color: #fff; }
.mtg-mana-X { background: #555;    color: #fff; }
.mtg-mana-num { background: #888;  color: #fff; }

/* ── Foil shimmer ──────────────────────────────────────────── */
.mtg-foil-effect {
    position: relative;
    overflow: hidden;
}

.mtg-foil-effect::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 30%,
        rgba(255,215,0,0.15) 50%,
        transparent 70%
    );
    pointer-events: none;
    animation: mtg-foil-shine 3s linear infinite;
}

@keyframes mtg-foil-shine {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}
