@import url('https://fonts.googleapis.com/css2?family=Electrolize&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

:root {
    --console-card: rgba(10, 10, 20, 0.55);
    --console-border: rgba(0, 255, 255, 0.25);
    --console-text: #E0E0E0;
    --console-muted: #B8B8C8;
    --console-magenta: #FF00FF;
    --console-cyan: #00FFFF;
    --console-green: #00ff41;
}

.hero-section {
    font-family: 'Electrolize', sans-serif;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1d35 100%);
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow-x: hidden;
    padding: 20px 0 0 0;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    width: 100%;
}

/* Initial landing state: logo + search vertically centered */
.hero-section-landing {
    align-items: center;
}

.hero-section-landing .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 40px;
    transform: translateY(40px);
}

.hero-section-landing .pixel-logo {
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.hero-section-landing .hero-subtitle,
.hero-section-landing .hero-description {
    width: 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.hero-section-landing .search-section {
    margin-bottom: 0;
}

/* On the landing the stats line follows the search box directly, so drop the
   row's results-state bottom gap that would otherwise push them apart. */
.hero-section-landing .search-row {
    margin-bottom: 0;
}

/* Hero Banner Section - Retro Gaming Style.
   Only rendered in the results state (see search.blade.php @if/@else), so
   these values are kept slim so listings sit near the top, not below a
   full hero. Mirrors the /pricing banner. */
.search-hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: 2px solid #00ff41;
    box-shadow:
        0 0 12px rgba(0, 255, 65, 0.25),
        inset 0 0 24px rgba(0, 255, 65, 0.08);
    position: relative;
    overflow: hidden;

    padding: 0.85rem 1.5rem;
    border-radius: 0;
    margin-bottom: 24px;
    margin-left: 0;
    margin-right: 0;
}

.hero-gradient {
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 65, 0.03) 0px,
        transparent 2px,
        transparent 4px,
        rgba(0, 255, 65, 0.03) 6px
    );
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 65, 0.05) 50%, transparent 100%),
        repeating-linear-gradient(
            90deg,
            rgba(255, 0, 255, 0.02) 0px,
            transparent 2px,
            transparent 4px,
            rgba(255, 0, 255, 0.02) 6px
        );
    /* Animated scanline removed -- distracting motion on a thin bar; the
       static texture above is enough to keep the retro feel. */
}

