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

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 20px;
    position: relative;
}

.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    width: 300px;
    height: 300px;
    opacity: 0.45;
}

.orb-1 {
    top: 10%;
    left: 10%;
    background: #ef4444;
    animation: moveOrb1 14s infinite alternate ease-in-out;
}

.orb-2 {
    bottom: 10%;
    right: 10%;
    background: #3b82f6;
    animation: moveOrb2 17s infinite alternate ease-in-out;
}

.orb-3 {
    top: 70%;
    left: 60%;
    background: #a855f7;
    animation: moveOrb3 19s infinite alternate ease-in-out;
}

.orb-4 {
    bottom: 60%;
    right: 50%;
    background: #eab308;
    animation: moveOrb4 15s infinite alternate ease-in-out;
}

@keyframes moveOrb1 {
    0% {
        top: 10%;
        left: 10%;
        transform: scale(1);
        background: #ef4444;
    }
    50% {
        top: 65%;
        left: 75%;
        transform: scale(1.4);
        background: #ec4899;
    }
    100% {
        top: 35%;
        left: 45%;
        transform: scale(0.8);
        background: #f43f5e;
    }
}

@keyframes moveOrb2 {
    0% {
        bottom: 10%;
        right: 10%;
        transform: scale(1.2);
        background: #3b82f6;
    }
    50% {
        bottom: 75%;
        right: 55%;
        transform: scale(0.7);
        background: #06b6d4;
    }
    100% {
        bottom: 45%;
        right: 75%;
        transform: scale(1.3);
        background: #6366f1;
    }
}

@keyframes moveOrb3 {
    0% {
        top: 70%;
        left: 60%;
        transform: scale(0.9);
        background: #a855f7;
    }
    50% {
        top: 15%;
        left: 25%;
        transform: scale(1.5);
        background: #10b981;
    }
    100% {
        top: 75%;
        left: 15%;
        transform: scale(1);
        background: #6366f1;
    }
}

@keyframes moveOrb4 {
    0% {
        bottom: 60%;
        right: 50%;
        transform: scale(1.1);
        background: #eab308;
    }
    50% {
        bottom: 15%;
        right: 20%;
        transform: scale(0.8) rotate(90deg);
        background: #f97316;
    }
    100% {
        bottom: 75%;
        right: 75%;
        transform: scale(1.3);
        background: #ef4444;
    }
}

.container {
    background-color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    max-width: 600px;
    width: 100%;
    padding: 40px 50px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease;
    margin: auto;
    position: relative;
    z-index: 1;
}

.container:hover {
    transform: translateY(-5px);
}

.logo {
    width: 100%;
    max-width: 360px;
    height: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
    transition: transform 0.3s ease;
}

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

h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0f172a;
    letter-spacing: -0.8px;
}

p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #334155;
    margin-bottom: 25px;
}

.divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.15), transparent);
    margin: 32px 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.contact-link, .contact-text {
    font-size: 14px;
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 6px 12px;
    border-radius: 8px;
    background: transparent;
    line-height: 1.5;
}

.contact-link:hover {
    color: #0f172a;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .container {
        padding: 35px 30px;
    }
}

@media (max-width: 576px) {
    body {
        padding: 15px;
    }

    .glow-orb {
        width: 180px;
        height: 180px;
        filter: blur(55px);
        opacity: 0.4;
    }

    .container {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .logo {
        max-width: 280px;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .divider {
        margin: 24px 0;
    }

    .contact-link, .contact-text {
        font-size: 13px;
        padding: 4px 8px;
    }
}

@media (max-height: 600px) {
    body {
        align-items: flex-start;
    }
}