body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #e5e7eb 0%, #f3f4f6 100%);
    font-family: 'Helvetica Neue', sans-serif;
    color: #1f2937;
    overflow: hidden;
}

.khuuuywt {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideIn 1.2s ease-in-out;
}

h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #111827;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

p {
    font-size: 1.3em;
    margin: 8px 0;
    line-height: 1.6;
    color: #374151;
}

p:nth-child(3) {
    font-weight: bold;
    color: #4b5563;
}

@keyframes slideIn {
    0% { opacity: 0; transform: translateY(-30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    h1 { font-size: 2.2em; }
    p { font-size: 1.1em; }
    .khuuuywt { padding: 15px; }
}