@keyframes scanline {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-headline {
    font-family: 'Electrolize', 'Courier New', monospace;
    font-size: 1.25rem;
    color: #00ff41;
    text-shadow: 
        2px 2px 0px #ff00ff,
        4px 4px 0px rgba(0, 0, 0, 0.5),
        0 0 10px rgba(0, 255, 65, 0.5);
    margin: 0;
    letter-spacing: 2px;
}

.hero-subtext {
    font-family: 'Electrolize', 'Courier New', monospace;
    font-size: 0.85rem;
    color: #00d9ff;
    text-shadow: 
        1px 1px 0px #ff00ff,
        0 0 8px rgba(0, 217, 255, 0.6);
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-subtext::before {
    content: '> ';
    color: #ff00ff;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Pixel corner decorations -- scaled down + pulled in so the slim padding
   doesn't clip them against the section's overflow:hidden. */
.hero-content::before,
.hero-content::after {
    content: '';
    position: absolute;
    width: 14px;
    height: 14px;
    border: 2px solid #ff00ff;
}

.hero-content::before {
    top: -0.4rem;
    left: -0.4rem;
    border-right: none;
    border-bottom: none;
    box-shadow: 0 0 8px rgba(255, 0, 255, 0.5);
}

.hero-content::after {
    bottom: -0.4rem;
    right: -0.4rem;
    border-left: none;
    border-top: none;
    box-shadow: 0 0 8px rgba(255, 0, 255, 0.5);
}

/* Search Results Console */
.search-results-console {
    font-family: 'Electrolize', sans-serif;
    width: 100%;
}

.console-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

#pagination-top {
    grid-column: 2;
    justify-content: center;
}

.console-typecond-row .console-meta {
    grid-column: 3;
    text-align: right;
    justify-self: end;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-btn {
    font-family: 'Electrolize', sans-serif;
    background: #1a1a2e;
    border: 2px solid #00d9ff;
    color: #00d9ff;
    width: 28px;
    height: 28px;
    border-radius: 0;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover {
    background: #00d9ff;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.6);
}

.page-btn:active {
    transform: scale(0.95);
}

.page-number {
    font-family: 'Electrolize', sans-serif;
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 90px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.console-meta {
    font-family: 'Electrolize', sans-serif;
    color: #00d9ff;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.console-listing {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 16px;
    padding: 12px;
    background: var(--console-card);
    border: 1px solid var(--console-border);
    border-radius: 8px;
    color: var(--console-text);
    text-decoration: none;
    align-items: start;
    transition: all 0.15s ease;
}

.console-listing:hover {
    border-color: var(--console-cyan);
    background: rgba(0, 255, 255, 0.05);
    color: #fff;
}

.console-listing-thumb {
    width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 4px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.console-listing-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.console-listing-thumb-placeholder {
    color: var(--console-muted);
    font-size: 0.75rem;
}

.console-listing-body {
    min-width: 0;
}

.console-listing-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.console-listing-meta {
    display: flex;
    gap: 10px;
    font-size: 0.85rem;
    line-height: 1.2;
    color: var(--console-muted);
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.console-listing-console {
    color: #00d9ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.console-listing-listed {
    font-size: 0.8rem;
    line-height: 1.2;
    color: var(--console-muted);
    margin-bottom: 6px;
    cursor: help;
}

.console-listing-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.console-tag {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--console-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tag-auction { color: #ffcc66; border-color: rgba(255, 204, 102, 0.3); }
.tag-bin     { color: #66ffaa; border-color: rgba(102, 255, 170, 0.3); }
.tag-offer   { color: #cc99ff; border-color: rgba(204, 153, 255, 0.3); }
.tag-loose   { color: #66ddff; border-color: rgba(102, 221, 255, 0.3); }
.tag-cib     { color: #ffaa66; border-color: rgba(255, 170, 102, 0.3); }
.tag-new     { color: #ff77cc; border-color: rgba(255, 119, 204, 0.3); }

.console-listing-price {
    text-align: right;
    min-width: 120px;
    /* Reserve room at the bottom-right for the absolutely-positioned
       .listing-notify button so it never overlaps the price/peek. */
    padding-bottom: 24px;
}

.console-listing-amount {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--console-cyan);
}

.console-listing-empty {
    font-family: 'Electrolize', sans-serif;
    background: var(--console-card);
    border: 1px solid var(--console-border);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    color: var(--console-muted);
}

/* Search Section */
.search-section {
    width: 100%;
    margin-bottom: 40px;
}

.search-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-row {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
    justify-content: center;
}

.search-wrapper {
    flex: 0 0 500px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--console-border);
    border-radius: 6px;
    padding: 0 12px;
    box-shadow: none;
    backdrop-filter: none;
    transition: none;
}

.search-wrapper:hover,
.search-wrapper:focus-within {
    border-color: var(--console-border);
    box-shadow: none;
    transform: none;
}

.search-input {
    font-family: 'Electrolize', sans-serif;
    width: 100%;
    border: none;
    outline: none;
    padding: 6px 0;
    font-size: 0.85rem;
    background: transparent;
    color: var(--console-cyan);
}

.search-input::placeholder {
    font-family: 'Electrolize', sans-serif;
    color: var(--console-muted);
    opacity: 1;
}

.search-button {
    display: inline-block;
    font-family: 'Electrolize', sans-serif;
    background: linear-gradient(135deg, #00d9ff 0%, #00ff41 100%);
    color: #0a0e27;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: filter 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 0 16px rgba(0, 217, 255, 0.25);
    flex: 0 0 130px;
}

.search-button:hover {
    filter: brightness(1.08);
    box-shadow: 0 0 22px rgba(0, 255, 65, 0.4);
}

.search-button:active {
    transform: translateY(0);
}

.console-selection {
    text-align: center;
    overflow-x: auto;
    padding-bottom: 10px;
}

.filter-tags {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
    min-width: max-content;
    padding: 0 20px;
}

.console-selection::-webkit-scrollbar {
    height: 6px;
}

.console-selection::-webkit-scrollbar-track {
    background: #1a1a2e;
    border-radius: 0;
}

.console-selection::-webkit-scrollbar-thumb {
    background: #00d9ff;
    border-radius: 0;
}

.console-selection::-webkit-scrollbar-thumb:hover {
    background: #00ff41;
}

.filter-tag {
    font-family: 'Electrolize', sans-serif;
    background: #1a1a2e;
    border: 2px solid #00d9ff;
    border-radius: 0;
    padding: 10px 20px;
    color: #00d9ff;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px rgba(0, 217, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.filter-tag:hover {
    background: #00d9ff;
    border-color: #00d9ff;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 217, 255, 0.5);
}

.filter-tag.active {
    background: #00d9ff;
    border-color: #00d9ff;
    color: #1a1a2e;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
}

/* Cross-console filter bar */
.console-controls {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1a1a2e;
    margin-bottom: 14px;
}

/* Filters & Sort control + pagination + listing count on one line, snug just
   above the first listing. Balanced 1fr/auto/1fr grid: left-aligned control +
   centered pagination + right-aligned count, so "Page X of Y" is truly
   centered in the row. */
.console-paging-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px 16px;
    margin-bottom: 8px;
}

.console-paging-row .filters-sort {
    grid-column: 1;
    justify-self: start;
}

.console-paging-row #pagination-top {
    grid-column: 2;
    justify-self: center;
}

.console-paging-row .console-meta {
    grid-column: 3;
    justify-self: end;
    text-align: right;
}

.console-filter-bar {
    display: flex;
    align-items: center;
    gap: 8px 10px;
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: wrap;
}

.console-filter-label {
    font-family: 'Electrolize', sans-serif;
    color: #00ff41;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 6px rgba(0, 255, 65, 0.35);
    flex: 0 0 auto;
}

/* No separator border here -- Type/Condition groups with the console
   filter list directly below it. */
.console-typecond-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px 16px;
    margin-bottom: 8px;
}

.console-typecond-filters {
    grid-column: 1;
    justify-self: start;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    min-width: 0;
}

.console-filter-group {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex: 0 0 auto;
}

.console-filter-grouplabel {
    font-family: 'Electrolize', sans-serif;
    color: #00ff41;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 6px rgba(0, 255, 65, 0.35);
}

.console-filter-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.console-filter-action {
    font-family: 'Electrolize', sans-serif;
    background: transparent;
    border: none;
    padding: 0;
    color: #00ff41;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-shadow: 0 0 6px rgba(0, 255, 65, 0.4);
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.console-filter-action:hover {
    color: #00d9ff;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.6);
    text-decoration: underline;
}

.console-filter-action:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

/* disabled buttons can still match :hover -- neutralize it */
.console-filter-action:disabled:hover {
    color: #00ff41;
    text-shadow: none;
    text-decoration: none;
}

.console-filter-action-sep {
    color: rgba(0, 217, 255, 0.4);
    font-size: 0.8rem;
}

.console-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    flex: 1 1 100%;
}

/* Empty-state text shown in place of the pills when a search returns no
   results. Matches a single pill row's box metrics (3px padding + 1px
   border + 0.72rem) so the filter block keeps the same height. */
.console-filter-empty {
    display: inline-flex;
    align-items: center;
    padding: 3px 0;
    border: 1px solid transparent;
    font-family: 'Electrolize', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(0, 217, 255, 0.45);
}

.console-filter-pill {
    font-family: 'Electrolize', sans-serif;
    background: #1a1a2e;
    border: 1px solid rgba(0, 217, 255, 0.35);
    color: rgba(0, 217, 255, 0.55);
    padding: 3px 9px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 0;
}

.console-filter-pill:hover {
    border-color: #00d9ff;
    color: #00d9ff;
    transform: translateY(-1px);
}

.console-filter-pill.active {
    background: #00d9ff;
    border-color: #00d9ff;
    color: #1a1a2e;
    box-shadow: 0 0 12px rgba(0, 217, 255, 0.5);
}

.console-filter-pill.active:hover {
    background: #00ff41;
    border-color: #00ff41;
    box-shadow: 0 0 14px rgba(0, 255, 65, 0.5);
}

/* Leading "All" pill -- a small gap + faint divider sets the unfiltered
   default apart from the per-console pills that follow it. */
.console-filter-all {
    position: relative;
    margin-right: 11px;
}

.console-filter-all::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 65%;
    background: rgba(0, 217, 255, 0.3);
}

.console-filter-pill[disabled] {
    opacity: 0.5;
    cursor: wait;
}

/* ── Console multi-select dropdown ─────────────────────────────────────── */
.console-dropdown {
    position: relative;
    flex: 0 0 auto;
    font-family: 'Electrolize', sans-serif;
}

.console-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 220px;
    background: #1a1a2e;
    border: 1px solid rgba(0, 217, 255, 0.35);
    color: #00d9ff;
    padding: 6px 12px;
    font-family: 'Electrolize', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.console-dropdown-trigger:hover,
.console-dropdown.open .console-dropdown-trigger {
    border-color: #00d9ff;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.35);
}

.console-dropdown-caret {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.console-dropdown.open .console-dropdown-caret {
    transform: rotate(180deg);
}

.console-dropdown-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 50;
    width: 300px;
    max-width: 84vw;
    background: #12152b;
    border: 1px solid rgba(0, 217, 255, 0.4);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55), 0 0 14px rgba(0, 217, 255, 0.18);
    display: flex;
    flex-direction: column;
}

.console-dropdown-panel[hidden] {
    display: none;
}

.console-dropdown-search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.18);
}

.console-dropdown-search-icon {
    color: rgba(0, 217, 255, 0.6);
    font-size: 0.95rem;
}

.console-dropdown-search-input {
    flex: 1 1 auto;
    min-width: 0;
    background: #1a1a2e;
    border: 1px solid rgba(0, 217, 255, 0.25);
    color: #cfeffd;
    padding: 5px 8px;
    font-family: 'Electrolize', sans-serif;
    font-size: 0.78rem;
    outline: none;
}

.console-dropdown-search-input:focus {
    border-color: #00d9ff;
}

.console-dropdown-search-input::placeholder {
    color: rgba(0, 217, 255, 0.4);
}

.console-dropdown-groups {
    max-height: 320px;
    overflow-y: auto;
    padding: 4px 0;
}

.console-dropdown-group + .console-dropdown-group {
    border-top: 1px solid rgba(0, 217, 255, 0.1);
}

.console-dropdown-grouphead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px 4px;
}

.console-dropdown-brand {
    color: #00ff41;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 6px rgba(0, 255, 65, 0.3);
}

.console-dropdown-selectall {
    background: transparent;
    border: none;
    padding: 0;
    color: #00d9ff;
    font-family: 'Electrolize', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.console-dropdown-selectall:hover {
    text-decoration: underline;
}

.console-dropdown-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    cursor: pointer;
    color: rgba(0, 217, 255, 0.85);
    font-size: 0.82rem;
    transition: background 0.15s ease;
}

.console-dropdown-option:hover {
    background: rgba(0, 217, 255, 0.08);
}

.console-dropdown-option.selected {
    background: rgba(0, 217, 255, 0.16);
    color: #00d9ff;
}

.console-dropdown-option input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: #00d9ff;
    cursor: pointer;
    flex: 0 0 auto;
}

.console-dropdown-optname {
    line-height: 1.2;
}

.console-dropdown-empty {
    padding: 14px 12px;
    color: rgba(0, 217, 255, 0.45);
    font-size: 0.78rem;
}

.console-dropdown-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.console-dropdown-clear {
    background: transparent;
    border: none;
    padding: 4px 2px;
    color: rgba(0, 217, 255, 0.75);
    font-family: 'Electrolize', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.console-dropdown-clear:hover {
    color: #00d9ff;
    text-decoration: underline;
}

.console-dropdown-apply {
    background: #00d9ff;
    border: 1px solid #00d9ff;
    color: #0a0e27;
    font-family: 'Electrolize', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 5px 16px;
    cursor: pointer;
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

.console-dropdown-apply:hover {
    background: #00ff41;
    border-color: #00ff41;
    box-shadow: 0 0 12px rgba(0, 255, 65, 0.45);
}

.console-dropdown-panel input:disabled,
.console-dropdown-panel button:disabled {
    opacity: 0.5;
    cursor: wait;
}

/* On a zero-result search only the unselected Type/Condition pills are
   disabled -- selected ones stay clickable so the narrowing filter can be
   removed. Dim + not-allowed signals "can't add this right now". This is a
   persistent state, not the transient "loading" (cursor: wait) used while
   console pills refetch. Kill the hover lift too. */
.type-pill:disabled,
.cond-pill:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.type-pill:disabled:hover,
.cond-pill:disabled:hover {
    transform: none;
}

.pagination-bottom {
    justify-content: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid #1a1a2e;
}

.page-btn[disabled] {
    opacity: 0.35;
    cursor: not-allowed;
}

.page-btn[disabled]:hover {
    background: #1a1a2e;
    color: #00d9ff;
    transform: none;
    box-shadow: none;
}

.console-sort-row {
    display: flex;
    align-items: center;
}

.console-sort-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Electrolize', sans-serif;
    color: #00d9ff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 6px rgba(0, 217, 255, 0.4);
}

/* Sort dropdown -- reuses the .console-dropdown look, sized for the shorter
   single-select option labels. */
.console-sort-dropdown .console-dropdown-trigger {
    min-width: 150px;
}

.console-sort-dropdown .console-dropdown-panel {
    width: 220px;
}

/* Sort options are <button>s (vs the console <label>s), so reset the native
   button chrome and inherit the shared .console-dropdown-option styling. */
.console-sort-option {
    width: 100%;
    background: transparent;
    border: none;
    font-family: 'Electrolize', sans-serif;
    text-align: left;
}

/* ── Combined Filters & Sort control ─────────────────────────────────────
   One dropdown housing Type, Condition, Consoles and Sort. Replaces the
   standalone consoles dropdown in the paging row. */
.filters-sort {
    position: relative;
    flex: 0 0 auto;
}

.filters-sort-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: #1a1a2e;
    border: 1px solid rgba(0, 217, 255, 0.4);
    color: #00d9ff;
    font-family: 'Electrolize', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.filters-sort-trigger:hover,
.filters-sort.open .filters-sort-trigger {
    border-color: #00d9ff;
    box-shadow: 0 0 12px rgba(0, 217, 255, 0.3);
}
.filters-sort-hamburger {
    font-size: 1rem;
    line-height: 1;
}
.filters-sort.open .console-dropdown-caret {
    transform: rotate(180deg);
}
.filters-sort-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 9px;
    background: #00d9ff;
    color: #04122a;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0;
}

.filters-sort-panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 60;
    width: 360px;
    max-width: 86vw;
    background: #12152b;
    border: 1px solid rgba(0, 217, 255, 0.4);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.6), 0 0 16px rgba(0, 217, 255, 0.18);
    display: flex;
    flex-direction: column;
}
.filters-sort-panel[hidden] {
    display: none;
}

.filters-sort-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid #1f2547;
}
.filters-sort-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00ff41;
    font-family: 'Electrolize', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 0 6px rgba(0, 255, 65, 0.35);
}
.filters-sort-clearall {
    background: transparent;
    border: none;
    color: #00d9ff;
    font-family: 'Electrolize', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
}
.filters-sort-clearall:hover {
    text-decoration: underline;
}

