.revive-point-container {
    max-width: 600px;
    margin: 0 auto;
}

.blessing-message {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-style: italic;
    text-align: center;
    color: #c26333;
}

.player-status {
    margin-bottom: 20px;
}

.status-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.status-bar-container {
    display: flex;
    align-items: center;
}

.status-label {
    width: 80px;
    font-weight: bold;
}

.revive-actions {
    text-align: center;
    margin: 2px 0;
}

.revive-message {
    text-align: center;
    margin: 2px 0;
    color: #6c8095;
}

.building-footer {
    margin-top: 20px;
    text-align: center;
}

@keyframes heal-pulse {
    0% { box-shadow: 0 0 5px #28a745; }
    50% { box-shadow: 0 0 15px #28a745; }
    100% { box-shadow: 0 0 5px #28a745; }
}

@keyframes mana-pulse {
    0% { box-shadow: 0 0 5px #007bff; }
    50% { box-shadow: 0 0 15px #007bff; }
    100% { box-shadow: 0 0 5px #007bff; }
}

.healing {
    animation: heal-pulse 2s infinite;
}

.mana-restoring {
    animation: mana-pulse 2s infinite;
}