/* ====
   NOMBRE DEL PERSONAJE
   ==== */
.tibia-prog-character-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 4px;
}

.tibia-prog-character-name {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

/* ====
   CHARM WIDGET
   ==== */
.tibia-charm-wrapper {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tibia-charm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 16px;
}

.tibia-charm-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tibia-charm-icon-wrapper {
    width: 36px;
    height: 36px;
    background: rgba(200, 35, 51, 0.4);
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(200, 35, 51, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tibia-charm-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-bottom: 0px !important;
}

.tibia-charm-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tibia-charm-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.tibia-charm-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
}

.tibia-charm-points-value,
.tibia-charm-completed-value {
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tibia-charm-monsters-label {
    font-size: 11px;
    font-weight: 400;
    color: #888;
    margin-left: 2px;
}

.tibia-charm-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tibia-charm-bar-track {
    flex: 1;
    height: 14px;
    background: #d2d2d7;
    border-radius: 99px;
    overflow: hidden;
}

.tibia-charm-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3143e2b3, #3143e2);
    border-radius: 99px;
    transition: width 0.8s ease;
    min-width: 0;
}

.tibia-charm-percentage {
    font-size: 12px;
    font-weight: 700;
    color: #555;
    min-width: 36px;
    text-align: right;
}

@media (max-width: 480px) {
    .tibia-charm-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tibia-charm-right {
        align-items: flex-start;
    }
}

/* ====
   SOUL CORE WIDGET
   ==== */
.tibia-soul-wrapper {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 16px 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.tibia-soul-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    gap: 16px;
}

.tibia-soul-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tibia-soul-icon-wrapper {
    width: 36px;
    height: 36px;
    background: rgba(49, 67, 226, 0.4);
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(49, 67, 226, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tibia-soul-icon {
    width: 15px;
    height: 15px;
    object-fit: contain;
    margin-bottom: 0px !important;
}

.tibia-soul-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tibia-soul-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.tibia-soul-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
}

.tibia-soul-xp-bonus,
.tibia-soul-cores-value {
    font-size: 15px;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 4px;
}

.tibia-soul-monsters-label {
    font-size: 11px;
    font-weight: 400;
    color: #888;
    margin-left: 2px;
}

.tibia-soul-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tibia-soul-bar-track {
    flex: 1;
    height: 14px;
    background: #d2d2d7;
    border-radius: 99px;
    overflow: hidden;
}

.tibia-soul-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #c8a96e, #aa7430);
    border-radius: 99px;
    transition: width 0.8s ease;
    min-width: 0;
}

.tibia-soul-percentage {
    font-size: 12px;
    font-weight: 700;
    color: #555;
    min-width: 36px;
    text-align: right;
}

@media (max-width: 480px) {
    .tibia-soul-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .tibia-soul-right {
        align-items: flex-start;
    }
}