body {
    background-color: #0f0f23;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
}
.game-container {
    background-color: #1a1a2e;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 0 50px rgba(0, 255, 255, 0.801);
}
.status-panel {
    background-color: #16213e;
    border-left: 3px solid #4cc9f0;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}
/*  */
.btn-option {
    margin: 8px;
    transition: all 0.3s;
    background-color: #4cc9f0;
    color: #1a1a2e;
    border: none;
    font-weight: bold;
}

.grow-anim {
    animation: growIn 2s ease;
}

.m-2{
    box-shadow: 0 0 15px rgba(21, 109, 209, 0.945);
}

.btn-option:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(76, 201, 240, 0.7);
}
.narrative-box {
    background-color: #16213e;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    min-height: 120px;
    border-left: 3px solid #f72585;
    box-shadow: 0 0 35px rgba(253, 2, 148, 0.966);
}
.fade-in {
    animation: fadeIn 0.8s ease-in;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.blink {
    animation: blink 1s step-start infinite;
}
@keyframes blink {
    50% { opacity: 0.5; }
}

.color-btn {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    opacity: 0.6;
}
.color-btn.active {
    opacity: 1;
    box-shadow: 0 0 10px white;
}

@keyframes growIn{
    from {
        transform: scale(0.3);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}