/* Стили для платформ установки */
.installation-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.platform-card {
    background: rgba(45, 27, 78, 0.6);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(196, 122, 255, 0.2);
    transition: all 0.3s ease;
}

.platform-card:hover {
    background: rgba(156, 89, 209, 0.3);
    transform: translateY(-5px);
    border-color: rgba(228, 180, 225, 0.4);
}

.platform-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.platform-content h4 {
    color: #e8b4e1;
    margin: 0 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
}

.installation-steps {
    color: #f8f0ff;
    padding-left: 1.2rem;
}

.installation-steps li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.installation-steps strong {
    color: #e8b4e1;
}

/* Стили для предупреждения */
.warning-card {
    border-color: rgba(247, 220, 111, 0.5) !important;
    background: rgba(247, 220, 111, 0.1) !important;
}

.warning-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.warning-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.warning-text {
    flex: 1;
}

.warning-text p {
    color: #f8f0ff;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.warning-link {
    color: #f7dc6f;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px dotted #f7dc6f;
}

.warning-link:hover {
    color: #f8c471;
    border-bottom: 1px solid #f8c471;
}

/* Стили для использования */
.usage-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.usage-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(45, 27, 78, 0.6);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(196, 122, 255, 0.2);
}

.usage-step .step-number {
    background: linear-gradient(45deg, #e8b4e1, #c47aff);
    color: #5a3a7a;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.usage-step .step-content p {
    color: #f8f0ff;
    margin: 0;
    line-height: 1.6;
}

/* Стили для интерфейса */
.interface-description {
    color: #f8f0ff;
}

.interface-list {
    padding-left: 1.2rem;
    margin-top: 1rem;
}

.interface-list li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.interface-list strong {
    color: #e8b4e1;
}

/* Адаптивность */
@media (max-width: 768px) {
    .installation-platforms {
        grid-template-columns: 1fr;
    }
    
    .platform-card {
        padding: 1.5rem;
    }
    
    .warning-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .usage-step {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .usage-step .step-number {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .platform-card {
        padding: 1.2rem;
    }
    
    .platform-icon {
        font-size: 2.5rem;
    }
    
    .warning-icon {
        font-size: 2rem;
    }
    
    .installation-steps {
        padding-left: 1rem;
    }
    
    .interface-list {
        padding-left: 1rem;
    }
}