/* styles/layout.css */
header {
    background: rgba(0, 0, 0, 0.9); /* Чёрный с прозрачностью */
    backdrop-filter: blur(10px);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
}
.nav-center {
    display: flex;
    justify-content: center;
    flex: 1;
}
.container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.page {
    display: none;
}
.page.active {
    display: block;
    animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
footer {
    text-align: center;
    padding: 30px;
    margin-top: 50px;
    color: #aaa; /* Светло-серый */
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.8); /* Чёрный с прозрачностью */
}