@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;900&display=swap');

:root {
    --primary-color: #0052cc;
    /* Blue from reference roughly */
    --bg-gradient: linear-gradient(135deg, #ed3f37 0%, #57469d 100%);
    --card-bg: rgba(255, 255, 255, 0.95);
    --text-color: #333;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-gradient);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    overflow: hidden;
    position: relative;
}

.background-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.6;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: #ed3f38;
    top: -50px;
    left: -50px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #58469c;
    bottom: -100px;
    right: -100px;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: #f99e3b;
    top: 40%;
    left: 20%;
}

.card {
    background: var(--card-bg);
    padding: 4rem 3rem;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    text-align: center;
    max-width: 800px;
    width: 100%;
    position: relative;
    backdrop-filter: blur(10px);
}

.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 150px;
    height: auto;
}

.emoji-container {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: wave 2s infinite;
    display: inline-block;
}

@keyframes wave {
    0% {
        transform: rotate(0deg);
    }

    10% {
        transform: rotate(14deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    30% {
        transform: rotate(14deg);
    }

    40% {
        transform: rotate(-4deg);
    }

    50% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.pre-heading {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #58469c;
    /* Deep Blue */
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.subtext {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* Email Pill Button Styles */
.email-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1a1a2e;
    /* Dark Navy/Black */
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.email-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.email-pill .icon {
    font-size: 1.2rem;
}

/* Floating decor elements - optional cute shapes logic could go here */

@media (max-width: 768px) {
    .card {
        padding: 2.5rem 1.5rem;
        border-radius: 30px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subtext {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .email-pill {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .shape-2 {
        display: none;
    }
}