* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: orange;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 1rem;
}

#content-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.content {
    position: relative;
    padding: 0.8rem;
    outline: 1px solid black;
    background: white;
    overflow: hidden;
    transition: background 0.2s, opacity 0.3s;
}

.content:hover {
    background: #fff5f8;
    mix-blend-mode: darken;
}

.content.hidden {
    mix-blend-mode: difference;
    pointer-events: none;
    cursor: not-allowed;
}

.content-preview {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    filter: brightness(0.5);
    transition: opacity 0.3s;
    z-index: 0;
}

.content:hover .content-preview {
    opacity: 0.5;
}

a {
    text-decoration: none;
    color: black;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

#filters {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-top: 1px solid gray;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    z-index: 50;
}

#filters div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

label {
    cursor: pointer;
    user-select: none;
}

.title-card {
    text-transform: uppercase;
    background: lightyellow;
}