body {
    font-family: Arial, sans-serif;
    background-color: #1a1a2e; /* Sötét háttér */
    color: #e0e0e0; /* Világos szöveg */
    margin: 0;
    padding: 20px;
    line-height: 1.6;
    font-size: 16px;
}

.kontener {
    max-width: 900px;
    margin: 40px auto;
    background-color: #181e22; /* Sötétebb háttér */
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #0d0f18;
}

h1 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid transparent;

    background: linear-gradient(to right, #00aaff, #ff0033);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    padding-bottom: 15px;
}

h2 {
    font-size: 1.6em;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #0d0f18;
    padding-bottom: 8px;

    background: linear-gradient(to right, #00aaff, #ff0033);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

h3 {
    color: #fff;
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    color: #b0b0b0;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

ul li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    color: #e0e0e0;
}

ul li::before {
    content: "\2022";
    color: #00aaff; /* Kék színű listajel */
    font-weight: bold;
    display: inline-block;
    width: 20px;
    margin-left: -25px;
}

strong {
    background: linear-gradient(to right, #00aaff, #ff0033);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.fontos-megjegyzes {
    background-color: #2b2b40;
    border-left: 5px solid transparent;
    border-image: linear-gradient(to bottom, #00aaff, #ff0033) 1;
    padding: 15px 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
    color: #e0e0e0;
    font-style: italic;
}

.fontos-megjegyzes p {
    margin: 0;
    color: inherit;
}

.alpont {
    margin-left: 30px;
    font-style: italic;
    color: #b0b0b0;
    margin-top: 10px;
}

/* Reszponzivitás */
@media (max-width: 768px) {
    .kontener {
        margin: 20px auto;
        padding: 20px;
    }
    h1 {
        font-size: 1.8em;
    }
    h2 {
        font-size: 1.4em;
    }
    h3 {
        font-size: 1.1em;
    }
    body {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .kontener {
        padding: 15px;
    }
    h1 {
        font-size: 1.5em;
    }
    h2 {
        font-size: 1.2em;
    }
}
