* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background-color: #0a0a0a;
    /* Tutaj magia: przyciemniamy siatkę o 90%, żeby była tylko subtelną fakturą */
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/bg1.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    color: #00ff00;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
}

header {
    border-bottom: 2px solid #ff0000;
    padding-bottom: 20px;
    margin-bottom: 40px;
    text-align: center;
}

h1 {
    font-size: 2.8rem;
    color: #ff0000;
    text-transform: none;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.subtitle {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

nav {
    margin-top: 20px;
}

nav a {
    color: #00ff00;
    text-decoration: none;
    margin: 0 15px;
    font-weight: bold;
    transition: color 0.3s;
}

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

main {
    padding: 30px 0;
}

section {
    margin-bottom: 40px;
    padding: 20px;
    background: #111;
    border: 1px solid #333;
}

h2 {
    color: #ff5500;
    margin-bottom: 15px;
    border-left: 3px solid #ff0000;
    padding-left: 10px;
}

pre {
    background: #000;
    padding: 20px;
    border-left: 5px solid #ff0000;
    overflow-x: auto;
    margin: 20px 0;
    color: #00ccff;
    font-size: 1.1rem;
}

footer {
    margin-top: 50px;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.small {
    font-size: 0.8rem;
    color: #444;
}

hr {
    border: none;
    height: 1px;
    background: #333;
    margin: 30px 0;
}

.update {
    border: 2px dashed #ff0000;
    padding: 15px;
    margin-bottom: 20px;
}

.warning {
    border: 2px solid #ff9900;
    background: #1a0f00;
}

.warning h2 {
    color: #ff9900;
}

.content ul, .warning ul {
    margin-left: 20px;
    margin-top: 10px;
}

.content li, .warning li {
    margin-bottom: 8px;
}