.filters-sort-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 14px;
}
.filters-sort-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.filters-sort-label {
    color: #8aa0c8;
    font-family: 'Electrolize', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Segmented Type / Condition control */
.filters-segment {
    display: flex;
    border: 1px solid #2a2f55;
    border-radius: 6px;
    overflow: hidden;
}
.filters-segment-btn {
    flex: 1 1 0;
    min-width: 0;
    padding: 9px 8px;
    background: #0f1330;
    border: none;
    border-left: 1px solid #2a2f55;
    color: #c7cbe6;
    font-family: 'Electrolize', sans-serif;
    font-size: 0.82rem;
    cursor: pointer;
    transition: background 0.12s ease, color 0.12s ease;
}
.filters-segment-btn:first-child {
    border-left: none;
}
.filters-segment-btn:hover:not(.active):not(:disabled) {
    background: #171b3d;
}
.filters-segment-btn.active {
    background: #e8ebff;
    color: #0b0e22;
    font-weight: 700;
}
.filters-segment-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Consoles + Sort dropdowns fill the section width inside the panel */
.filters-sort-section .console-filter-bar {
    display: block;
    width: 100%;
    padding: 0;
}
.filters-sort-section .console-dropdown {
    display: block;
    width: 100%;
}
.filters-sort-section .console-dropdown-trigger {
    width: 100%;
    min-width: 0;
}

.filters-sort-foot {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 12px 14px;
    border-top: 1px solid #1f2547;
}
.filters-sort-apply {
    padding: 9px 20px;
    background: #00d9ff;
    border: none;
    border-radius: 6px;
    color: #04122a;
    font-family: 'Electrolize', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.12s ease;
}
.filters-sort-apply:hover {
    filter: brightness(1.1);
}

#listings-container {
    transition: opacity 0.15s ease;
}

