/* BURNOUT DEFENDER - Phase 2 Placeholder CSS */

[data-game-phase="burnout-defender"] {
    background: #2a2a2a;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.therapy-console {
    background: rgba(255, 182, 193, 0.1);
    border: 2px solid #ff6b9d;
    padding: 15px;
    margin: 20px;
    border-radius: 8px;
    max-height: 150px;
    overflow-y: auto;
}

.therapy-header {
    font-weight: bold;
    margin-bottom: 10px;
    color: #ff6b9d;
}

#therapy-output {
    font-size: 14px;
    line-height: 1.5;
}

.life-stats {
    display: flex;
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

.life-stat {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
}

.life-stat span:first-child {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.life-stat span:last-child {
    font-size: 24px;
    font-weight: bold;
}

#bd-towers {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px;
}

#bd-towers .tower-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}

#bd-towers .tower-option:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}