body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #e8e8e8;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-45deg, #050505, #111111, #1a1a1a, #0d0d0d);
    background-size: 400% 400%;
    animation: gradientMove 18s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    text-align: center;
    max-width: 900px;
    padding: 20px;
}

img {
    max-width: 80%;
    border: 18px solid rgba(60, 60, 60, 0.6);
    border-radius: 6px;
    margin-bottom: 30px;
}

p {
    font-size: 18px;
    color: #d0d0d0;
    line-height: 1.6;
}

input {
    margin-top: 20px;
    padding: 10px;
    background: #0f0f0f;
    border: 1px solid #333;
    color: #eee;
    font-size: 16px;
    text-align: center;
}

button {
    margin-top: 15px;
    padding: 10px 22px;
    background: #0f0f0f;
    color: #f2f2f2;
    border: 1px solid #333;
    cursor: pointer;
    font-size: 15px;
}

button:hover {
    background: #1b1b1b;
}