body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

.logo {
    display: inline-flex;
    align-items: center;
    font-family: 'Luckiest Guy', cursive;
    font-size: 3rem;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96f2d7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.logo-icon {
    font-size: 2.5rem;
    margin-right: 0.5rem;
    animation: spin 5s linear infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.header {
    text-align: center;
    padding: 5rem 1rem;
    margin-top: -100px;
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    display: inline-block;
    position: relative;
    animation: float 3s ease-in-out infinite;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #45b7d1, #96f2d7, #ff6b6b);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Luckiest Guy', cursive;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.header h1::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(78, 205, 196, 0.1), rgba(69, 183, 209, 0.1));
    border-radius: 50px;
    z-index: -1;
    filter: blur(20px);
}

.emoji-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.emoji {
    position: absolute;
    font-size: 2rem;
    animation: emojiOrbit 8s infinite linear;
    opacity: 0.8;
    transform-origin: center;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

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

@keyframes emojiOrbit {
    0% {
        transform: rotate(0deg) translateX(150px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(150px) rotate(-360deg);
    }
}

.stars {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    animation: twinkle var(--duration) ease-in-out infinite;
}

@keyframes twinkle {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.feature-card {
    transition: transform 0.3s;
    border: none;
    border-radius: 15px;
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: rgb(14, 206, 171);
}

.icon-wrapper {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.custom-btn {
    background: maroon;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

.custom-btn:hover {
    background: rgb(225, 125, 125);
    color: white;
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
    transform: translateY(-10px);
}