/* Floor Lamp */
.floor-lamp {
    position: absolute;
    right: -10px;
    bottom: 25px;
    width: 100px;
    height: 260px;
    z-index: 5;
}

.lamp-glow {
    animation: flicker 0.15s infinite alternate;
}

.lamp-light-cone {
    animation: flicker 0.15s infinite alternate;
}

@keyframes flicker {
    0% {
        opacity: 0.85;
    }

    20% {
        opacity: 1;
    }

    40% {
        opacity: 0.9;
    }

    60% {
        opacity: 1;
    }

    80% {
        opacity: 0.7;
    }

    100% {
        opacity: 0.95;
    }
}

.lamp-ambient {
    position: absolute;
    right: 0;
    top: 20px;
    width: 200px;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(255, 200, 100, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: ambient-flicker 0.2s infinite alternate;
}

@keyframes ambient-flicker {
    0% {
        opacity: 0.8;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }

    100% {
        opacity: 0.85;
        transform: scale(0.98);
    }
}

@media (max-width: 600px) {
    .floor-lamp {
        right: -20px;
        width: 80px;
        height: 220px;
    }

    .lamp-ambient {
        width: 150px;
        height: 150px;
    }
}