/* AI accuracy disclaimer at the bottom of the page (landing + results). Sits on
   the dark hero background, so it uses the page's muted text colour. */
.search-disclaimer {
    width: 100%;
    max-width: 760px;
    margin: 24px auto 8px;
    padding: 0 20px;
    font-family: 'Electrolize', sans-serif;
    font-size: 0.72rem;
    line-height: 1.5;
    letter-spacing: 0.3px;
    text-align: left;
    color: var(--console-muted);
}

/* On the landing, left-align it to the search box (645px box, like the stats
   line and browse link above). The results state keeps the centered base. */
.hero-section-landing .search-disclaimer {
    width: 645px;
    max-width: 100%;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-hero-section {
        padding: 0.7rem 1rem;
    }

    .hero-content {
        flex-direction: column;
        gap: 0.35rem;
        align-items: flex-start;
    }

    .hero-headline {
        font-size: 1.05rem;
    }

    .hero-subtext {
        font-size: 0.8rem;
    }

    .search-row {
        flex-direction: column;
        gap: 15px;
    }

    .search-wrapper {
        max-width: 100%;
    }

    .search-button {
        width: 100%;
    }

    .console-typecond-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .console-typecond-filters,
    #pagination-top {
        grid-column: 1;
    }

    .console-typecond-row .console-meta {
        grid-column: 1;
        text-align: center;
        justify-self: stretch;
    }

    .pagination {
        width: 100%;
        justify-content: center;
    }

    .console-meta {
        width: 100%;
        text-align: center;
    }

    .console-paging-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .console-paging-row .filters-sort,
    .console-paging-row #pagination-top,
    .console-paging-row .console-meta {
        grid-column: 1;
        justify-self: center;
        text-align: center;
    }

    .console-controls {
        flex-direction: column;
        gap: 10px;
    }

    .console-listing {
        grid-template-columns: 80px 1fr;
    }

    .console-listing-price {
        grid-column: 2 / -1;
        text-align: left;
        min-width: 0;
    }
}

