body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f5f5f7;
    color: #111;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.card {
    width: 100%;
    max-width: 420px;
    background: white;
    border-radius: 28px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.card--transparent {
    background: transparent;
    box-shadow: none;
}

.cover {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

h1 {
    font-size: 26px;
    line-height: 1.2;
    margin: 0 0 12px;
}

p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    margin: 0 0 24px;
}

.button,
.secondary-button {
    display: block;
    padding: 15px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.button {
    background: #000;
    color: #fff;
}

.secondary-button {
    margin-top: 10px;
    color: #111;
    background: #f0f0f0;
}
.secondary-button--contrasted {
    background: #e0e0e0;
}