body {
    background-color: #0d0d0d;
    color: #d8b4fe;
    font-family: 'Silkscreen', monospace;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Стили котика — делаем его тоже пиксельным и ровным */
.cat {
    font-family: 'Silkscreen', monospace;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #e9d5ff;
    text-shadow: 0 0 10px rgba(216, 180, 254, 0.5);
    user-select: none;
    text-align: center;
}

/* Стили текста */
.text {
    font-size: 1.1rem;
    max-width: 650px;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 0 8px rgba(216, 180, 254, 0.6),
                 0 0 20px rgba(168, 85, 247, 0.3);
}

@media (max-width: 600px) {
    .cat { font-size: 0.9rem; }
    .text { font-size: 0.8rem; }
}
