body {
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #8c1d18, #1f4037);
font-family: Poppins, sans-serif;
}

.card {
width: 80%;
max-width: 900px;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 30px 80px rgba(0,0,0,0.5);
background: #1a1a1a;
}

.card img {
width: 100%;
height: 60vh;
object-fit: cover;
}

.text {
padding: 24px;
color: #f5e6c8;
}

.text h1 {
margin: 0;
font-size: 42px;
letter-spacing: 2px;
}

.text p {
margin: 8px 0 0;
font-size: 20px;
opacity: 0.9;
}
