:root {
    --primary: #0284c7;
    --primary-glow: rgba(2, 132, 199, 0.15);
    --bg-start: #030712;
    --bg-end: #0b1528;
    --card-bg: rgba(15, 23, 42, 0.45);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --whatsapp: #22c55e;
    --whatsapp-glow: rgba(34, 197, 94, 0.3);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: radial-gradient(circle at 50% 50%, #0f1c3f 0%, var(--bg-start) 100%);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
    overflow-x: hidden;
    position: relative;
}

/* Background Decorative Glows */
.glow-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
    animation: floatGlow 10s ease-in-out infinite alternate;
}

.glow-orb-1 {
    background: #0369a1;
    top: -100px;
    left: -100px;
}

.glow-orb-2 {
    background: #1e1b4b;
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes floatGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 30px) scale(1.1);
    }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 620px;
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 50px 40px;
    border-radius: 28px;
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Branding / Logo */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 35px;
}

.logo-icon {
    max-width: 220px;
    height: 64px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    margin-bottom: 20px;
    padding: 8px 16px;
    overflow: hidden;
    animation: pulseSoft 3s ease-in-out infinite;
}

.logo-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes pulseSoft {

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

    50% {
        transform: scale(1.03);
    }
}

.logo-title {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #fff;
    text-transform: uppercase;
}

.logo-subtitle {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--primary);
    text-transform: uppercase;
    margin-top: 2px;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(56, 189, 248, 0.08);
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #38bdf8;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 10px #38bdf8;
    animation: dotPulse 1.8s infinite;
}

@keyframes dotPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 14px #38bdf8;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

/* Headings & Texts */
h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    background: linear-gradient(to right, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 480px;
}

/* Buttons & Actions */
.contacts-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
    max-width: 420px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #ffffff;
    box-shadow: 0 4px 16px var(--whatsapp-glow);
}

.btn-whatsapp:hover {
    background: #1ebd56;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--whatsapp-glow);
}

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

.btn-email {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.btn-email:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-email:active {
    transform: translateY(0);
}

/* Footer info */
.footer-info {
    margin-top: 48px;
    font-size: 13px;
    color: #64748b;
    letter-spacing: 0.5px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
}

.footer-info .copyright {
    font-weight: 500;
    color: #94a3b8;
}

.footer-info .location-dev {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    color: #64748b;
}

.footer-info .separator {
    color: #334155;
}

.footer-info .dev-link {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.footer-info .dev-link:hover {
    color: #7dd3fc;
    text-shadow: 0 0 8px rgba(56, 189, 248, 0.3);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .container {
        padding: 40px 24px;
        border-radius: 20px;
    }

    h1 {
        font-size: 26px;
    }

    p {
        font-size: 15px;
    }

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