.loader-card {
    /* From body -- experiment */
    font-family: "Courier New", Courier, monospace;
    color: #a39585;
    flex-wrap: wrap;
    gap: 60px;
    /* --- */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 160px;
}

.loader-container {
    width: 100px;
    height: 120px;
    position: relative;
    margin-bottom: 30px;
}

.glass-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.5));
}

/* --- Animations --- */
@keyframes fillGlencairn {
    0% {
        transform: translateY(92px);
    }
    40%,
    60% {
        transform: translateY(60px);
    }
    100% {
        transform: translateY(92px);
    }
}

@keyframes fillMartini {
    0% {
        transform: translateY(120px);
    }
    40%,
    60% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(120px);
    }
}

@keyframes fillWine {
    0% {
        transform: translateY(72px);
    }
    40%,
    60% {
        transform: translateY(50px);
    }
    100% {
        transform: translateY(72px);
    }
}

@keyframes fillPint {
    0% {
        transform: translateY(135px);
    }
    40%,
    60% {
        transform: translateY(15px);
    }
    100% {
        transform: translateY(135px);
    }
}

.anim-glencairn {
    animation: fillGlencairn 3s infinite ease-in-out both;
}
.anim-martini {
    animation: fillMartini 3s infinite ease-in-out both;
}
.anim-wine {
    animation: fillWine 3s infinite ease-in-out both;
}
.anim-pint {
    animation: fillPint 3s infinite ease-in-out both;
}

.loading-text {
    letter-spacing: 4px;
    font-size: 0.85rem;
    text-transform: uppercase;
    animation: pulse 1.5s infinite;
    text-align: center;
    white-space: nowrap;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(217, 119, 6, 0.4);
    }
}
