/* Общие стили для всех страниц */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f0f2f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Контейнер для ограничения ширины */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== ШАПКА ========== */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 30px 0 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.site-title span {
    color: #e94560;
}

/* ========== НАВИГАЦИЯ ========== */
nav {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

nav a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

nav a.active {
    color: white;
    background: #e94560;
}

/* ========== ОСНОВНОЙ КОНТЕНТ ========== */
main {
    flex: 1;
    padding: 50px 0;
}

.page-title {
    font-size: 36px;
    color: #1a1a2e;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #e94560;
}

.page-title small {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    display: block;
    margin-top: 5px;
}

/* Блок с картинкой */
.image-block {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 25px 0;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.image-block .caption {
    padding: 15px 20px;
    color: #666;
    font-size: 14px;
    background: #fafafa;
}

/* Текстовый блок */
.content-text {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-top: 25px;
}

.content-text p {
    margin-bottom: 15px;
    font-size: 16px;
}

/* ========== ПОДВАЛ ========== */
footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.6);
    padding: 30px 0;
    margin-top: auto;
    text-align: center;
    border-top: 3px solid #e94560;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

footer .copyright {
    font-size: 14px;
}

footer .footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
    transition: color 0.3s;
}

footer .footer-links a:hover {
    color: white;
}

/* ========== АДАПТИВНОСТЬ ========== */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .site-title {
        font-size: 26px;
    }
    
    nav a {
        font-size: 13px;
        padding: 6px 14px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    footer .container {
        flex-direction: column;
        text-align: center;
    }
}
