/* Fona un pamata stils */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Konteiners kartītei */
.card {
    background-color: #2c2c2c;
    border-radius: 15px;
    padding: 40px;
    max-width: 700px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

h1 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #ffdd82;
}

p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlight {
    font-weight: bold;
    color: #a0e7a0;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.emoji {
    margin-right: 6px;
}

/* Responsīvais dizains */
@media (max-width: 768px) {
    .card {
        padding: 30px 20px;
    }

    h1 {
        font-size: 1.8em;
    }
}