/* =============================================
     CARDS.CSS — Shared Card Styles
     Single source of truth for .new-card system
     Used by: index.php, firms.php, (future pages)
     ============================================= */

/* ===== CARD CSS VARIABLES ===== */
:root {
    --card-padding-header: 12px;
    --card-padding-body: 10px;
    --card-key-stats-gap: 5px;
    --card-show-platforms: true;
    --card-show-coupon: true;
    --card-show-features: true;
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes shimmerBar { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes pulseRed { 0%,100% { opacity: 1; } 50% { opacity: 0.75; box-shadow: 0 5px 20px rgba(239,68,68,0.6); } }
@keyframes skullPulse { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }

/* ===== NEW CARD BASE — Premium Elite Design ===== */
.new-card { display: flex; flex-direction: column; background: var(--bg-card, rgba(15,20,35,0.85)); border: 1px solid rgba(6,182,212,0.18); border-radius: 16px; padding: 0; transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94); position: relative; overflow: hidden; backdrop-filter: blur(10px); height: 100%; }
.new-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #06b6d4, #3b82f6, #8b5cf6, #06b6d4); background-size: 300% 100%; animation: shimmerBar 4s ease-in-out infinite; z-index: 3; border-radius: 16px 16px 0 0; }
.new-card::after { content: ''; position: absolute; inset: 0; border-radius: 16px; padding: 1px; background: linear-gradient(135deg, rgba(6,182,212,0.25), transparent 40%, transparent 60%, rgba(59,130,246,0.15)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: 0; transition: opacity 0.4s; }
.new-card:hover { transform: translateY(-8px) scale(1.01); border-color: rgba(6,182,212,0.5); box-shadow: 0 20px 60px rgba(6,182,212,0.18), 0 0 40px rgba(6,182,212,0.06), inset 0 1px 0 rgba(255,255,255,0.05); }
.new-card:hover::after { opacity: 1; }

/* ===== RIBBON BADGE — Diagonal Corner Ribbon (top-right) ===== */
.ribbon {
    position: absolute;
    top: 0;
    right: 0;
    width: 90px;
    height: 90px;
    overflow: hidden;
    z-index: 10;
    pointer-events: none;
}
.ribbon span {
    position: absolute;
    display: block;
    width: 150px;
    padding: 6px 0;
    text-align: center;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    box-shadow: 0 3px 12px rgba(0,0,0,0.35);
    transform: rotate(45deg);
    top: 24px;
    right: -34px;
}
/* — Featured — */
.ribbon.featured-ribbon span { background: linear-gradient(135deg, #f59e0b, #ea580c); }

/* ===== FEATURED CARD — Dedicated corner ribbon (no shared CSS conflicts) ===== */
.featured-ribbon-wrap {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 88px !important;
    height: 88px !important;
    overflow: hidden !important;
    z-index: 20 !important;
    pointer-events: none !important;
    border-radius: 0 16px 0 0;
}
.featured-ribbon-wrap span {
    position: absolute !important;
    display: block !important;
    width: 145px !important;
    padding: 6px 0 !important;
    text-align: center !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    white-space: nowrap !important;
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.35) !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.4) !important;
    background: linear-gradient(135deg, #f59e0b, #ea580c) !important;
    transform: rotate(45deg) !important;
    top: 27px !important;
    right: -30px !important;
}
/* — Sponsored — */
.ribbon.sponsored-ribbon span { background: linear-gradient(135deg, #22c55e, #10b981); }
/* — Top Rated — */
.ribbon.top-rated span { background: linear-gradient(135deg, #8b5cf6, #a855f7); }
/* — Monitoring / Observation — */
.ribbon.monitoring span { background: linear-gradient(135deg, #f59e0b, #fbbf24); color: #000; text-shadow: none; }
/* — Scam — */
.ribbon.scam-badge span { background: linear-gradient(135deg, #ef4444, #dc2626); animation: pulseRed 2s infinite; }
/* — Most Popular — */
.ribbon.popular-ribbon span { background: linear-gradient(135deg, #ef4444, #f97316); }
/* — Newly Added — */
.ribbon.newlyadded-ribbon span { background: linear-gradient(135deg, #22c55e, #06b6d4); }

/* ===== CARD HEADER ===== */
.new-card-header { padding: var(--card-padding-header) var(--card-padding-body); padding-top: calc(var(--card-padding-header) + 24px); background: rgba(6,182,212,0.03); border-bottom: 1px solid rgba(6,182,212,0.1); position: relative; }
.firm-top { display: flex; align-items: flex-start; margin-bottom: 0; }
.firm-info { display: flex; align-items: center; gap: 8px; flex: 1; }
.firm-logo { width: 40px; height: 40px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 900; color: #fff; flex-shrink: 0; overflow: hidden; border: 2px solid rgba(6,182,212,0.3); background: rgba(6,182,212,0.15); }
.firm-logo img { width: 100%; height: 100%; object-fit: cover; border-radius: 8px; }
.firm-name { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.2; }
.firm-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; margin-top: 2px; }
.country-flag { width: 18px; height: 13px; border-radius: 2px; object-fit: cover; border: 1px solid rgba(255,255,255,0.15); vertical-align: middle; }
.since-year { color: var(--text-muted, #6b7280); font-size: 10px; display: flex; align-items: center; gap: 3px; }
.verified-badge { background: rgba(6,182,212,0.15); color: var(--cyan-light, #22d3ee); padding: 2px 7px; border-radius: 4px; font-size: 9px; font-weight: 700; display: inline-flex; align-items: center; gap: 3px; border: 1px solid rgba(6,182,212,0.2); }

/* Rating row: stars left, verified right — opposite sides */
.firm-rating-row { display: flex; align-items: center; justify-content: space-between; margin-top: 5px; padding-top: 5px; border-top: 1px solid rgba(6,182,212,0.08); }
.firm-rating-left { display: flex; align-items: center; gap: 4px; }
.stars { color: #fbbf24; font-size: 10px; letter-spacing: 0.5px; }
.rating-number { color: var(--cyan-light, #22d3ee); font-size: 11px; font-weight: 800; }
.rating-reviews { color: var(--text-muted, #6b7280); font-size: 9px; }

/* ===== CARD BODY ===== */
.new-card-body { flex: 1; display: flex; flex-direction: column; padding: var(--card-padding-body); overflow: hidden; }

/* ===== KEY STATS GRID — Premium Glass Morphism ===== */
.key-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--card-key-stats-gap); margin-bottom: 8px; }
.key-stat-box { background: linear-gradient(135deg, rgba(6,182,212,0.08), rgba(59,130,246,0.04)); padding: 6px 8px; border-radius: 8px; border: 1px solid rgba(6,182,212,0.12); transition: all 0.3s; }
.key-stat-box:hover { background: linear-gradient(135deg, rgba(6,182,212,0.14), rgba(59,130,246,0.08)); border-color: rgba(6,182,212,0.25); }
.key-stat-label { color: var(--text-muted, #6b7280); font-size: 9px; margin-bottom: 2px; display: flex; align-items: center; gap: 3px; }
.key-stat-label i { font-size: 9px; color: var(--cyan, #06b6d4); }
.key-stat-value { font-size: 12px; font-weight: 800; color: var(--cyan-light, #22d3ee); }

/* ===== PLATFORMS ROW ===== */
.platforms-row { margin-bottom: 8px; }
.platform-label { color: var(--text-muted, #6b7280); font-size: 10px; margin-bottom: 4px; display: flex; align-items: center; gap: 4px; }
.platform-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.platform-tag { background: rgba(6,182,212,0.1); padding: 4px 8px; border-radius: 6px; font-size: 10px; color: var(--cyan-light, #22d3ee); border: 1px solid rgba(6,182,212,0.2); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; transition: all 0.3s; cursor: default; }
.platform-tag:hover { background: rgba(6,182,212,0.18); border-color: rgba(6,182,212,0.4); }
.platform-tag i { font-size: 10px; color: var(--cyan, #06b6d4); }

/* ===== FEATURES GRID — 2x2 mirrored layout ===== */
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 6px; margin-bottom: 8px; }
.feature-left { display: flex; align-items: center; gap: 5px; color: var(--text-secondary, #9ca3af); font-size: 10px; padding: 5px 8px; border-radius: 6px; background: rgba(6,182,212,0.06); border: 1px solid rgba(6,182,212,0.1); }
.feature-left i { color: var(--cyan, #06b6d4); font-size: 9px; flex-shrink: 0; }
.feature-right { display: flex; align-items: center; gap: 5px; color: var(--text-secondary, #9ca3af); font-size: 10px; padding: 5px 8px; border-radius: 6px; background: rgba(6,182,212,0.06); border: 1px solid rgba(6,182,212,0.1); flex-direction: row-reverse; text-align: right; }
.feature-right i { color: var(--cyan, #06b6d4); font-size: 9px; flex-shrink: 0; }
.feature-right span { text-align: left; }

/* ===== COUPON BOX — Theme-matched blue/cyan ===== */
.coupon-box { background: rgba(6,182,212,0.05); border: 1px dashed rgba(6,182,212,0.4); border-radius: 8px; padding: 8px 10px; margin-bottom: 8px; transition: all 0.3s; }
.coupon-box:hover { background: rgba(6,182,212,0.1); border-color: rgba(6,182,212,0.6); }
.coupon-top { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.coupon-inner { display: flex; align-items: center; gap: 6px; }
.coupon-label { color: var(--cyan, #06b6d4); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.coupon-code-text { font-size: 9px; font-weight: 800; color: var(--cyan-light, #22d3ee); letter-spacing: 0.8px; background: rgba(6,182,212,0.08); padding: 2px 7px; border-radius: 5px; border: 1px solid rgba(6,182,212,0.15); line-height: 1.3; }
.coupon-timer-row { display: flex; align-items: center; justify-content: flex-end; gap: 2px; margin-top: 4px; }
.coupon-timer-digits { display: flex; gap: 2px; }
.coupon-timer-unit { background: rgba(6,182,212,0.06); border: 1px solid rgba(6,182,212,0.1); padding: 1px 4px; border-radius: 3px; font-size: 9px; font-weight: 800; color: var(--cyan-light, #22d3ee); min-width: 20px; text-align: center; font-variant-numeric: tabular-nums; }
.coupon-timer-sep { color: rgba(6,182,212,0.3); font-weight: 700; font-size: 9px; }

/* ===== CARD ACTIONS — Premium Buttons ===== */
.card-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-top: auto; }
.action-btn { padding: 8px; border-radius: 8px; font-size: 11px; font-weight: 700; cursor: pointer; transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94); border: none; text-align: center; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 5px; position: relative; overflow: hidden; }
.action-btn:hover { transform: translateY(-2px); }
.action-btn.primary { background: linear-gradient(135deg, #06b6d4, #3b82f6, #8b5cf6); background-size: 200% 200%; color: white; grid-column: span 2; box-shadow: 0 4px 15px rgba(6,182,212,0.25); }
.action-btn.primary:hover { box-shadow: 0 8px 30px rgba(6,182,212,0.4), 0 0 20px rgba(6,182,212,0.1); background-position: 100% 0; }
.action-btn.secondary { background: rgba(6,182,212,0.06); border: 1px solid rgba(6,182,212,0.2); color: var(--cyan-light, #22d3ee); }
.action-btn.secondary:hover { background: rgba(6,182,212,0.14); border-color: rgba(6,182,212,0.45); box-shadow: 0 4px 15px rgba(6,182,212,0.1); }

/* ===== SCAM CARD VARIANT — Elite Crimson ===== */
.new-card.scam { background: linear-gradient(160deg, rgba(239,68,68,0.1), rgba(15,20,35,0.85) 50%); border-color: rgba(239,68,68,0.35); }
.new-card.scam::before { background: linear-gradient(90deg, #ef4444, #dc2626, #b91c1c, #ef4444); background-size: 300% 100%; animation: shimmerBar 3s ease-in-out infinite; }
.new-card.scam:hover { border-color: rgba(239,68,68,0.6); box-shadow: 0 20px 60px rgba(239,68,68,0.2), 0 0 80px rgba(239,68,68,0.06); }
.new-card.scam .new-card-header { background: linear-gradient(180deg, rgba(239,68,68,0.06), transparent); border-bottom-color: rgba(239,68,68,0.12); }
.new-card.scam .firm-name { color: #fca5a5; text-decoration: line-through; text-decoration-color: rgba(239,68,68,0.4); }
.new-card.scam .key-stat-value { color: #fca5a5; }
.new-card.scam .key-stat-box { border-color: rgba(239,68,68,0.12); background: linear-gradient(135deg, rgba(239,68,68,0.08), rgba(185,28,28,0.04)); }
.new-card.scam .key-stat-label i { color: #ef4444; }
.new-card.scam .platform-tag { background: rgba(239,68,68,0.1); color: #fca5a5; border-color: rgba(239,68,68,0.25); }
.new-card.scam .platform-tag i { color: #ef4444; }
.new-card.scam .action-btn.primary { background: linear-gradient(135deg, #ef4444, #dc2626, #b91c1c); box-shadow: 0 4px 20px rgba(239,68,68,0.35); }
.new-card.scam .action-btn.secondary { background: rgba(239,68,68,0.06); border-color: rgba(239,68,68,0.25); color: #fca5a5; }
.new-card.scam .feature-left i, .new-card.scam .feature-right i { color: #ef4444; }
.scam-warning-box { background: linear-gradient(135deg, rgba(239,68,68,0.1), rgba(185,28,28,0.06)); border: 1px solid rgba(239,68,68,0.25); border-radius: 8px; padding: 10px 12px; margin-bottom: 12px; }
.scam-warning-box .scam-warning-title { color: #fca5a5; font-size: 12px; font-weight: 700; margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.scam-warning-box .scam-warning-text { color: rgba(252,165,165,0.7); font-size: 11px; line-height: 1.4; }

/* ===== SCAM SKELETON/BLUR OVERLAY ===== */
.scam-skeleton-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 5; pointer-events: none; display: none; }
.scam-skeleton-overlay.show { display: flex; align-items: center; justify-content: center; background: rgba(15,20,35,0.6); backdrop-filter: blur(4px); border-radius: 16px; }
.scam-skeleton-content { text-align: center; }
.scam-skeleton-skull { font-size: 48px; margin-bottom: 8px; animation: skullPulse 2s ease-in-out infinite; }
.scam-skeleton-text { color: #ef4444; font-size: 12px; font-weight: 700; letter-spacing: 1px; }

/* ===== OBSERVATION CARD VARIANT — Elite Amber ===== */
.new-card.observation { background: linear-gradient(160deg, rgba(245,158,11,0.1), rgba(15,20,35,0.85) 50%); border-color: rgba(245,158,11,0.3); }
.new-card.observation::before { background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b); background-size: 300% 100%; animation: shimmerBar 3s ease-in-out infinite; }
.new-card.observation:hover { border-color: rgba(245,158,11,0.55); box-shadow: 0 20px 60px rgba(245,158,11,0.18), 0 0 60px rgba(245,158,11,0.05); }
.new-card.observation .new-card-header { background: linear-gradient(180deg, rgba(245,158,11,0.06), transparent); border-bottom-color: rgba(245,158,11,0.12); }
.new-card.observation .key-stat-value { color: #fbbf24; }
.new-card.observation .key-stat-box { border-color: rgba(245,158,11,0.12); background: linear-gradient(135deg, rgba(245,158,11,0.08), rgba(251,191,36,0.04)); }
.new-card.observation .key-stat-label i { color: #f59e0b; }
.new-card.observation .platform-tag { background: rgba(245,158,11,0.1); color: #fbbf24; border-color: rgba(245,158,11,0.25); }
.new-card.observation .platform-tag i { color: #f59e0b; }
.new-card.observation .action-btn.primary { background: linear-gradient(135deg, #f59e0b, #fbbf24, #f97316); color: #000; box-shadow: 0 4px 20px rgba(245,158,11,0.3); }
.new-card.observation .action-btn.secondary { background: rgba(245,158,11,0.06); border-color: rgba(245,158,11,0.25); color: #fbbf24; }
.new-card.observation .verified-badge { background: rgba(245,158,11,0.15); color: #fbbf24; border-color: rgba(245,158,11,0.2); }
.new-card.observation .feature-left i, .new-card.observation .feature-right i { color: #f59e0b; }

/* ===== TOP RATED CARD VARIANT — Cyan Blue Unified ===== */
.new-card.toprated { background: linear-gradient(160deg, rgba(6,182,212,0.12), rgba(59,130,246,0.06), rgba(15,20,35,0.85) 60%); border-color: rgba(6,182,212,0.3); }
.new-card.toprated::before { background: linear-gradient(90deg, #06b6d4, #3b82f6, #6366f1, #06b6d4); background-size: 300% 100%; animation: shimmerBar 3s ease-in-out infinite; }
.new-card.toprated:hover { border-color: rgba(6,182,212,0.6); box-shadow: 0 20px 60px rgba(6,182,212,0.2), 0 0 80px rgba(6,182,212,0.06); }

/* ===== FEATURED CARD VARIANT — Cyan Blue Unified ===== */
.new-card.featured { background: linear-gradient(160deg, rgba(6,182,212,0.12), rgba(59,130,246,0.06), rgba(15,20,35,0.85) 60%); border-color: rgba(6,182,212,0.3); }
.new-card.featured::before { background: linear-gradient(90deg, #06b6d4, #3b82f6, #6366f1, #06b6d4); background-size: 300% 100%; animation: shimmerBar 3s ease-in-out infinite; }
.new-card.featured:hover { border-color: rgba(6,182,212,0.6); box-shadow: 0 20px 60px rgba(6,182,212,0.2), 0 0 80px rgba(6,182,212,0.06); }

/* ===== SPONSORED CARD VARIANT — Cyan Blue Unified ===== */
.new-card.sponsored { background: linear-gradient(160deg, rgba(6,182,212,0.12), rgba(59,130,246,0.06), rgba(15,20,35,0.85) 60%); border-color: rgba(6,182,212,0.3); }
.new-card.sponsored::before { background: linear-gradient(90deg, #06b6d4, #3b82f6, #6366f1, #06b6d4); background-size: 300% 100%; animation: shimmerBar 3s ease-in-out infinite; }
.new-card.sponsored:hover { border-color: rgba(6,182,212,0.6); box-shadow: 0 20px 60px rgba(6,182,212,0.2), 0 0 80px rgba(6,182,212,0.06); }

/* ===== MOST POPULAR CARD VARIANT — Cyan Blue Unified ===== */
.new-card.popular { background: linear-gradient(160deg, rgba(6,182,212,0.12), rgba(59,130,246,0.06), rgba(15,20,35,0.85) 60%); border-color: rgba(6,182,212,0.3); }
.new-card.popular::before { background: linear-gradient(90deg, #06b6d4, #3b82f6, #6366f1, #06b6d4); background-size: 300% 100%; animation: shimmerBar 3s ease-in-out infinite; }
.new-card.popular:hover { border-color: rgba(6,182,212,0.6); box-shadow: 0 20px 60px rgba(6,182,212,0.2), 0 0 80px rgba(6,182,212,0.06); }

/* ===== NEWLY ADDED CARD VARIANT — Cyan Blue Unified ===== */
.new-card.newlyadded { background: linear-gradient(160deg, rgba(6,182,212,0.12), rgba(59,130,246,0.06), rgba(15,20,35,0.85) 60%); border-color: rgba(6,182,212,0.3); }
.new-card.newlyadded::before { background: linear-gradient(90deg, #06b6d4, #3b82f6, #6366f1, #06b6d4); background-size: 300% 100%; animation: shimmerBar 3s ease-in-out infinite; }
.new-card.newlyadded:hover { border-color: rgba(6,182,212,0.6); box-shadow: 0 20px 60px rgba(6,182,212,0.2), 0 0 80px rgba(6,182,212,0.06); }

/* ===== STATUS BADGES (Meta Score, Health, Scam Radar) ===== */
.status-badges { display: flex; gap: 5px; margin-top: 6px; flex-wrap: wrap; }
.status-pill { padding: 2px 7px; border-radius: 5px; font-size: 8px; font-weight: 700; display: inline-flex; align-items: center; gap: 3px; }
.status-pill.meta { background: rgba(6,182,212,0.12); color: var(--cyan-light, #22d3ee); border: 1px solid rgba(6,182,212,0.15); }
.status-pill.health-good { background: rgba(16,185,129,0.12); color: #34d399; border: 1px solid rgba(16,185,129,0.15); }
.status-pill.health-warn { background: rgba(245,158,11,0.12); color: #fbbf24; border: 1px solid rgba(245,158,11,0.15); }
.status-pill.radar-clean { background: rgba(16,185,129,0.12); color: #34d399; border: 1px solid rgba(16,185,129,0.15); }
.status-pill.radar-warn { background: rgba(245,158,11,0.12); color: #fbbf24; border: 1px solid rgba(245,158,11,0.15); }
.status-pill.radar-danger { background: rgba(239,68,68,0.12); color: #fca5a5; border: 1px solid rgba(239,68,68,0.15); }
.status-pill.radar-analyzing { background: rgba(59,130,246,0.12); color: #60a5fa; border: 1px solid rgba(59,130,246,0.15); }
.status-pill.views-pill { background: rgba(255,255,255,0.05); color: var(--text-muted, #6b7280); border: 1px solid rgba(255,255,255,0.08); }

/* ===== PROMINENT VIEW COUNT BADGE IN CARD HEADER ===== */
.firm-views-badge { display: inline-flex; align-items: center; gap: 4px; background: rgba(6,182,212,0.12); border: 1px solid rgba(6,182,212,0.25); color: #22d3ee; padding: 3px 8px; border-radius: 6px; font-size: 10px; font-weight: 700; letter-spacing: 0.2px; flex-shrink: 0; }
.firm-views-badge i { font-size: 10px; color: #06b6d4; }
.firm-views-badge .views-num { color: #fff; font-weight: 800; }
.new-card.toprated .firm-views-badge { background: rgba(6,182,212,0.12); border-color: rgba(6,182,212,0.25); color: #22d3ee; }
.new-card.toprated .firm-views-badge i { color: #06b6d4; }
.new-card.observation .firm-views-badge { background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.25); color: #fbbf24; }
.new-card.observation .firm-views-badge i { color: #f59e0b; }
.new-card.scam .firm-views-badge { background: rgba(239,68,68,0.12); border-color: rgba(239,68,68,0.25); color: #fca5a5; }
.new-card.scam .firm-views-badge i { color: #ef4444; }

/* ===== PAYMENT METHODS ROW ===== */
.payments-row { margin-bottom: 8px; }
.payments-label { font-size: 9px; color: var(--text-muted, #6b7280); font-weight: 600; margin-bottom: 4px; display: flex; align-items: center; gap: 4px; }
.payments-label i { color: var(--cyan, #06b6d4); font-size: 9px; }
.payment-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.payment-tag { background: rgba(6,182,212,0.08); color: var(--cyan-light, #22d3ee); padding: 2px 7px; border-radius: 4px; font-size: 9px; font-weight: 600; border: 1px solid rgba(6,182,212,0.15); }
/* Payment variant overrides */
.new-card.scam .payment-tag { background: rgba(239,68,68,0.06); color: #fca5a5; border-color: rgba(239,68,68,0.08); }
.new-card.observation .payment-tag { background: rgba(245,158,11,0.08); color: #fbbf24; border-color: rgba(245,158,11,0.15); }
.new-card.observation .payments-label i { color: #f59e0b; }
.new-card.toprated .payment-tag { background: rgba(6,182,212,0.08); color: #22d3ee; border-color: rgba(6,182,212,0.15); }

/* ===== ACCOUNT SIZES BAR ===== */
.sizes-bar { background: linear-gradient(135deg,rgba(6,182,212,0.07),rgba(6,182,212,0.03)); border: 1px solid rgba(6,182,212,0.08); border-radius: 8px; padding: 6px 10px; margin-bottom: 8px; display: flex; align-items: center; justify-content: space-between; }
.sizes-label { font-size: 9px; color: var(--text-muted, #6b7280); font-weight: 600; text-transform: uppercase; letter-spacing: 0.3px; display: flex; align-items: center; gap: 4px; }
.sizes-label i { color: var(--cyan, #06b6d4); }
.sizes-values { display: flex; gap: 3px; align-items: center; flex-wrap: wrap; }
.size-chip { background: rgba(6,182,212,0.12); color: var(--cyan-light, #22d3ee); padding: 2px 6px; border-radius: 4px; font-size: 9px; font-weight: 700; border: 1px solid rgba(6,182,212,0.15); }
.size-chip.more { background: rgba(139,92,246,0.12); color: #a78bfa; border-color: rgba(139,92,246,0.15); }
/* Scam sizes override */
.new-card.scam .sizes-bar { background: linear-gradient(135deg,rgba(239,68,68,0.06),rgba(239,68,68,0.02)); border-color: rgba(239,68,68,0.08); }
.new-card.scam .size-chip { background: rgba(239,68,68,0.1); color: #fca5a5; border-color: rgba(239,68,68,0.12); }

/* ===== VIEWS TAG ===== */
.views-tag { color: var(--text-muted, #6b7280); font-size: 10px; display: flex; align-items: center; gap: 3px; }
.views-tag i { font-size: 9px; }

/* ===== RESPONSIVE — Card-specific ===== */
@media (max-width: 768px) {
    .card-actions { grid-template-columns: 1fr; }
    .action-btn.primary { grid-column: span 1; }
    .key-stats { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: 1fr; gap: 3px; }
    .feature-right { flex-direction: row; text-align: left; }
}
@media (max-width: 480px) {
    .key-stats { grid-template-columns: 1fr 1fr 1fr; }
}
