/* Importation de la police Inter depuis Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

body {
    margin: 0;
    padding: 0;
    background: transparent !important;
    /* Requis pour OBS */
    font-family: 'Inter', sans-serif;
    /* Application de la police Inter */
    color: #ffffff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
}

.widget-container {
    /* Fond semi-transparent ajusté pour bloquer la lumière blanche du jeu */
    background: rgba(10, 10, 10, 0.65);
    /* Flou de l'arrière-plan renforcé (Glassmorphic) */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 2px solid rgba(255, 51, 51, 0.6);
    border-radius: 12px;
    padding: 20px;
    width: 330px;
    /* Ombre portée noire sous le widget pour le décoller de l'écran */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 15px rgba(255, 51, 51, 0.2);
    text-transform: uppercase;
    box-sizing: border-box;
}

.header {
    text-align: center;
    font-size: 15px;
    color: #ff4444;
    font-weight: 900;
    /* Très gras pour le titre */
    border-bottom: 2px solid rgba(255, 51, 51, 0.3);
    padding-bottom: 8px;
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 0px #000000;
}

/* Aligne l'icône Faceit et le pseudo */
.player-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

.player-header img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: drop-shadow(0px 2px 4px #000000);
}

.player-name {
    font-size: 24px;
    font-weight: 900;
    /* Style d'écriture très épais et moderne */
    color: #ffffff;
    letter-spacing: 0.5px;
    text-shadow: 2px 2px 0px #000000, -1px -1px 0px #000000, 1px -1px 0px #000000, -1px 1px 0px #000000;
}

.stat-line {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
    font-size: 13px;
    font-weight: 700;
    /* Écriture semi-grasse pour les lignes */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 6px;
}

.stat-label {
    color: #e0e0e0;
    text-shadow: 1px 1px 2px #000000;
}

.stat-value {
    color: #ffffff;
    font-weight: 900;
    text-shadow: 1px 1px 2px #000000, 0px 0px 4px #000000;
}

/* Style rouge ultra-lisible pour les mauvaises stats */
.stat-value.bad {
    color: #ff3333;
    text-shadow: 1px 1px 0px #000000, 0px 0px 6px rgba(255, 0, 0, 0.6);
}

.badge-verdict {
    background: #ffcc00;
    color: #000000;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
    padding: 8px;
    margin-top: 18px;
    border-radius: 6px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
