/* Фон страницы */
body {
    background: url("https://i.ibb.co/9nF9D8R/blackrussia-bg.jpg") no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Ссылки */
a {
    color: #ff2e2e;
    text-decoration: none;
}
a:hover {
    color: #ff9900;
    text-decoration: underline;
}

/* Контейнер форума */
.container, #pun, #brdmain {
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid #ff2e2e;
    padding: 10px;
    border-radius: 5px;
}

/* Заголовки */
h1, h2, h3, h4 {
    color: #ff2e2e;
    text-transform: uppercase;
    border-bottom: 1px solid #ff2e2e;
    padding-bottom: 5px;
    margin-top: 10px;
}

/* Навигация */
.navlinks {
    background: rgba(0, 0, 0, 0.85);
    padding: 8px;
    border-bottom: 1px solid #ff2e2e;
}
.navlinks a {
    color: #ff2e2e;
    margin: 0 5px;
}
.navlinks a:hover {
    color: #ff9900;
}
.navlinks img {
    filter: brightness(0) invert(1);
}

/* Таблицы */
table {
    border-collapse: collapse;
    width: 100%;
}
table th {
    background: rgba(255, 46, 46, 0.2);
    color: #fff;
    padding: 8px;
}
table td {
    border: 1px solid rgba(255, 46, 46, 0.3);
    padding: 8px;
}

/* Кнопки */
button, input[type="submit"], input[type="button"] {
    background: #ff2e2e;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s;
}
button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background: #ff9900;
}

/* Списки тем */
.forum .tcl {
    background: rgba(0, 0, 0, 0.6);
    padding: 8px;
    border-bottom: 1px solid rgba(255, 46, 46, 0.3);
}
.forum .tcl:hover {
    background: rgba(255, 46, 46, 0.1);
}

/* Цитаты */
blockquote {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #ff2e2e;
    padding: 8px;
    margin: 5px 0;
    font-style: italic;
}

/* Формы */
input[type="text"], input[type="password"], textarea, select {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: 1px solid rgba(255, 46, 46, 0.3);
    padding: 6px;
    border-radius: 3px;
}
input[type="text"]:focus, input[type="password"]:focus, textarea:focus, select:focus {
    border-color: #ff9900;
    outline: none;
}

/* Футер */
#brdfooter {
    background: rgba(0, 0, 0, 0.85);
    padding: 10px;
    border-top: 1px solid #ff2e2e;
    text-align: center;
    font-size: 0.9em;
}