/* Общие стили для сайта в стиле mikeklubnika.com с поддержкой темной и светлой тем */
/* Стили для темной темы */
body {
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 20px;
    background-color: #121212;
    background-image: url('images/background_dark.svg');
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 300px;
    color: #e0e0e0;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

header {
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #bb86fc;
    font-weight: bold;
    text-transform: lowercase;
}

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

section {
    margin-bottom: 30px;
}

h2 {
    font-size: 1em;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 5px;
    margin-top: 20px;
    margin-bottom: 15px;
    text-transform: lowercase;
    font-weight: normal;
    color: #e0e0e0;
}

.news-item, .game-item, .update-item, .misc-item {
    margin-bottom: 10px;
    line-height: 1.4;
    color: #e0e0e0;
}

.date {
    display: inline-block;
    width: 100px;
    color: #aaaaaa;
    font-size: 0.9em;
}

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

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

footer {
    border-top: 1px solid #e0e0e0;
    padding-top: 10px;
    margin-top: 30px;
}

footer ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    gap: 20px;
}

p {
    margin-bottom: 10px;
    color: #e0e0e0;
}

/* Стили для формы */
form {
    background-color: #1e1e1e;
    padding: 15px;
    border: 1px solid #444444;
    color: #e0e0e0;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 5px;
    font-family: 'Courier New', Courier, monospace;
    border: 1px solid #444444;
    background-color: #2d2d2d;
    color: #e0e0e0;
    box-sizing: border-box;
}

input[type="submit"] {
    background: #2d2d2d;
    color: #e0e0e0;
    border: 1px solid #e0e0e0;
    padding: 5px 10px;
    font-family: 'Courier New', Courier, monospace;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #3d3d3d;
    color: #bb86fc;
}

/* Стили для Discord раздела */
.discord-info {
    background-color: #1e1e1e;
    padding: 15px;
    border-left: 3px solid #7289da;
    color: #e0e0e0;
}

/* Стили для списков */
ul, ol {
    padding-left: 20px;
    color: #e0e0e0;
}

li {
    margin-bottom: 5px;
    color: #e0e0e0;
}

/* Стили для таблиц (если понадобятся в будущем) */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    background-color: #1e1e1e;
    color: #e0e0e0;
}

th, td {
    border: 1px solid #e0e0e0;
    padding: 5px;
    text-align: left;
    color: #e0e0e0;
}

/* Стили для изображений */
img {
    max-width: 100%;
    height: auto;
    opacity: 0.8;
}


/* Стили для выделения важной информации */
.highlight {
    background-color: #3a3a3a;
    padding: 2px 4px;
    color: #e0e0e0;
}

/* Стили для контрастных элементов */
strong, b {
    color: #bb86fc;
}

/* Стили для навбара */
header nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

header nav a {
    text-decoration: none;
    color: #bb86fc;
    font-weight: bold;
    text-transform: lowercase;
}

header nav a:hover {
    text-decoration: underline;
    color: #bb86fc;
}

footer nav ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    gap: 20px;
}

footer nav a {
    text-decoration: none;
    color: #bb86fc;
    font-weight: bold;
    text-transform: lowercase;
}

footer nav a:hover {
    text-decoration: underline;
    color: #bb86fc;
}