.app-item {
    width: 650px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-preview {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.app-preview iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: none;
    overflow: hidden;
}

.app-preview .overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.0);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.app-preview:hover .overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.75);
    color: white;
}

.content {
    padding: 12px 16px;
}

.app-grid {
    padding: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.gloss-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;

    /* From https://css.glass */
    background: rgba(249, 249, 255, 0.09);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0.3px);
    -webkit-backdrop-filter: blur(0.4px);
    border: 1px solid rgba(249, 249, 255, 0.32);
}

.apps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

main {
    max-width: 1500px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}