﻿/* === BASE === */
body {
    background-color: #0d0d0d;
    color: #e2d3a2;
    font-family: 'Cinzel', serif;
}

h2, h3 {
    color: #e2d3a2;
}

/* === SUMMARY CARDS === */
.steam-stats-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.stats-card {
    background: #1a1a1a;
    border: 1px solid #3e3e3e;
    padding: 1rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

.stats-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* === GRAPH AREA === */
canvas {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 1rem;
}

/* === GRAPH FILTER BUTTONS === */
.graph-filters {
    text-align: center;
    margin: 1.5rem 0;
}

.graph-filters button {
    background-color: #2c2c2c;
    border: 1px solid #3e3e3e;
    color: #e2d3a2;
    padding: 0.4rem 0.8rem;
    margin: 0.2rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.graph-filters button:hover {
    background-color: #444;
    border-color: #777;
}

/* === PLAYER INSIGHTS === */
.player-insights ul {
    list-style: none;
    padding-left: 0;
}

.player-insights li {
    margin-bottom: 0.4rem;
}

.note {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 0.5rem;
}

/* === EVENT SECTION === */
.event-section {
    margin: 2rem 0;
    background: #1a1a1a;
    padding: 1rem;
    border-left: 4px solid #00ffff;
    border-radius: 8px;
}

/* === CONVERSION LINKS === */
.conversion-links {
    margin-top: 2rem;
    text-align: center;
}

    .conversion-links .btn-steam,
    .conversion-links .btn-discord {
        display: inline-block;
        margin: 0.5rem;
        padding: 0.4rem 0.9rem;
        color: #e2d3a2;
        background-color: transparent;
        border: 1px solid #e2d3a2;
        font-family: 'Cinzel', serif;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.2s ease-in-out;
    }

        .conversion-links .btn-steam:hover,
        .conversion-links .btn-discord:hover {
            background-color: #e2d3a2;
            color: #0d0d0d;
            box-shadow: 0 0 10px rgba(226, 211, 162, 0.4);
            transform: scale(1.05);
        }

