/* Фон всего контейнера */
.ed-root, .ed-root body, .ed-root .ed-content {
    background: linear-gradient(135deg, #ffb300, #ff6f00) !important;
    color: white !important;
    font-family: "Segoe UI", Arial, sans-serif !important;
}

/* Карточки доната */
.ed-root .ed-item {
    background: rgba(0,0,0,0.65) !important;
    border-radius: 12px !important;
    padding: 20px !important;
    box-shadow: 0 6px 15px rgba(0,0,0,0.4) !important;
    transition: 0.3s !important;
}

.ed-root .ed-item:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6) !important;
}

/* Кнопки покупки */
.ed-root .ed-btn, .ed-root .ed-btn-primary {
    background: linear-gradient(45deg, #ff9800, #ff5722) !important;
    border-radius: 8px !important;
    color: white !important;
    font-weight: bold !important;
    transition: 0.3s !important;
}

.ed-root .ed-btn:hover, .ed-root .ed-btn-primary:hover {
    background: linear-gradient(45deg, #ffc107, #ff7043) !important;
    transform: scale(1.05) !important;
}

/* Заголовки привилегий */
.ed-root .ed-title {
    color: #ffd54f !important;
    font-weight: bold !important;
    font-size: 20px !important;
}