/* Базовый стиль */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #0c0d10;
    color: #d1d5db;
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

a {
    color: #f1a80a;
    text-decoration: none;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Шапка и навигация */
header {
    background-color: #12141a;
    border-bottom: 3px solid #a8201a;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#logo {
font-size: 28px;
font-weight: bold;
color: #fff;
text-transform: uppercase;
letter-spacing: 3px;
margin-bottom: 15px;
text-shadow: 0 0 10px rgba(168, 32, 26, 0.6);
}

#logo:hover {
text-decoration: none;
color: #f1a80a;
}

/* Главное меню */
#menu ul {
list-style: none;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 5px;
}

#menu li {
position: relative;
}

#menu li a {
color: #9ca3af;
font-size: 14px;
font-weight: bold;
padding: 8px 12px;
display: block;
border-radius: 3px;
}

#menu li:hover > a, #menu li.current > a {
color: #fff;
background-color: #1a1d26;
text-decoration: none;
}

/* Выпадающие списки */
#menu ul ul {
display: none;
position: absolute;
top: 100%;
left: 0;
background-color: #12141a;
border: 1px solid #242936;
border-top: 2px solid #a8201a;
min-width: 320px;
z-index: 9999;
flex-direction: column;
gap: 0;
box-shadow: 0 8px 16px rgba(0,0,0,0.6);
}

#menu ul ul li a {
padding: 10px 15px;
font-size: 13px;
font-weight: normal;
border-bottom: 1px solid #1a1d26;
}

#menu ul ul li a:hover {
background-color: #1a1d26;
color: #f1a80a;
}

#menu li:hover > ul {
display: flex;
}

/* Баннер */
#random-image {
width: 100%;
height: 350px;
background-color: #000;
border-bottom: 1px solid #1a1d26;
}

#random-image img {
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0.5;
}

#lower-bar {
background-color: #161920;
padding: 10px 20px;
border-bottom: 1px solid #242936;
font-size: 12px;
}

.breadcrumbs a {
    color: #9ca3af;
}

/* Основной контент */
#content {
max-width: 1400px;
margin: 20px auto;
padding: 0 20px;
display: grid;
grid-template-columns: 320px 1fr;
gap: 25px;
}

@media (max-width: 1024px) {
    #content {
    grid-template-columns: 1fr;
    }
}

/* Сайдбар*/
aside {
    background-color: #12141a;
    border: 1px solid #1a1d26;
    padding: 20px;
    border-radius: 4px;
    height: fit-content;
}

aside h2 {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: 1px solid #a8201a;
    padding-bottom: 5px;
    letter-spacing: 1px;
}

aside ul {
    list-style: none;
    margin-bottom: 25px;
}

aside ul li {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.4;
}

#search-form input[type="text"] {
width: 100%;
padding: 8px;
background-color: #0c0d10;
border: 1px solid #242936;
color: #fff;
border-radius: 3px;
margin-bottom: 8px;
}

#search-form input[type="submit"] {
width: 100%;
background-color: #a8201a;
color: #fff;
border: none;
padding: 8px;
font-weight: bold;
cursor: pointer;
border-radius: 3px;
}

#search-form input[type="submit"]:hover {
background-color: #c92c25;
}

#random-quote {
font-style: italic;
font-size: 12px;
color: #9ca3af;
background-color: #161920;
padding: 12px;
border-left: 3px solid #f1a80a;
margin-bottom: 20px;
}

/* Контентная зона */
article {
    background-color: #12141a;
    border: 1px solid #1a1d26;
    padding: 25px;
    border-radius: 4px;
}

article h1 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 20px;
    border-bottom: 1px solid #242936;
    padding-bottom: 10px;
}

article p {
    margin-bottom: 1.2em;
    line-height: 1.6;
}


.nm_post {
    background-color: #161920;
    border: 1px solid #242936;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 4px;
}

.nm_post_title {
    font-size: 20px;
    margin-bottom: 5px;
}

.nm_post_title a {
    color: #fff;
}

.nm_post_title a:hover {
    color: #f1a80a;
    text-decoration: none;
}

.nm_post_date {
    font-size: 11px;
    color: #6b7280;
    margin-bottom: 12px;
}

.nm_post_content p {
    margin-bottom: 12px;
    font-size: 14px;
}

.nm_post_content img {
    max-width: 100%;
    height: auto;
    border: 1px solid #242936;
    margin-top: 10px;
}

/* Навигация страниц */
.nm_page_nav {
    margin-top: 30px;
}

.navigation {
    display: flex;
    gap: 5px;
}

.navigation .page-numbers {
    background-color: #161920;
    border: 1px solid #242936;
    padding: 6px 12px;
    font-size: 13px;
    color: #9ca3af;
}

.navigation .page-numbers.current {
    background-color: #a8201a;
    color: #fff;
    border-color: #a8201a;
    font-weight: bold;
}

/* Подвал */
footer {
    margin: 40px auto 0 auto;
    padding: 20px;
    background: #0a0a0a; /* Плотный темный фон */
    border-top: 1px solid #333; /* Тонкая серая линия сверху */
    text-align: center;
    font-size: 12px;
    color: #4b5563;
    display: flex;
    flex-direction: column;
    align-items: center;
}
