/* Базовая очистка и фон */
html, body {
    background-color: #121214 !important;
    color: #e2e2e6 !important;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Контейнер форума */
#punbb {
    background: #121214 !important;
    padding: 15px !important;
}

/* Шапки категорий (разделов) */
.maintitle, th, h2 {
    background: #1a1a1c !important;
    color: #e57307 !important; /* Фирменный оранжевый цвет Black Russia */
    border-bottom: 2px solid #e57307 !important;
    font-weight: bold;
    text-transform: uppercase;
}

/* Блоки форума и темы (блоки со списками) */
.main-box, .category, .post {
    background-color: #18181b !important;
    border: 1px solid #27272a !important;
    border-radius: 6px !important;
    margin-bottom: 12px !important;
}

/* Ссылки (названия тем, разделов, ники) */
a {
    color: #ffffff !important;
    text-decoration: none !important;
}

a:hover {
    color: #e57307 !important; /* Подсветка при наведении */
}

/* Цвета для четных/нечетных строк в таблицах */
tr.row1, div.row1 { background-color: #1c1c1f !important; }
tr.row2, div.row2 { background-color: #222226 !important; }

/* Кнопки */
input[type="submit"], input[type="button"], .button {
    background: #e57307 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 4px !important;
    padding: 5px 15px !important;
    font-weight: bold;
    cursor: pointer;
}

input[type="submit"]:hover {
    background: #cc6605 !important;
}

/* Поля ввода (формы) */
input[type="text"], textarea, select {
    background-color: #27272a !important;
    border: 1px solid #3f3f46 !important;
    color: #ffffff !important;
    border-radius: 4px !important;
}