.glass-container {
    position: relative;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.20) 0%,
            rgba(255, 255, 255, 0.10) 100%);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 0;
    transition: all 0.3s ease;
}

/* Subtle internal glow only, reduced external blur */
.glass-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left,
            rgba(255, 255, 255, 0.25),
            transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(3px);
    /* Reduced from 8px */
    opacity: 0.7;
}

/* Soft internal highlight */
.glass-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.05));
    z-index: 1;
    mix-blend-mode: overlay;
    pointer-events: none;
}