/* эщкере стили ваще */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 50%, #16213e 100%);
    color: #00ff9d;
    font-family: 'Courier New', monospace;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
}

/* мегакрутой эффект */
.crt-effect::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.15) 0px,
            rgba(0, 0, 0, 0.15) 1px,
            transparent 1px,
            transparent 2px
        );
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
}

/* коробк */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* кнопкэ */
.nav-bar {
    background: rgba(0, 20, 30, 0.9);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 2px solid #00ff9d;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.3);
    display: flex;
    justify-content: center;
    gap: 30px;
}

.nav-link {
    color: #00ff9d;
    text-decoration: none;
    font-size: 1.2em;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.nav-link:hover {
    background: rgba(0, 255, 157, 0.1);
    text-shadow: 0 0 10px #00ff9d;
    transform: translateY(-2px);
}

/* бошки */
h1 {
    color: #ff0066;
    text-align: center;
    font-size: 3em;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        0 0 10px #ff0066,
        0 0 20px #ff0066,
        0 0 40px #ff0066;
}

h2 {
    color: #00ccff;
    font-size: 2em;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00ccff;
    text-shadow: 0 0 10px #00ccff;
}

/* контентище */
.content {
    background: rgba(10, 25, 47, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #00ccff;
    box-shadow: 0 0 20px rgba(0, 204, 255, 0.2);
    line-height: 1.6;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #00ff9d;
}

/* списокс */
ul {
    list-style: none;
    padding-left: 20px;
}

li {
    margin: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1em;
    color: #00ff9d;
}

li::before {
    content: '>';
    color: #ff0066;
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.3em;
}

/* ссыль */
a {
    color: #00ccff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 5px;
}

a:hover {
    color: #ff0066;
    text-shadow: 0 0 10px #ff0066;
    background: rgba(255, 0, 102, 0.1);
    border-radius: 3px;
}

/* картинк */
.site-logo {
    display: block;
    max-width: 200px;
    margin: 30px auto;
    border: 3px solid #00ff9d;
    border-radius: 10px;
    padding: 5px;
    background: rgba(0, 255, 157, 0.1);
    transition: all 0.3s ease;
}

/* снизу штучко */
.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    color: #666;
    font-size: 0.9em;
    border-top: 1px solid #333;
}

/* спину поправь */
@media (max-width: 768px) {
    .nav-bar {
        flex-direction: column;
        gap: 10px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .container {
        padding: 10px;
    }
}