/* Loading modal -- ported from /pricing (same look) so an in-flight
   filter/sort/pagination fetch shows a full-screen cancellable loader.
   Fixed overlay centered in the viewport; Escape or a backdrop click
   aborts the request (see search.blade.php). search/main.css has no
   --neon-*/--bg-card vars, so the literal hex values are inlined. */
.search-loader-overlay {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(2, 4, 16, 0.78);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: loaderOverlayIn 0.18s ease-out;
}

@keyframes loaderOverlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Loading indicator (CRT/terminal-style) */
.search-loader {
    position: relative;
    width: min(480px, 100%);
    padding: 24px 22px 20px;
    background: #0f0f1e;
    border: 2px solid #00d9ff;
    box-shadow:
        0 0 25px rgba(0, 217, 255, 0.4),
        inset 0 0 30px rgba(0, 217, 255, 0.06);
    text-align: center;
    overflow: hidden;
    font-family: 'Electrolize', sans-serif;
    animation: loaderModalIn 0.22s ease-out;
}

@keyframes loaderModalIn {
    from { opacity: 0; transform: translateY(8px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.search-loader::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 255, 65, 0.05) 0px,
        transparent 2px,
        transparent 4px,
        rgba(0, 255, 65, 0.05) 6px
    );
    pointer-events: none;
    z-index: 1;
}

