/* Основные стили */
body {
    background: #000;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* Видео с дымом */
#smoke-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    opacity: 0.5;
}

/* Терминал */
.terminal {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #333;
    width: 80%;
    height: 80vh;
    margin: 5% auto;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
    position: relative;
}

/* Экран терминала */
.screen {
    padding: 10px;
    border: 1px solid #444;
    height: 70%;
    overflow-y: auto;
    background: #000;
    position: relative;
}

/* Эффект старого монитора */
.screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 0, 0.1),
        rgba(0, 255, 0, 0.1) 1px,
        transparent 1px,
        transparent 2px
    );
    animation: scanlines 1s infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* Эффект поврежденного экрана */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('static-noise.gif') repeat;
    opacity: 0.1;
    pointer-events: none;
    z-index: 9999;
    animation: static-flicker 0.1s infinite;
}

@keyframes static-flicker {
    0% { opacity: 0.1; }
    50% { opacity: 0.2; }
    100% { opacity: 0.1; }
}

/* Мигающий курсор */
.cursor {
    display: inline-block;
    animation: blink 0.5s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Неоновая вывеска */
.neon-sign {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 2em;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00, 0 0 20px #00ff00;
    animation: neon-blink 1.5s infinite alternate;
}

@keyframes neon-blink {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* Контейнер для ссылок */
.links-container {
    margin-top: 20px;
    font-size: 1.2em;
}

.links-container ul {
    list-style-type: none;
    padding: 0;
}

.links-container ul li {
    margin: 10px 0;
}

.links-container ul li a {
    color: #00ff00;
    text-decoration: none;
    transition: text-shadow 0.3s ease;
}

.links-container ul li a:hover {
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
}

/* Новые стили для контента */
.content {
    margin-top: 20px;
}

.neon-heading {
    font-size: 2em;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
    animation: neon-blink 1.5s infinite alternate;
}

.info-text {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.button-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.glow-button {
    background: #222;
    border: 2px solid #00ff00;
    color: #00ff00;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: box-shadow 0.3s ease, text-shadow 0.3s ease;
}

.glow-button:hover {
    box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.section {
    margin-top: 20px;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00;
}

.section h3 {
    font-size: 1.5em;
    color: #00ff00;
    text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
    animation: neon-blink 1.5s infinite alternate;
}

.section ul {
    list-style-type: none;
    padding: 0;
}

.section ul li {
    margin: 10px 0;
    font-size: 1.1em;
}

/* Анимация для текста */
@keyframes text-flicker {
    0% { opacity: 0.8; }
    50% { opacity: 1; }
    100% { opacity: 0.8; }
}

/* Дополнительные эффекты */
.glow-text {
    animation: text-flicker 1s infinite;
}
