/* --- Ultra Modern FX (Cleaned) --- */

/* Removed Gradient Mesh to fix layout/contrast issues */
.gradient-mesh-bg {
    display: none;
}

/* --- Typographic Hero Reveal (Disabled) --- */
.hero-reveal-text {
    /* Reset to default or keep simple */
    color: inherit;
}

/* --- Floating 3D Elements (CSS Only) --- */
.floating-3d-box {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float3D 6s ease-in-out infinite;
    z-index: 0;
}

.box-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.box-2 {
    bottom: 15%;
    left: 5%;
    width: 40px;
    height: 40px;
    animation-delay: 1.5s;
    transform: rotate(-10deg);
}

.box-3 {
    top: 60%;
    right: 25%;
    width: 30px;
    height: 30px;
    animation-delay: 3s;
    filter: blur(2px);
}

@keyframes float3D {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* --- Interactive Ripple Button Effect --- */
.ripple-btn {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}