﻿html, body {
    margin: 0;
    padding: 0;
}

.welcome-page {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(255, 231, 241, 0.95), transparent 35%), linear-gradient(180deg, #fff8fb 0%, #fffdf9 100%);
}

.welcome-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 214, 230, 0.35), transparent 18%), radial-gradient(circle at 80% 30%, rgba(255, 236, 190, 0.30), transparent 20%), radial-gradient(circle at 30% 80%, rgba(255, 223, 233, 0.25), transparent 18%);
    pointer-events: none;
}

.welcome-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 440px;
}

.invite-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(236, 210, 223, 0.95);
    border-radius: 32px;
    padding: 34px 26px 28px 26px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(146, 109, 132, 0.14);
    backdrop-filter: blur(8px);
    transform: translateY(0) scale(1);
    opacity: 1;
    transition: transform 1s ease, opacity 1s ease, box-shadow .4s ease;
}

    .invite-card.opening {
        transform: translateY(-18px) scale(1.05);
        opacity: 0;
        box-shadow: 0 30px 70px rgba(146, 109, 132, 0.22);
    }

.invite-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffe7f1, #fff2da);
    color: #a55483;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.invite-title {
    margin: 0;
    font-size: 40px;
    line-height: 1.18;
    font-weight: 700;
    color: #8a476b;
    letter-spacing: -0.5px;
}

.invite-text {
    margin: 18px 0 0 0;
    color: #8b7280;
    font-size: 16px;
    line-height: 1.7;
}

.invite-divider {
    width: 88px;
    height: 4px;
    border-radius: 999px;
    margin: 26px auto 20px auto;
    background: linear-gradient(90deg, #f2bfd1, #f4dfb0);
}

.invite-names {
    font-size: 30px;
    font-weight: 700;
    color: #9b5679;
    margin-bottom: 12px;
}

.invite-subtext {
    margin: 0 0 26px 0;
    color: #9a8590;
    font-size: 15px;
    line-height: 1.6;
}

.invite-button {
    border: none;
    border-radius: 18px;
    padding: 14px 24px;
    min-width: 160px;
    background: linear-gradient(135deg, #ffcadf, #ffe3a8);
    color: #6d3453;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(145, 90, 115, 0.12);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

    .invite-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 28px rgba(145, 90, 115, 0.18);
    }

    .invite-button:active {
        transform: translateY(0);
    }

@media (max-width: 576px) {
    .welcome-page {
        padding: 18px;
    }

    .welcome-content {
        max-width: 360px;
    }

    .invite-card {
        border-radius: 28px;
        padding: 28px 20px 24px 20px;
    }

    .invite-title {
        font-size: 32px;
    }

    .invite-text {
        font-size: 15px;
    }

    .invite-names {
        font-size: 26px;
    }

    .invite-subtext {
        font-size: 14px;
    }

    .invite-button {
        width: 100%;
        min-width: 0;
    }
}