.search-loader::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 255, 65, 0.06) 50%,
        transparent 100%
    );
    animation: loaderScan 3s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes loaderScan {
    0%   { transform: translateY(0%); }
    100% { transform: translateY(500%); }
}

.loader-text {
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #00ff41;
    text-shadow:
        0 0 10px rgba(0, 255, 65, 0.7),
        2px 2px 0 #ff00ff,
        4px 4px 0 rgba(0, 0, 0, 0.4);
    margin-bottom: 18px;
}

.loader-text::before {
    content: '> ';
    color: #ff00ff;
    text-shadow: 0 0 8px rgba(255, 0, 255, 0.6);
}

.loader-dots {
    display: inline-block;
    width: 1.6em;
    text-align: left;
    margin-left: 2px;
}

.loader-dots .dot {
    display: inline-block;
    opacity: 0;
    animation: loaderDot 1.2s infinite;
}
.loader-dots .dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dots .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes loaderDot {
    0%, 80%, 100% { opacity: 0; }
    40%           { opacity: 1; }
}

.loader-bar {
    position: relative;
    z-index: 2;
    height: 8px;
    background: rgba(10, 14, 39, 0.8);
    border: 1px solid rgba(0, 217, 255, 0.6);
    box-shadow: inset 0 0 8px rgba(0, 217, 255, 0.25);
    overflow: hidden;
}

