body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #111;
    color: #fff;
    background-attachment: fixed;
    transition: background-color 0.5s ease, color 0.5s ease;
}

main {
    text-align: center;
    max-width: 400px;
    padding: 20px;
}

img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

h2 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 400;
    opacity: 0.7;
}

.status {
    opacity: 0.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.offline {
    opacity: 0.7;
    filter: grayscale(100%);
}