/* Liquid Glass Effect for Hero Animation */
.hero-animation-container {
    position: relative;
    width: 100vw;
    height: 80vh;
    min-height: 600px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 3rem;
    overflow: hidden;
}

.hero-animation-container .unicorn-embed {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    left: 0 !important;
    right: 0 !important;
    position: absolute !important;
    top: 0;
}

.liquid-glass-blur {
    position: absolute;
    left: 0;
    width: 100%;
    height: 120px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    pointer-events: none;
    z-index: 5;
}

.liquid-glass-blur.bottom {
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 20%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.9) 100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.liquid-glass-blur.top {
    top: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.2) 20%,
        rgba(0, 0, 0, 0.6) 70%,
        rgba(0, 0, 0, 0.9) 100%
    );
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Optional: add a slight shine effect to make it feel more like glass */
.liquid-glass-blur::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
}

.liquid-glass-blur.bottom::after {
    top: 0;
}

.liquid-glass-blur.top::after {
    bottom: 0;
}

