:root {
    --bg-dark: #fc7942;
    --bg-darker: #fc794200;
    --primary: #d4af37;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --wpp-color: #25D366;
    --wpp-hover: #20BA56;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Background aesthetic elements */
.background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    top: -200px;
    left: -200px;
    animation: float 10s ease-in-out infinite alternate;
}

.glow-orb.orb-2 {
    top: auto;
    bottom: -200px;
    left: auto;
    right: -200px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    animation-delay: -5s;
}

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

    100% {
        transform: translate(50px, 50px);
    }
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.glass-panel {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 24px;
    border-radius: 50%;
    /* Just in case */
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.headline {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px;
    background: linear-gradient(to right, #fff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subheadline {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.5;
    font-weight: 300;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--wpp-color);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 16px 24px;
    border-radius: 100px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.whatsapp-btn:hover::before {
    left: 100%;
}

.whatsapp-btn:hover {
    background: var(--wpp-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -5px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn:active {
    transform: translateY(1px);
}

.wpp-icon {
    width: 24px;
    height: 24px;
}

.safe-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.8;
}

@media (max-width: 480px) {
    .glass-panel {
        padding: 30px 20px;
    }

    .headline {
        font-size: 1.5rem;
    }

    .whatsapp-btn {
        font-size: 1rem;
        padding: 14px 20px;
    }
}