/* GameMax v2 — Neo-Editorial / Crimson Dossier Theme */

body {
    background-color: #131314;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
}

/* Material icons */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Selection */
::selection {
    background: #d0001d;
    color: #ffdfdc;
}

/* Red gradient — signature CTA */
.red-gradient {
    background: linear-gradient(135deg, #d0001d 0%, #8a1a1b 100%);
}

/* Glassmorphism nav/overlay panels */
.glass-panel {
    background: rgba(53, 52, 54, 0.60);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

/* Subtle ambient red glow (background decoration only) */
.ambient-red {
    background: radial-gradient(circle, rgba(208,0,29,0.08) 0%, transparent 70%);
}

/* Editorial "redacted" number background decoration */
.editorial-number {
    font-family: 'Epilogue', sans-serif;
    font-weight: 900;
    font-size: 20rem;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #ffffff;
    opacity: 0.03;
    pointer-events: none;
    user-select: none;
}

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #0e0e0f; }
::-webkit-scrollbar-thumb { background: #d0001d33; }
::-webkit-scrollbar-thumb:hover { background: #d0001d66; }

/* Game card hover */
.game-card:hover img { transform: scale(1.05); }
.game-card img { transition: transform 0.5s ease; }

/* Match rate progress */
.match-bar {
    background: linear-gradient(90deg, #d0001d, #ffb3ad);
}

/* Chip / tag styling */
.chip {
    background: #8e1c1d;
    color: #ff9e96;
    font-size: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 2px;
}

.chip-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(93, 63, 60, 0.4);
    font-size: 10px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 2px;
}

/* Platform chips */
.chip-switch { background:#8e1c1d; color:#ff9e96; }
.chip-ps5 { background:#1a2a4a; color:#9ecaff; }
.chip-xbox { background:#0a2a0a; color:#86efac; }
.chip-pc { background:#1a1c2e; color:#a5b4fc; }

/* Vibe card selected state */
.vibe-card-selected {
    background: #8e1c1d !important;
    border-bottom: 4px solid #ffb3ad;
}

/* Progress bar segments */
.progress-seg-active { background: #d0001d; }
.progress-seg-inactive { background: #353436; }

/* Score bar */
.score-bar-red { background: linear-gradient(90deg, #d0001d, #ffb3ad); }
.score-bar-blue { background: linear-gradient(90deg, #006ab2, #9ecaff); }

/* Hover underline for editorial links */
.editorial-link {
    color: #ffb3ad;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #ffb3ad;
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}
.editorial-link:hover { color: #d0001d; border-color: #d0001d; }

/* Bottom red glow decoration */
.bottom-glow {
    background: linear-gradient(to top, rgba(208,0,29,0.06), transparent);
}
