* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: #050505;
    color: #e2e8f0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 2rem;
}

.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background: radial-gradient(circle at 50% 50%, #2a0e05 0%, #050505 60%);
    animation: slowPulse 15s infinite alternate ease-in-out;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.6;
    animation: float 20s infinite ease-in-out;
}

.blob-1 {
    top: 10%;
    left: 15%;
    width: 400px;
    height: 400px;
    background: #cc3f22;
    animation-delay: 0s;
}

.blob-2 {
    bottom: 10%;
    right: 15%;
    width: 350px;
    height: 350px;
    background: #ff4f2b;
    animation-delay: -10s;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 640px;
    width: 100%;
    padding: 3.5rem;
    text-align: center;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.glass-panel {
    background: rgba(18, 18, 18, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.logo {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-logo {
    width: 140px;
    height: auto;
    margin-bottom: 1.5rem;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.logo h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, #ffffff, #ff4f2b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

.tagline {
    font-size: 0.85rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
}

.content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #f8fafc;
    line-height: 1.3;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 1.25rem;
}

.content p:last-of-type {
    margin-bottom: 0;
}

.socials {
    margin-top: 3.5rem;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(255, 79, 43, 0.25);
}

.instagram-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(255, 79, 43, 0.4);
}

.instagram-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(255, 79, 43, 0.3);
}

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

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

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-30px, 40px) scale(0.9);
    }
}

@keyframes slowPulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 2.5rem 2rem;
    }

    .brand-logo {
        width: 100px;
        margin-bottom: 1rem;
    }

    .logo h1 {
        font-size: 2.75rem;
    }

    .content h2 {
        font-size: 1.5rem;
    }

    .blob {
        display: none;
        /* Simplifies mobile rendering */
    }

    .background-animation {
        background: radial-gradient(circle at 50% 50%, #301007 0%, #050505 70%);
    }
}