/* static/css/info.css */
/* Страница информации о системе */

.info-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.info-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 48px 40px;
    max-width: 50vw;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Иконка */
.info-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), #ede9fe);
    border-radius: 50%;
    color: var(--primary-color);
}

/* Заголовок */
.info-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

/* Контент */
.info-content {
    margin-bottom: 32px;
}

.info-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    text-align: left;
    text-indent: 20px;
}

/* Детали */
.info-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: 8px;
    font-size: 14px;
}

.info-label {
    color: var(--text-muted);
    font-weight: 500;
}

.info-value {
    color: var(--text-primary);
    font-weight: 600;
}

.status-active {
    color: var(--success-color);
    background: #ecfdf5;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* Кнопка назад */
.info-back-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.info-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.1);
}

.info-back-btn svg {
    stroke: currentColor;
    transition: transform 0.2s;
}

.info-back-btn:hover svg {
    transform: translateX(-4px);
}

/* Футер */
.info-footer {
    margin-top: 32px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

/* Адаптивность */
@media (max-width: 480px) {
    .info-card {
        padding: 36px 24px;
    }
    
    .info-title {
        font-size: 22px;
    }
    
    .info-icon {
        width: 80px;
        height: 80px;
    }
    
    .info-icon svg {
        width: 48px;
        height: 48px;
    }
}

/* Темная тема */
@media (prefers-color-scheme: dark) {
    .info-container {
        background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    }
    
    .info-card {
        background: rgba(31, 41, 55, 0.98);
    }
    
    .info-title {
        color: #f9fafb;
    }
    
    .info-icon {
        background: rgba(37, 99, 235, 0.2);
    }
    
    .info-text {
        background: rgba(55, 65, 81, 0.5);
    }
    
    .info-item {
        background: rgba(55, 65, 81, 0.5);
    }
}
