body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    color: #333;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.logo-image {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 20px;
    /* Optional: adds rounded corners if the jpeg has a background */
    mix-blend-mode: multiply;
    /* Optional: helps blend white background logos if needed */
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e91e63;
    margin: 0;
    letter-spacing: -1px;
}

.content h2 {
    font-size: 2.5rem;
    margin: 1rem 0;
    background: -webkit-linear-gradient(45deg, #e91e63, #9c27b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.badge {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: #555;
}

/* Decorative Background Elements */
.illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circle {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.circle-small {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: rgba(156, 39, 176, 0.1);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

footer {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: #aaa;
}