/* ============================================================
   Argus band — a rounded floating card in the same visual
   language as the home hero (its gradient) and the games promo
   banner below it (radius 20px, max-width 1400px, soft shadow).
   Signature: a faint "watching eye" — concentric radar rings +
   orange glow in the top-right corner, echoing the hero's
   low-alpha orange shapes.
   Severity badge colors follow the site-wide severity-* classes
   (TcChangePublicItemViewModel.SeverityClass), scoped to the band.
   ============================================================ */

.argus-band {
    position: relative;
    max-width: 1400px;
    margin: 0 12px 60px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1f36 0%, #281e32 50%, #2d1b3e 100%);
    color: #f4f5f8;
    padding: 52px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1424px) {
    .argus-band {
        margin: 0 auto 60px;
    }
}

/* The watching eye: soft glow + radar rings, content stays above it */
.argus-band::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 88% 12%, rgba(255, 107, 53, 0.14) 0%, transparent 26%),
        repeating-radial-gradient(circle at 88% 12%, transparent 0 44px, rgba(255, 107, 53, 0.05) 44px 46px, transparent 46px 90px);
}

.argus-band > .container {
    position: relative;
}

/* ---------- Pitch column ---------- */

.argus-band-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ff8a5c;
    margin-bottom: 10px;
}

.argus-band-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 12px;
}

.argus-band-sub {
    font-size: 1rem;
    line-height: 1.55;
    color: #b8bfd0;
    margin-bottom: 18px;
    max-width: 40ch;
}

.argus-band-stats {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    font-size: 0.92rem;
    color: #b8bfd0;
}

.argus-band-stat strong {
    color: #ffffff;
    font-size: 1.05rem;
}

.argus-band-stat-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.2);
}

.argus-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.argus-band-btn-primary,
.argus-band-btn-secondary {
    display: inline-block;
    padding: 11px 22px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.argus-band-btn-primary {
    background: #fe5001;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(254, 80, 1, 0.35);
}

.argus-band-btn-primary:hover {
    background: #ff6b35;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(254, 80, 1, 0.45);
}

.argus-band-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #f4f5f8;
}

.argus-band-btn-secondary:hover {
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Quiet complaints entry point — a doorway, not a showcase, while complaint volume is low */
.argus-band-complaint-cta {
    margin: 16px 0 0;
    font-size: 0.85rem;
    color: #7c869e;
}

.argus-band-complaint-cta a {
    color: #b8bfd0;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.15s ease;
}

.argus-band-complaint-cta a:hover {
    color: #ff8a5c;
}

/* ---------- Feed column ---------- */

.argus-feed-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7c869e;
    margin-bottom: 10px;
}

/* Live pulse — same motif as the listing page's monitoring dot */
.argus-live-dot {
    width: 8px;
    height: 8px;
    flex-shrink: 0; /* a squeezed flex row must not press the circle into an ellipse */
    border-radius: 50%;
    background: #1ca57a;
    box-shadow: 0 0 0 0 rgba(28, 165, 122, 0.55);
    animation: argus-live-pulse 2.2s ease-out infinite;
}

@keyframes argus-live-pulse {
    0% { box-shadow: 0 0 0 0 rgba(28, 165, 122, 0.55); }
    70% { box-shadow: 0 0 0 7px rgba(28, 165, 122, 0); }
    100% { box-shadow: 0 0 0 0 rgba(28, 165, 122, 0); }
}

@media (prefers-reduced-motion: reduce) {
    .argus-live-dot {
        animation: none;
    }

    .argus-band-btn-primary:hover,
    .argus-band-btn-secondary:hover {
        transform: none;
    }
}

.argus-feed-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.argus-feed-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.argus-feed-row:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 138, 92, 0.4);
}

.argus-sev-badge {
    flex-shrink: 0;
    min-width: 44px;
    text-align: center;
    padding: 5px 8px;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 800;
    color: #ffffff;
}

.argus-band .severity-very-negative { background: #c2283a; }

.argus-band .severity-negative { background: #d94a2b; }

.argus-band .severity-slightly-negative { background: #d9760a; }

.argus-band .severity-neutral { background: #5a6478; }

.argus-band .severity-slightly-positive,
.argus-band .severity-positive,
.argus-band .severity-very-positive { background: #1ca57a; }

.argus-feed-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex-grow: 1;
}

.argus-feed-casino {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #9aa3b8;
}

.argus-feed-summary {
    font-size: 0.95rem;
    color: #eef0f5;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.argus-feed-when {
    flex-shrink: 0;
    font-size: 0.82rem;
    color: #7c869e;
    white-space: nowrap;
}

/* ---------- Player-friendly spotlight ---------- */

.argus-feed-spotlight {
    position: relative;
    margin-top: 14px;
    background: rgba(28, 165, 122, 0.12);
    border-color: rgba(28, 165, 122, 0.45);
}

.argus-feed-spotlight:hover {
    background: rgba(28, 165, 122, 0.2);
    border-color: rgba(28, 165, 122, 0.7);
}

.argus-spotlight-label {
    position: absolute;
    top: -9px;
    left: 14px;
    padding: 2px 9px;
    border-radius: 20px;
    background: #1ca57a;
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ---------- Mobile ---------- */

@media (max-width: 991px) {
    .argus-band {
        padding: 36px 8px;
    }

    .argus-band-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 575px) {
    .argus-feed-when {
        display: none;
    }
}
