/* Реалистичная кнопка с градиентом */
.t396__elem .realistic-btn,
.tn-elem .realistic-btn {
    background: linear-gradient(145deg, #ff9d1a, #f48900, #e67c00, #d96f00) !important;
    border: 1px solid #d96f00 !important;
    border-radius: 8px !important;
    box-shadow: 
        0 6px 12px rgba(244, 137, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
}

/* Для текста кнопки */
.t396__elem .realistic-btn .tn-atom,
.tn-elem .realistic-btn .tn-atom {
    color: white !important;
    font-weight: 600 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* Эффект наведения */
.t396__elem .realistic-btn:hover,
.tn-elem .realistic-btn:hover {
    background: linear-gradient(145deg, #ffaa2e, #ff9500, #f48900, #e67c00) !important;
    box-shadow: 
        0 8px 16px rgba(244, 137, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-2px) !important;
}

/* Эффект нажатия */
.t396__elem .realistic-btn:active,
.tn-elem .realistic-btn:active {
    background: linear-gradient(145deg, #e67c00, #f48900, #ff9500) !important;
    box-shadow: 
        0 3px 6px rgba(244, 137, 0, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(1px) !important;
}