.email-share-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: linear-gradient(135deg, #fff1f7, #ffffff 48%, #ffe4f0);
    color: #1f2937;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.email-share-card {
    width: min(720px, 100%);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(236, 72, 153, 0.18);
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(236, 72, 153, 0.18);
    padding: 28px;
}

.email-share-badge,
.email-share-bonus,
.email-share-code {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #ffe4f0;
    color: #be185d;
    font-weight: 800;
}

.email-share-image {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 18px;
    margin: 8px 0 18px;
}

.email-share-card h1 {
    margin: 0 0 10px;
    font-size: clamp(30px, 5vw, 52px);
    line-height: 1.05;
}

.email-share-subtitle {
    margin: 0 0 18px;
    color: #6b7280;
    font-size: 18px;
    line-height: 1.6;
}

.email-share-alert {
    margin: 12px 0;
    padding: 12px;
    border-radius: 14px;
    background: #fef2f2;
    color: #991b1b;
    font-weight: 800;
}

.email-share-actions,
.email-share-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.email-share-actions a,
.email-share-actions button,
.email-share-social a {
    border: 0;
    border-radius: 999px;
    padding: 12px 16px;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.email-share-primary {
    background: #ec4899;
    color: #fff;
}

.email-share-actions button,
.email-share-social a {
    background: #f3f4f6;
    color: #1f2937;
}

@media (max-width: 520px) {
    .email-share-page {
        padding: 14px;
        align-items: start;
    }

    .email-share-card {
        padding: 20px;
        border-radius: 18px;
    }

    .email-share-actions a,
    .email-share-actions button,
    .email-share-social a {
        width: 100%;
        text-align: center;
    }
}
