.macos-window::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
    pointer-events: none;
    z-index: 10;
}

.reflection {
    transform-style: preserve-3d;
    perspective: 800px;
}

.reflection::before {
    content: "";
    position: absolute;
    width: 20%;
    height: 20%;
    top: 15%;
    left: 15%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    filter: blur(1px);
}
