/* security.css - Дополнительные стили для страницы безопасности */

/* Основные структурные стили */
.security-guide .hero-section {
    background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.security-guide .hero-section h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.security-guide .hero-section .subtitle {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Стили для статей */
.guide-article {
    background: #1e1e2f;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.guide-article h2 {
    color: #4ecdc4;
    font-size: 2rem;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #2a3a4a;
}

.security-step {
    margin-bottom: 35px;
}

.security-step h3 {
    color: #f8f9fa;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.security-step p, 
.security-step ol, 
.security-step ul {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 15px;
}

.security-step ol, 
.security-step ul {
    padding-left: 25px;
}

.security-step li {
    margin-bottom: 8px;
}

/* Специальные блоки */
.warning-box {
    background: rgba(231, 76, 60, 0.15);
    border-left: 4px solid #e74c3c;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

.info-box {
    background: rgba(52, 152, 219, 0.15);
    border-left: 4px solid #3498db;
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
}

/* Таблица криптовалют */
.crypto-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #252540;
}

.crypto-table th {
    background: #2c3e50;
    color: #fff;
    padding: 12px;
    text-align: left;
}

.crypto-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #3a3a5a;
    color: #d1d5db;
}

.crypto-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

.crypto-table tr:hover {
    background: rgba(78, 205, 196, 0.1);
}

/* Чек-лист */
.security-checklist {
    background: #252540;
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.security-checklist h2 {
    color: #4ecdc4;
    margin-bottom: 25px;
    text-align: center;
}

.checklist-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.checklist-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #1e1e2f;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checklist-item:hover {
    background: #2a2a3f;
}

.checklist-item input[type="checkbox"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    accent-color: #4ecdc4;
}

.checklist-item label {
    color: #f8f9fa;
    cursor: pointer;
}

/* Ресурсы */
.resources-section {
    padding: 60px 0;
}

.resources-section h2 {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.resource-card {
    background: #252540;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    color: #fff;
    text-decoration: none;
    border: 1px solid #3a3a5a;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: #4ecdc4;
}

.resource-card h3 {
    color: #4ecdc4;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.resource-card p {
    color: #d1d5db;
    opacity: 0.8;
}

/* Адаптивность */
@media (max-width: 768px) {
    .security-guide .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .security-guide .hero-section .subtitle {
        font-size: 1.1rem;
    }
    
    .guide-article {
        padding: 20px;
    }
    
    .checklist-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .security-guide .hero-section {
        padding: 60px 0;
    }
    
    .security-guide .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .crypto-table {
        display: block;
        overflow-x: auto;
    }
}