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

body {
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    position: relative;
}

body::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: drift 20s linear infinite;
    opacity: 0.3;
}

@keyframes drift {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(50px, 50px);
    }
}

.container {
    position: relative;
    z-index: 1;
}

.content {
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

.emoji {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: peek 2s ease-in-out infinite;
    display: inline-block;
}

@keyframes peek {

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

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

.message {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    animation: fadeIn 1s ease-out;
}

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

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

.decoration-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    margin: 0 auto;
    border-radius: 2px;
    animation: expand 2s ease-in-out infinite;
}

@keyframes expand {

    0%,
    100% {
        width: 100px;
        opacity: 0.5;
    }

    50% {
        width: 200px;
        opacity: 1;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .message {
        font-size: 2rem;
    }

    .emoji {
        font-size: 3.5rem;
    }

    .content {
        padding: 2rem;
    }
}

.credit {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 300;
    z-index: 10;
    animation: fadeIn 2s ease-out;
    transition: color 0.3s ease;
}

.credit:hover {
    color: rgba(255, 255, 255, 1);
}