/* pages.css - стили для статических страниц */

.page-content {
    padding: 90px 0;
    min-height: 60vh;
}

.page-title {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--neon-blue);
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-magenta));
}

.page-text {
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

.page-text h2 {
    color: var(--neon-blue);
    margin: 30px 0 15px;
    font-size: 28px;
}

.page-text h3 {
    color: var(--neon-green);
    margin: 25px 0 10px;
    font-size: 22px;
}

.page-text p {
    margin-bottom: 20px;
}

.page-text ul, .page-text ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-text li {
    margin-bottom: 10px;
}

.page-text a {
    color: var(--neon-blue);
    text-decoration: none;
    border-bottom: 1px dashed var(--neon-blue);
}

.page-text a:hover {
    color: var(--neon-green);
    border-bottom-color: var(--neon-green);
}

.page-text blockquote {
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--neon-magenta);
    font-style: italic;
    border-radius: 0 10px 10px 0;
}

.page-text blockquote p:last-child {
    margin-bottom: 0;
}

.page-text img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Карта сайта */
.sitemap-list {
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sitemap-list a {
    display: block;
    padding: 15px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.sitemap-list a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--neon-blue);
    padding-left: 30px;
}

@media (max-width: 768px) {
    .page-content {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-text {
        font-size: 15px;
    }
    
    .page-text h2 {
        font-size: 24px;
    }
    
    .page-text h3 {
        font-size: 20px;
    }
}