Я заменю ваш CSS на новый стиль, который будет идеально сочетаться с обновленным дизайном!
Я обновлю ваш CSS файл, чтобы он идеально работал с новым дизайном welcome страницы!
Замените весь ваш текущий CSS на этот обновленный код:
/* Импорт шрифта */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Общий фон */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    color: #1f2937;
}

/* Градиентный фон для секций */
.gradient-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Тени для карточек */
.card-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.premium-shadow {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Кастомные кнопки */
.btn-primary-custom {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    transition: all 0.3s ease;
    color: white;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-1px);
    color: white;
}

.btn-secondary-custom {
    background: white;
    border: 2px solid #e5e7eb;
    color: #374151;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-1px);
}

/* Карточки функций */
.feature-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 1rem;
    background: white;
}

.feature-card:hover {
    transform: translateY(-4px);
}

/* Анимация плавания */
.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Градиентный текст */
.gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 50%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Выделение команд */
.command-highlight {
    background: linear-gradient(135deg, #dbeafe 0%, #d1fae5 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    border-radius: 1rem;
}

.command-highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    border-radius: inherit;
    z-index: -1;
}

/* Анимация печатающего текста */
.typing-animation {
    animation: typing 6s steps(40, end) infinite;
}

@keyframes typing {
    0% { width: 0; }
    30% { width: 100%; }
    70% { width: 100%; }
    100% { width: 0; }
}

/* Иконки с градиентом */
.icon-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    border-radius: 0.75rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Стеклянные карточки (обновленные) */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Подсказки */
.guide-card ul {
    padding-left: 1.25rem;
}

.guide-card li {
    margin-bottom: 0.5rem;
}

/* Алерты */
.alert {
    font-size: 1rem;
    border-radius: 12px;
    border: none;
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
}

.alert-info {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
}

.alert-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

.alert-danger {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: #1f2937;
}

/* Ссылки */
a {
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #1d4ed8;
    text-decoration: none;
}

/* Спиннер (обновленный) */
.spinner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    color: #6b7280;
    font-weight: 500;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 50px solid #10b981;
    animation: spin 1.2s linear infinite;
    margin-bottom: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Адаптивность */
@media (max-width: 768px) {
    .feature-card {
        font-size: 0.95rem;
        padding: 1rem;
    }
    
    .gradient-text {
        font-size: 2.5rem;
    }
    
    .command-highlight {
        padding: 1.5rem;
    }
    
    .icon-gradient {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }
}

/* Дополнительные утилиты */
.text-gradient-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
