/**
 * ALGA ARENA — Polished Floor Reflection System
 * Creates realistic mirroring effects beneath main objects
 */

.reflective-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Floor Reflection Layer */
.floor-reflection {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
    perspective: 1200px;
    margin-top: var(--sp-4);
}

.reflection-target {
    transform: scaleY(-1);
    opacity: 0.15;
    filter: blur(4px) brightness(0.6) saturate(0.8);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 60%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85) 0%, transparent 60%);
    pointer-events: none;
    transform-origin: bottom center;
}

/* Polished specular line overlay */
.floor-reflection::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--arena-border-accent), transparent);
    box-shadow: var(--shadow-glow);
}
