* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f9f9f9, #fff7fb);
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 500px;
    text-align: center;
    padding: 20px;
    animation: fadeInUp 1s ease-out forwards;
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Floating animation for GIF */
.tenor-gif-embed {
    max-width: 200px;
    animation: floatGIF 3s ease-in-out infinite;
    border-radius: 12px;
    overflow: hidden;
}

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

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

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

.btn {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

    .btn a {
        position: relative;
        text-decoration: none;
        color: #111;
        background: #ffffffcc;
        padding: 12px 28px;
        border-radius: 10px;
        font-weight: 600;
        backdrop-filter: blur(5px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transition: all 0.4s ease;
        border: 1px solid #ddd;
    }

        .btn a:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            background-color: #ffe0f0;
        }

        /* Animated glowing border effect */
        .btn a::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #ffe6f0, /* soft pink */
            #f0d9ff, /* light lavender */
            #e0f0ff, /* soft sky blue */
            #ffe6f0 );
            background-size: 400% 400%;
            background-size: 400% 400%;
            border-radius: 10px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .btn a:hover::before {
            opacity: 1;
            animation: shine 4s ease-in-out infinite;
        }

@keyframes shine {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

#move-random {
    position: absolute;
    transition: top 0.2s ease, left 0.2s ease;
}
