body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0b3d91;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

.card {
    background: white;
    color: #333;
    max-width: 700px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#nasa-image {
    width: 100%;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.content {
    padding: 25px;
}

h1 {
    margin-top: 0;
    color: #0b3d91;
    font-size: 1.5rem;
}

p {
    line-height: 1.6;
    text-align: justify;
    font-size: 0.95rem;
}

.date {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

#status {
    font-style: italic;
    color: #ccc;
}