/* Sauce Bucket Filters */
.lobby-filters {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    align-items: center;
    width: 100%;
}

.sauce-buckets {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    width: 100%;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.sauce-buckets::-webkit-scrollbar {
    display: none;
}

.sauce-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sauce-pill:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sauce-pill.active {
    background: var(--jeopardy-gold, #ffcc00);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
    border-color: transparent;
}

/* Search Bar */
.search-bar {
    display: flex;
    width: 100%;
    max-width: 600px;
    gap: 10px;
}

.search-bar input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 16px;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--jeopardy-gold, #ffcc00);
    background: rgba(0, 0, 0, 0.5);
}

.search-bar button {
    padding: 0 20px;
    white-space: nowrap;
}

/* Artist Grid Overrides */
.preset-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .preset-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .preset-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .preset-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* New Modern Artist Card */
.preset-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    /* Square */
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.preset-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.preset-card:active {
    transform: scale(0.96);
}

.preset-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.preset-card h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: rgba(255, 255, 255, 0.5);
}

/* List View Styles */
.preset-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.preset-list-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 100%;
    text-align: left;
}

.preset-list-item:hover {
    transform: translateX(5px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border-color: rgba(255, 255, 255, 0.2);
}

.preset-list-item:active {
    transform: scale(0.98);
}

.preset-list-item .preset-icon {
    font-size: 32px;
    margin: 0;
    margin-right: 20px;
}

.preset-list-item .preset-info {
    flex: 1;
}

.preset-list-item h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: 700;
}

.preset-list-item .preset-artist {
    margin: 0;
    font-size: 0.9rem;
    color: #888;
}

.preset-list-item .preset-categories {
    margin-left: auto;
    padding-left: 15px;
}

.preset-list-item .preset-categories span {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ccc;
}

/* View Toggle Buttons */
.view-toggle {
    display: flex;
    gap: 5px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 3px;
}

.view-toggle-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    padding: 8px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
}

.view-toggle-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.view-toggle-btn.active {
    color: #000;
    background: var(--jeopardy-gold, #ffcc00);
}