.agreement-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.agreement-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #4a6fa5;
}

.agreement-header h1 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
}

.agreement-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    font-size: 16px;
    color: #555;
}

.meta-item {
    padding: 5px 15px;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.agreement-content {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.agreement-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eaeaea;
}

.agreement-section:last-child {
    border-bottom: none;
}

.agreement-section h2 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #4a6fa5;
    font-weight: 600;
}

.agreement-section h3 {
    color: #34495e;
    font-size: 20px;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.agreement-section h4 {
    color: #2c3e50;
    font-size: 18px;
    margin: 20px 0 10px 0;
    font-weight: 500;
}

.agreement-section p {
    margin: 10px 0;
    font-size: 16px;
    color: #444;
}

.agreement-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.agreement-section li {
    margin: 8px 0;
    font-size: 16px;
    color: #444;
    line-height: 1.5;
}

.rules-category {
    margin: 25px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #4a6fa5;
}

.violation-type {
    margin: 20px 0;
    padding: 15px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #e9ecef;
}

.warning-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    padding: 12px 15px;
    border-radius: 4px;
    margin: 15px 0;
    font-weight: 500;
    color: #856404;
}

.important-note {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
}

.important-note h3 {
    color: #155724;
    margin-top: 0;
}

.important-note p {
    color: #155724;
    font-size: 16px;
    margin: 10px 0 0 0;
}

.related-info-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
    text-align: center;
    color: #2c3e50;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid #4a6fa5;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.links-category {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.category-title {
    color: #34495e;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: #2c3e50;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    min-height: 60px;
}

.link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #3498db;
    background: #f8f9fa;
}

.link-card:active {
    transform: translateY(-1px);
}

.link-icon {
    font-size: 24px;
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

.link-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

/* Специальные стили для социальных сетей */
.social-vk:hover {
    background: #4a76a8;
    color: white;
    border-color: #4a76a8;
}

.social-tg:hover {
    background: #0088cc;
    color: white;
    border-color: #0088cc;
}

.social-discord:hover {
    background: #7289da;
    color: white;
    border-color: #7289da;
}

.social-yt:hover {
    background: #ff0000;
    color: white;
    border-color: #ff0000;
}

/* Адаптивность */
@media (max-width: 768px) {
    .agreement-container {
        padding: 10px;
    }
    
    .agreement-header h1 {
        font-size: 24px;
    }
    
    .agreement-meta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .agreement-content {
        padding: 20px;
    }
    
    .agreement-section h2 {
        font-size: 20px;
    }
    
    .agreement-section h3 {
        font-size: 18px;
    }
    
    .agreement-section h4 {
        font-size: 16px;
    }
    
    .agreement-section p,
    .agreement-section li {
        font-size: 15px;
    }
	
	    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .links-category {
        padding: 20px;
    }
    
    .category-title {
        font-size: 20px;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .link-card {
        padding: 12px;
    }
    
    .link-icon {
        font-size: 20px;
        margin-right: 12px;
    }
    
    .link-text {
        font-size: 15px;
    }
}
@media (max-width: 480px) {
    .related-info-section {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .links-category {
        padding: 15px;
    }
    
    .category-title {
        font-size: 18px;
    }
}