.loader-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 35%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #00d9ff 25%,
        #00ff41 50%,
        #00d9ff 75%,
        transparent 100%
    );
    box-shadow:
        0 0 12px rgba(0, 217, 255, 0.8),
        0 0 18px rgba(0, 255, 65, 0.4);
    animation: loaderSweep 1.4s linear infinite;
}

@keyframes loaderSweep {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(385%); }
}

/* Pricing-data peek -- link under the price in each listing card. The
   card itself is an <a>; this is a span (valid inside <a>) whose click is
   stopped in JS so the eBay link doesn't fire. */
.listing-price-peek {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #00d9ff;
    border-bottom: 1px dotted rgba(0, 217, 255, 0.6);
    cursor: pointer;
    user-select: none;
}

.listing-price-peek:hover,
.listing-price-peek:focus-visible {
    color: #00ff41;
    border-bottom-color: #00ff41;
    outline: none;
}

/* Wrapper around each listing card + notify button. Relative so the button,
   which is a sibling of the card <a> (not a child -- keeps the hover/status
   URL pointing at /console rather than the eBay redirect), can pin to the
   card's bottom-right corner. */
.console-listing-wrap {
    position: relative;
}

/* "Setup Notification" pill, pinned to the bottom-right of each listing card. */
.listing-notify {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 1;
    padding: 3px 8px;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-align: center;
    text-decoration: none;
    color: #00d9ff;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.5);
    border-radius: 12px;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
}

.listing-notify:hover,
.listing-notify:focus-visible {
    color: #001018;
    background: #00ff41;
    border-color: #00ff41;
    outline: none;
}

/* Pricing popover -- same single-entry layout as /pricing, ported here
   (search/main.css has no --neon-*/--console-* parity for all of these,
   so literal hex is used) and scoped under .search-price-pop. */
.search-price-pop {
    position: fixed;
    z-index: 2147483600;
    width: 280px;
    max-width: calc(100vw - 24px);
    background: #0f0f1e;
    border: 1px solid #00d9ff;
    border-radius: 8px;
    box-shadow:
        0 0 25px rgba(0, 217, 255, 0.3),
        0 8px 30px rgba(0, 0, 0, 0.6);
    font-family: 'Electrolize', sans-serif;
    animation: pricePopIn 0.14s ease-out;
}

