/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: black;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: white;
}

/* ================= VIDEO BACKGROUND ================= */
.video-background-container {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: black;
}

.video-background-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.8)
    );
    z-index: 1;
}

/* ================= GLASS CARD ================= */
.glass-card {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.08);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    max-width: 650px;
    width: 90%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    animation: fadeUp 1s ease forwards;
}

/* ================= IMAGE ================= */
.love-gif {
    width: clamp(150px, 30vw, 260px);
    height: clamp(150px, 30vw, 260px);
    border-radius: 50%;
    margin-bottom: 30px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* ================= MESSAGE ================= */
.msg p {
    font-weight: 300;
    font-size: clamp(14px, 2.5vw, 20px);
    margin-bottom: 8px;
}

.msg h1 {
    font-weight: 600;
    font-size: clamp(22px, 4vw, 38px);
    margin-top: 20px;
    line-height: 1.3;
}

/* ================= BUTTONS ================= */
.btn-container {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

button {
    padding: 14px 30px;
    font-size: clamp(14px, 2vw, 18px);
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.primary-btn {
    background: linear-gradient(135deg, #ff4d6d, #ff758f);
    color: white;
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 77, 109, 0.5);
}

.secondary-btn {
    background: transparent;
    border: 1px solid white;
    color: white;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.site-trust {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(12px, 1.8vw, 14px);
    line-height: 1.6;
}

.site-owner,
.site-note {
    margin-bottom: 8px;
}

.site-trust a {
    color: #ffd5dd;
    text-decoration: none;
    font-weight: 500;
}

.site-trust a:hover {
    text-decoration: underline;
}

.hide {
    display: none;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= MOBILE ================= */
@media (max-width: 480px) {
    .glass-card {
        padding: 35px 20px;
    }

    .btn-container {
        flex-direction: column;
        width: 100%;
    }

    button {
        width: 100%;
    }
}
