/* Gamdom Login NZ - Review components, breadcrumbs & live stats
   Loaded after style.css; inherits the existing CSS variables. */

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
    background: var(--darker-bg);
    border-bottom: 1px solid var(--border-color);
}
.breadcrumbs .container,
.breadcrumbs .breadcrumbs-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.85rem 1.25rem;
}
.breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    margin: 0;
    padding: 0;
    font-size: 0.85rem;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 0.4rem; }
.breadcrumb-list a { color: var(--text-muted); text-decoration: none; transition: color .2s; }
.breadcrumb-list a:hover { color: var(--secondary-color); }
.breadcrumb-list .sep { color: var(--border-color); }
.breadcrumb-list .current { color: var(--text-secondary); font-weight: 600; }

/* ---------- Live stats / rating widget ---------- */
.live-stats {
    max-width: 1100px;
    margin: 2.5rem auto;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: linear-gradient(135deg, var(--card-bg), var(--dark-bg));
    border: 1px solid var(--border-color);
    border-radius: 1rem;
}
.stat-card {
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.1rem 1rem;
    text-align: center;
}
.stat-card .stat-value {
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}
.stat-card .stat-value.green { color: var(--secondary-color); }
.stat-card .stat-value.gold { color: var(--accent-color); }
.stat-card .stat-label {
    margin-top: 0.35rem;
    font-size: 0.78rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.stat-stars { color: var(--accent-color); font-size: 1.15rem; letter-spacing: 2px; }
.stat-stars .empty { color: var(--border-color); }
.stat-live {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.72rem; color: var(--secondary-color); margin-top: .25rem;
}
.stat-live .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--secondary-color);
    box-shadow: 0 0 0 0 rgba(16,185,129,.7);
    animation: pulse 1.8s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16,185,129,.6); }
    70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.stats-verified {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ---------- Quick verdict / pros-cons ---------- */
.verdict-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: start;
}
.verdict-score {
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}
.verdict-score .big {
    font-size: 3rem; font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.proscons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.proscons .col {
    background: var(--darker-bg);
    border: 1px solid var(--border-color);
    border-radius: 0.85rem;
    padding: 1.1rem 1.2rem;
}
.proscons h3 { margin: 0 0 0.6rem; font-size: 1rem; }
.proscons ul { list-style: none; margin: 0; padding: 0; }
.proscons li { position: relative; padding-left: 1.6rem; margin-bottom: 0.55rem; font-size: 0.92rem; color: var(--text-secondary); line-height: 1.45; }
.proscons .pros li::before { content: "✓"; position: absolute; left: 0; color: var(--secondary-color); font-weight: 800; }
.proscons .cons li::before { content: "✕"; position: absolute; left: 0; color: var(--error); font-weight: 800; }

/* ---------- Data tables ---------- */
.data-table-wrap { overflow-x: auto; margin: 1.25rem 0; border-radius: 0.85rem; border: 1px solid var(--border-color); }
table.data-table { width: 100%; border-collapse: collapse; min-width: 520px; font-size: 0.92rem; }
table.data-table caption { caption-side: top; text-align: left; padding: 0.75rem 1rem; color: var(--text-muted); font-size: 0.82rem; }
table.data-table th, table.data-table td { padding: 0.8rem 1rem; text-align: left; border-bottom: 1px solid var(--border-color); }
table.data-table thead th { background: var(--darker-bg); color: var(--text-primary); font-weight: 700; }
table.data-table tbody tr:nth-child(even) { background: rgba(148,163,184,0.04); }
table.data-table tbody tr:hover { background: rgba(124,58,237,0.08); }
table.data-table td .tag { display: inline-block; padding: 0.15rem 0.5rem; border-radius: 999px; font-size: 0.72rem; font-weight: 700; }
.tag.fast { background: rgba(16,185,129,.15); color: var(--secondary-color); }
.tag.med { background: rgba(245,158,11,.15); color: var(--accent-color); }

/* ---------- Figures / generated images ---------- */
figure.media { margin: 1.5rem 0; text-align: center; }
figure.media img { width: 100%; max-width: 880px; height: auto; border-radius: 0.85rem; }
figure.media figcaption { margin-top: 0.5rem; font-size: 0.8rem; color: var(--text-muted); }

/* ---------- VIP tiers ---------- */
.vip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 0.85rem; margin: 1.25rem 0; }
.vip-tier { background: var(--darker-bg); border: 1px solid var(--border-color); border-radius: 0.75rem; padding: 1rem; text-align: center; }
.vip-tier .tier-name { font-weight: 800; color: var(--text-primary); }
.vip-tier .tier-perk { font-size: 0.82rem; color: var(--text-muted); margin-top: 0.35rem; }
.vip-tier.bronze { border-top: 3px solid #cd7f32; }
.vip-tier.silver { border-top: 3px solid #c0c0c0; }
.vip-tier.gold { border-top: 3px solid #f59e0b; }
.vip-tier.diamond { border-top: 3px solid #60a5fa; }

@media (max-width: 768px) {
    .live-stats { grid-template-columns: repeat(2, 1fr); }
    .verdict-grid { grid-template-columns: 1fr; }
    .proscons { grid-template-columns: 1fr; }
}
