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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ff6eb4 0%, #00c9b1 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    position: relative;
}

.hero {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 2px solid #ff85c8;
    position: relative;
    overflow: hidden;
}

.tiger {
    font-size: 6rem;
    animation: bounce 2s ease-in-out infinite;
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.subtitle-btn {
    font-size: 1.2rem;
    color: #fff;
    background: #00c9b1;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.3s both;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.subtitle-btn:hover {
    background: #ff6eb4;
    transform: scale(1.05);
}

.decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    background: rgba(255, 110, 180, 0.4);
    animation-delay: 0s;
}

.circle-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    background: rgba(0, 201, 177, 0.4);
    animation-delay: 2s;
}

.circle-3 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 20%;
    background: rgba(255, 110, 180, 0.4);
    animation-delay: 4s;
}

@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);
    }
}

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

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .hero {
        padding: 40px 20px;
        margin: 20px;
    }
}
