@keyframes bounce {

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

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes float {

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

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

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.content {
    text-align: center;
    z-index: 10;
    animation: fadeInUp 0.8s ease-out;
}

h1 {
    font-size: 4rem;
    color: white;
}

.word {
    display: inline-block;
    margin: 0 10px;
    animation: bounce 1s infinite;
}

.word:nth-child(2) {
    animation-delay: 0.1s;
}

.word:nth-child(3) {
    animation-delay: 0.2s;
}

p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
}

.btn {
    padding: 14px 30px;
    margin: 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.primary {
    background: white;
    color: #667eea;
}

.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: white;
    opacity: 0.1;
    animation: float 6s infinite;
}

.shape1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
}

.shape2 {
    width: 300px;
    height: 300px;
    bottom: 0px;
    right: -100px;
    animation-delay: 1s;
}

.shape3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 2s;
}