
        .hero-gradient {
            background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #bfdbfe 100%);
        }
        
        .primary-gradient {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        }
        
        .glass-morphism {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .hover-lift {
            transition: all 0.3s ease;
        }
        
        .hover-lift:hover {
            transform: translateY(-2px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease-in-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .scroll-smooth {
            scroll-behavior: smooth;
        }
        
        .warning-gradient {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }
        
        .danger-gradient {
            background: linear-gradient(135deg, #ef4444, #dc2626);
        }
        
        .success-gradient {
            background: linear-gradient(135deg, #10b981, #059669);
        }
        
        /* Стили для кнопок */
        .btn-primary {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            transition: all 0.2s ease;
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            transform: translateY(-1px);
        }
        
        /* Стили для таблиц */
        .table-rounded {
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        
        /* Адаптивность для мобильных */
/* Адаптивность для мобильных устройств */
@media (max-width: 640px) {
    #current-level {
        font-size: 3rem !important;
    }
    
    .grid.grid-cols-1.md\\:grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    #time-to-sober {
        font-size: 1.25rem;
    }
}

/* Плавные переходы цветов */
#current-level {
    transition: color 0.3s ease-in-out;
}

/* Дополнительные цветовые классы */
.text-success-500 { color: rgb(34 197 94); }
.text-success-600 { color: rgb(22 163 74); }
.text-success-800 { color: rgb(22 101 52); }
.bg-success-50 { background-color: rgb(240 253 244); }
.border-success-200 { border-color: rgb(187 247 208); }
.border-success-300 { border-color: rgb(134 239 172); }

.text-danger-500 { color: rgb(239 68 68); }
.text-danger-600 { color: rgb(220 38 38); }
.text-danger-800 { color: rgb(153 27 27); }
.bg-danger-50 { background-color: rgb(254 242 242); }
.border-danger-200 { border-color: rgb(254 202 202); }
.border-danger-300 { border-color: rgb(252 165 165); }

    