@keyframes pricePopIn {
    from { opacity: 0; transform: translateY(4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.search-price-pop .pop-state {
    padding: 22px 16px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(0, 217, 255, 0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.search-price-pop .game-info {
    padding: 12px;
}

.search-price-pop .game-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.25;
    color: #00d9ff;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.35);
}
.search-price-pop .game-title-link {
    color: inherit;
    text-decoration: none;
}
.search-price-pop .game-title-link:hover {
    text-decoration: underline;
}

.search-price-pop .console-rarity-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.search-price-pop .console-badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    letter-spacing: 1px;
    flex-shrink: 0;
}

.search-price-pop .rarity-box {
    padding: 3px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.search-price-pop .rarity-common {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    color: #fff;
    box-shadow: 0 0 10px rgba(107, 114, 128, 0.5);
}
.search-price-pop .rarity-uncommon {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}
.search-price-pop .rarity-rare {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}
.search-price-pop .rarity-in-ranking {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.search-price-pop .prices-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.search-price-pop .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid;
}

.search-price-pop .price-row.loose {
    background: rgba(0, 255, 65, 0.08);
    border-color: rgba(0, 255, 65, 0.45);
}
.search-price-pop .price-row.cib {
    background: rgba(0, 217, 255, 0.08);
    border-color: rgba(0, 217, 255, 0.45);
}
.search-price-pop .price-row.new {
    background: rgba(255, 199, 0, 0.08);
    border-color: rgba(255, 199, 0, 0.45);
}

.search-price-pop .price-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.search-price-pop .price-row.loose .price-label { color: #00ff41; }
.search-price-pop .price-row.cib .price-label   { color: #00d9ff; }
.search-price-pop .price-row.new .price-label   { color: #ffc700; }

.search-price-pop .price-value {
    font-size: 1rem;
    font-weight: 700;
}
.search-price-pop .price-row.loose .price-value {
    color: #00ff41;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.6);
}
.search-price-pop .price-row.cib .price-value {
    color: #00d9ff;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.6);
}
.search-price-pop .price-row.new .price-value {
    color: #ffc700;
    text-shadow: 0 0 10px rgba(255, 199, 0, 0.6);
}

/* ---- Landing: stats bar + browse-by-console ------------------------- */
.search-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-start;
    gap: 6px 11px;
    /* 645px = input (500) + gap (15) + button (130); auto margins center this
       block to match the search row, so flex-start aligns stats to the input's
       left edge. */
    width: 645px;
    max-width: 100%;
    margin: 10px auto 0;
    font-family: 'Electrolize', sans-serif;
}
.search-stat {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
}
.search-stat-val {
    font-size: 0.78rem;
    font-weight: 700;
    color: #00d9ff;
    text-shadow: 0 0 12px rgba(0, 217, 255, 0.3);
}
.search-stat-label {
    font-size: 0.58rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(184, 184, 200, 0.6);
}
.search-stat-sep {
    color: rgba(0, 217, 255, 0.35);
}

/* Landing: link out to the dedicated /browse page */
.search-browse-link {
    width: 645px;
    max-width: 100%;
    margin: 14px auto 0;
}
.search-browse-link a {
    font-family: 'Electrolize', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #00d9ff;
    text-decoration: none;
    transition: color 0.2s ease, text-shadow 0.2s ease;
}
.search-browse-link a:hover {
    color: #00ff41;
    text-shadow: 0 0 10px rgba(0, 255, 65, 0.35);
}

/* Browse-by-console results heading */
.search-browse-heading {
    font-family: 'Electrolize', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #e8f6ff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 16px;
}

/* ---- /browse page --------------------------------------------------
   Reuses .hero-section (gradient bg) + .container for the shared dashboard
   shell; cards mirror the /pricing .game-card aesthetic (translucent dark
   surface, cyan border, cyan/green neon hover). */

/* Scanline overlay, matching the /pricing section background. */
.browse-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 217, 255, 0.025) 0px,
        transparent 2px,
        transparent 4px,
        rgba(0, 217, 255, 0.025) 6px
    );
    pointer-events: none;
    z-index: 0;
}
.browse-page .container {
    position: relative;
    z-index: 1;
}
.browse-heading {
    font-family: 'Electrolize', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    color: #e8f6ff;
    margin: 24px 0 6px;
}
.browse-sub {
    font-family: 'Electrolize', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    text-align: center;
    color: var(--console-muted);
    margin: 0 0 32px;
}
.browse-brand-heading {
    font-family: 'Electrolize', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--console-muted);
    max-width: 1100px;
    margin: 28px auto 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.15);
}
.browse-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}
.browse-card {
    font-family: 'Electrolize', sans-serif;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--console-border);
    border-radius: 8px;
    background: var(--console-card);
    overflow: hidden;
    text-decoration: none;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}
.browse-card:hover {
    border-color: var(--console-cyan);
    background: rgba(0, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 0 18px rgba(0, 255, 65, 0.18);
}
/* Deep-navy plate matches the dark image areas on /lots, /deals and the
   /search listing thumbs, keeping the cards on the same neon palette. */
.browse-card-art {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 16px;
    background: #0a0e27;
}
.browse-card-img {
    max-width: 100%;
    max-height: 88px;
    object-fit: contain;
}
.browse-card-fallback {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    color: #e8f6ff;
}
.browse-card-name {
    padding: 12px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    color: var(--console-text);
    transition: color 0.15s ease;
}
.browse-card:hover .browse-card-name {
    color: #fff;
}