:root {
    /* Identidade v2 - Pink Instagram */
    --cifrix-black: #050505;   /* Preto profundo do template */
    --cifrix-pink: #ff00ff;    /* Rosa Vibrante */
    --cifrix-orange: #ff6600;  /* Destaques de Live */
    --cifrix-green: #39ff14;   /* Sucesso / Nível Ouro */
    --cifrix-red: #ff0000;     /* Alertas / Strikes */
    --cifrix-gray: #171717;    /* Cinza escuro do template */
    --cifrix-border: #262626;  /* Cor da borda sutil */
    
    /* Tipografia */
    --cifrix-font: 'Inter', sans-serif;
}

/* Container Principal Arredondado */
.cifrix-wrapper {
    background-color: var(--cifrix-black);
    color: #ffffff;
    font-family: var(--cifrix-font);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid var(--cifrix-border);
}

/* Bloco Top 5 Cifras (Estilo Moderno) */
.top-hits-container {
    background: var(--cifrix-gray);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid var(--cifrix-pink);
}

/* Badge de Posição (Totalmente Arredondado) */
.cifrix-badge-pos {
    background: var(--cifrix-pink);
    color: #ffffff;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
}

/* Lista de Perfis (Estilo Stories) */
.active-profiles-list {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

/* Itens da Lista de Cifras */
.cifrix-rank-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--cifrix-border);
    padding: 12px 0;
}

/* --- ANIMAÇÕES DE STATUS --- */

/* Pulso Online (Verde) */
.cifrix-pulse-online {
    border-radius: 50%;
    border: 2px solid var(--cifrix-green);
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    animation: cifrix-pulse-green 2s infinite;
}

@keyframes cifrix-pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(57, 255, 20, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(57, 255, 20, 0); }
}

/* Pulso Live (Laranja) */
.cifrix-pulse-live {
    border-radius: 50%;
    border: 2px solid var(--cifrix-orange);
    animation: cifrix-pulse-orange 1.5s infinite;
}

@keyframes cifrix-pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255, 102, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 102, 0, 0); }
}