.hero {
    position: relative;
    width: 100%;
    height: 650px;
    margin: 0 auto;
    overflow: hidden;
    z-index: 0;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.hero img{
    width: 800px;
    max-width: 1100px;
    position: absolute;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.4;
}

.banana-float {
    position: absolute;
    user-select: none;
    pointer-events: none;
    z-index: 0;
}

.banana-float.b1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.banana-float.b2 {
    top: 40%;
    right: 15%;
    width: 100px;
    animation-delay: 1s;
}

.banana-float.b3 {
    bottom: 30%;
    left: 20%;
    width: 60px;
    animation-delay: 2s;
}

.hero-title {
    position: relative;
    z-index: 10;
    text-align: center;
    transform: rotate(-2deg);
    text-shadow:
        1px 1px 2px #fff,
        -1px -1px 2px #f0f,
        1px -1px 2px #f0f,
        -1px 1px 2px #ff0;
}

.title-anime {
    font-size: 10rem;
    font-weight: 900;
    margin-top: 100px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #c77dff, #7dd3fc, #fde047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 2s ease-in-out infinite;
}

.title-genshin {
    font-size: 4rem;
    font-weight: 700;
    color: #fde047;
    animation: wiggle 1s ease-in-out infinite;
    display: inline-block;
}

.title-banana {
    font-size: 3rem;
    font-weight: 700;
    color: #7dd3fc;
    transform: rotate(3deg);
    display: inline-block;
    margin-left: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero img { width: 450px;}
    .hero { height: 350px;}
    .title-anime { font-size: 3rem; }
    .title-genshin { font-size: 2rem; }
    .title-banana { font-size: 1.5rem; margin-left: 0.5rem; }
}