/* Базовые настройки терминала */
body {
    background-color: #050505;
    /* Подключаем текстуру шума из архива */
    background-image: url('assets/grain.webp');
    background-blend-mode: overlay;
    color: #33ff33; /* Зеленый фосфорный цвет */
    font-family: 'Courier New', Courier, monospace;
    margin: 0;
    padding: 30px;
    line-height: 1.6;
}

/* Имитация развертки ЭЛТ-экрана */
.crt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
    background-size: 100% 4px;
    pointer-events: none;
    z-index: 1000;
}

h1 {
    text-transform: uppercase;
    text-shadow: 0 0 5px #33ff33;
    border-bottom: 1px dashed #33ff33;
    padding-bottom: 10px;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav li {
    margin-bottom: 10px;
}

a {
    color: #aaffaa;
    text-decoration: none;
}

a:hover {
    background-color: #33ff33;
    color: #000;
    text-shadow: none;
}

/* Стилизация изображений для соответствия атмосфере */
.responsive-img {
    max-width: 100%;
    height: auto;
    border: 2px solid #33ff33;
    filter: grayscale(100%) sepia(100%) hue-rotate(70deg) contrast(150%);
    margin-top: 20px;
}