/* --- FUNTIME STYLE: FIX (БЕЗОПАСНЫЙ) --- */

.ft-card {
    /* Основные стили */
    background-color: #1e1e1e !important;
    border: 1px solid rgba(255, 59, 92, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    margin-bottom: 20px; /* Важный отступ снизу, чтобы не наезжать на кнопку */
    
    /* Текст */
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: #ffffff !important;
    text-align: left;
    
    /* Геометрия */
    width: 100% !important;
    height: auto !important; /* Чтобы блок растягивался по содержимому */
    box-sizing: border-box;
    display: block !important;
    position: relative; /* Чтобы не улетал в слоях */
    z-index: 1; /* Чтобы не перекрывал интерфейс магазина */
    clear: both; /* Очистка потока */
}

/* Красные заголовки */
.ft-head {
    display: block;
    font-weight: 800;
    color: #ff3b5c !important;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 5px;
    border-bottom: 1px solid rgba(255, 59, 92, 0.1);
    padding-bottom: 5px;
}
.ft-head.mt { margin-top: 20px; }

/* Строки */
.ft-row {
    display: block !important;
    margin-bottom: 5px;
    color: #ffffff !important;
}

/* Элементы */
.ft-icon { color: #ff3b5c !important; margin-right: 5px; font-weight: bold; }
.ft-arr { color: #888888 !important; margin-right: 5px; font-weight: bold; }
.ft-sep { color: #888888 !important; margin: 0 5px; }
.ft-cmd { color: #ff3b5c !important; font-weight: 700; }
.ft-val { color: #ff3b5c !important; font-weight: 700; }

/* Защита ссылок и картинок */
.ft-card a { color: #ffffff !important; text-decoration: none; pointer-events: auto; }
.ft-card img { max-width: 100%; height: auto; }