@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Paytone+One&display=swap');

:root {
    /* Border radius standards */
    --round_xlg: 14px;
    --round_lg: 12px;
    --round_med: 8px;
    --round_sm: 6px;

    /* Z-index standards */
    /* Higher number means more forward layer */
    --z_context_menu: 100;
    --z_autocomplete: 75;
    --z_nav: 50;
    --z_censor: 25;

    /* Button interaction effects */
    --press: scale(0.97);

    /* Box shadow standards */
    --bs_emboss:       0 2px 6px var(--void40), inset 0 1px 2px rgba(255,255,255,0.05);
    --bs_deboss: inset 0 2px 6px var(--void40),       0 1px 2px rgba(255,255,255,0.05);

    /* Nav height */
    --mobile_status_height: 55px;
    --desktop-nav-height: 65px;
}

* {
    box-sizing: border-box;
}

table {
    border-collapse: collapse;
    align-self: flex-start;
    max-width: 800px;
}

th {
    border: none;
    background: var(--primary);
    color: var(--bg);
    text-align: left;
    padding: 4px 8px;
    font-size: 14px;
}

td {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 5px 8px;
    border-left: none;
    border-right: none;
    font-size: 14px;
}

img {
    border-radius: var(--round_med);
}

input {
    align-self: stretch;
    max-width: 500px;
    background: var(--void);
    border-radius: var(--round_lg);
    padding: 15px;
    border: 3px solid transparent;
    outline: none;
    font-size: 18px;
    color: var(--text);
} input:focus {
    border: 3px solid var(--accent);
}

textarea {
    align-self: stretch;
    max-width: 500px;
    background: var(--void);
    border-radius: var(--round_lg);
    padding: 15px;
    border: 3px solid transparent;
    outline: none;
    font-size: 18px;
    color: var(--text);
    resize: none;
    width: 100%;
} textarea:focus {
    border: 3px solid var(--accent);
}

a, a:visited {
    text-decoration: none;
}

li a, p a, tr a, h2 a {
    color: var(--link);
    text-decoration-line: underline;
    text-decoration-thickness: 3px;
    text-underline-position: under;
    line-height: 2;
} li a:hover, p a:hover, tr a:hover, h2 a:hover {
    background: var(--primary10);
} li a:active, p a:active, tr a:active, h2 a:active {
    background: transparent;
}

.mod-action {
    border-radius: var(--round_sm);
    padding: 4px 6px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Paytone One', sans-serif;
    color: var(--text);
    cursor: default;
    font-weight: normal !important;
}

h1 {
    font-size: 30px;
    margin: 0;
    letter-spacing: 0.1px;
    font-weight: normal !important;
}

p, li, tr, label {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    margin: 0;
}

input, textarea {
    font-family: 'Inter', sans-serif;
}

img {
    user-select: none;
}

html, body {
    min-height: 100vh;
    width: 100%;
    margin: 0;
    scrollbar-width: none;
    background: var(--bg);
}

all {
    width: 100%;
    height: 100%;
    position: relative;
    margin-top: var(--mobile_status_height);
}
    /* desktop */
    @media screen and (min-width: 1001px) {
        all {
            display: flex;
            justify-content: center;
        }
    }
    /* desktop */
    @media screen and (min-width: 550px) {
        all {
            margin-top: var(--desktop-nav-height);
        }
    }
    /* mobile */
    @media screen and (max-width: 1001px) {
        all {
            display: flex;
            justify-content: center;
        }
    }

main {
    display: flex;
    flex-flow: column nowrap;
    flex-grow: 1;
    position: relative;
    overflow: hidden;
    max-width: 1500px;
}
    /* desktop */
    @media screen and (min-width: 1001px) {
        main {
            padding: 40px 50px 250px 50px;
        }
    }
    /* mobile */
    @media screen and (max-width: 1001px) {
        main {
            padding: 40px 20px 250px 20px;
        }
    }
    /* shrunken article width */
    main.main_article {
        max-width: 1000px;
    }

/* Nav bar (desktop) */
nav#nav_desktop {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    justify-content: center;
    padding: 8px 20px;
    background: var(--bg80);
    backdrop-filter: blur(20px);
    z-index: var(--z_nav);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    transition: 0.2s ease-in-out;
    max-height: var(--desktop-nav-height);
    min-height: var(--desktop-nav-height);
} nav#nav_desktop.nav-show {
    /* Slide nav into view */
    transform: translateY(0);
    box-shadow: 0 5px 20px var(--void40);
} nav#nav_desktop.nav-hide {
    /* Slide nav out of view */
    transform: translateY(-101%);
    box-shadow: none;
}
    @media screen and (min-width: 550px) {
        nav#nav_desktop {
            display: flex;
        }
    }


/* Main navbar content container */
innernav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    max-width: 1400px;
    flex-grow: 1;
    /* Nav bar will scroll if too much content */
    overflow-x: auto;
    scrollbar-width: none;
}
/* Navbar shelves */
innernav > div {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav_burger {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 9px 15px;
    border-radius: var(--round_med);
    cursor: pointer;
    border: none;
    background: var(--void80);
    font-size: 18px;
    color: var(--text80);
    align-self: flex-start;
} .nav_burger:hover {
    background: var(--secondary10);
    color: var(--text);
} .nav_burger:active {
    background: var(--void80);
    color: var(--text80);
    transform: var(--press);
}

.logo {
    cursor: pointer;
    color: var(--text90);
    margin: 0 5px;
    font-family: 'Paytone One', sans-serif;
    font-size: 28px;
    white-space: nowrap;
    margin-top: -6px;
    user-select: none;
} .logo:hover {
    color: var(--text);
} .logo:active {
    color: var(--text90);
    transform: var(--press);
}
    /* mobile */
    @media screen and (max-width: 701px) {
        .logo {
            display: none !important;
        }
    }

/* Mock search button */
.mock_search > * {
    user-select: none;
    cursor: pointer !important;
} .mock_search > div {
    position: relative;
    display: flex;
    opacity: 0.9;
} .mock_search > div:hover {
    opacity: 1;
} .mock_search > div:active {
    opacity: 0.9;
    transform: var(--press);
}
    /* HIDE on tablet and mobile */
    @media screen and (max-width: 1001px) {
        .mock_search {
            display: none !important;
        }
    }

/* Moch search magnifying glass icon */
.mock_search > div > i {
    position: absolute;
    padding-left: 18px;
    left: 0;
    top: 0;
    bottom: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    font-size: 20px;
    color: var(--text60);
}

/* "Search for..." text */
.mock_search > div > p {
    flex-grow: 1;
    background: var(--void);
    border-radius: var(--round_lg);
    padding: 12px 12px 12px 50px;
    border: 3px solid transparent;
    font-size: 16px;
    color: var(--text55);
    white-space: nowrap;
    width: 284.8px;
    overflow: hidden;
}

.nav_pill {
    display: flex;
    padding: 12px 14px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    opacity: 0.75;
    border-radius: var(--round_lg);
} .nav_pill:hover {
    background: var(--secondary5);
    opacity: 1;
} .nav_pill:active {
    background: transparent;
    opacity: 0.75;
    transform: var(--press);
}

/* Nav pill icon */
.nav_pill i {
    color: var(--text);
    font-size: 22px;
    /* This is needed to center the icons because unfortunately, FA is dumb and their icons are NOT all fixed width like they say */
    display: flex;
    justify-content: center;
    width: 22px !important;
}

/* Nav pill image (e.g. profile pic) */
.nav_pill img {
    border-radius: 50%;
    /* Cover fills the image ("cuts out" square aspect ratio) */
    object-fit: cover;
    object-position: 50% 50%;
    width: 32px;
    height: 32px;
}

/* desktop */
@media screen and (min-width: 1001px) {
    /* HIDE search and create pills */
    .search_pill, .create_pill {
        display: none !important;
    }
}

/* tablet */
@media screen and (max-width: 1001px) {
    /* SHOW search and create pills */
    .search_pill, .create_pill {
        display: flex !important;
    }
    /* HIDE fat create */
    .create_fat {
        display: none !important;
    }
}

.profile_pill {
    padding: 7px 9px !important;
}

.nav_fat {
    display: flex;
    gap: 8px;
    padding: 12px 15px;
    background: var(--secondary30);
    color: var(--text);
    cursor: pointer;
    border: none;
    border-radius: var(--round_lg);
    justify-content: space-between;
    align-items: center;
} .nav_fat:hover {
    background: var(--secondary40);
} .nav_fat:active {
    background: var(--secondary30);
    transform: var(--press);
} .nav_fat > * {
    user-select: none;
}

.nav_fat i {
    font-size: 22px;
    color: inherit;
    /* This is needed to center the icons because unfortunately, FA is dumb and their icons are NOT all fixed width like they say */
    display: flex;
    justify-content: center;
    width: 22px !important;
}

.nav_fat p {
    font-size: 16px;
    font-weight: 500;
    color: inherit;
}

/* Adjust the '+' icon (FA is dumb) */
.create_fat i {
    margin-top: -1px;
}

.user-hero {
    position: absolute;
    /* Cover fills the image ("cuts out" aspect ratio) */
    object-fit: cover;
    object-position: 50% 50%;
    -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
    max-height: 450px;
    min-height: 200px;
    width: 100%;
    opacity: 0.7;
    border-radius: 0 !important;
}

.title-spotlight {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    z-index: 5;
}
    .with-banner {
        margin-top: 140px;
    }
    @media screen and (max-width: 550px) {
        /* shrink poster on small screens */
        .title-spotlight {
            flex-flow: row wrap !important;
        }
        .with-banner {
            margin-top: 80px;
        }
    }

.title-spotlight-info {
    display: flex;
    flex-flow: column nowrap;
    gap: 5px;
    cursor: default;
    /* flex-grow: 1; */
}

.title-spotlight-info h1 {
    margin-bottom: 5px;
}
    @media screen and (max-width: 550px) {
        .title-spotlight-info h1 {
            font-size: 30px;
        }
        
        .article-top h1 {
            font-size: 30px;
        }
    }

.title-spotlight .cert {
    padding: 3px 7px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 3px;
    margin-right: 6px;
    font-size: 14px;
}

.title-spotlight .title-card-score {
    margin-bottom: 10px;
}
    .title-spotlight .title-card-score i {
        font-size: 72px;
        width: 72px !important;
        height: 72px !important;
    }
    .title-spotlight .title-card-score p {
        font-size: 28px !important;
        cursor: default !important;
    }

.poster-showcase {
    width: 140px;
    aspect-ratio: 2 / 3;
    /* Cover fills the image ("cuts out" aspect ratio) */
    object-fit: cover;
    object-position: 50% 50%;
    box-shadow: var(--bs_emboss);
    align-self: flex-start;
    border-radius: var(--round_lg);
} .poster-showcase.square {
    height: 140px !important;
    aspect-ratio: 1 / 1 !important;
}
    @media screen and (max-width: 550px) {
        /* shrink poster on small screens */
        .poster-showcase {
            width: 75px !important;
        } .poster-showcase.square {
            height: 75px !important;
        }
    }

.pfp_showcase {
    height: 150px;
    aspect-ratio: 1 / 1;
    /* Cover fills the image ("cuts out" aspect ratio) */
    object-fit: cover;
    object-position: 50% 50%;
    box-shadow: var(--bs_emboss);
    align-self: flex-start;
    border-radius: 50% !important;
}
    @media screen and (max-width: 550px) {
        /* shrink poster on small screens */
        .pfp_showcase {
            height: 75px !important;
        }
    }

.subject_actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

gap {
    padding: 20px 0;
}

.article-hero {
    flex-grow: 1;
    aspect-ratio: 3 / 1;
    /* Cover fills the image ("cuts out" aspect ratio) */
    object-fit: cover;
    object-position: 50% 50%;
    margin-top: 40px;
    border-radius: var(--round_lg);
    box-shadow: var(--bs_emboss);
}

.context-menu {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-flow: column nowrap;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--round_xlg);
    padding: 8px;
    z-index: var(--z_context_menu);
    overflow-y: auto;
    max-width: min(400px, 100vw);
    max-height: calc(85vh);
    background: var(--void);
    transition: opacity .2s;
    gap: 2px;
    box-shadow: 0 5px 20px var(--void40);
    scrollbar-width: none;
    min-width: min(200px, 80vw);
} .context-menu.hidden {
    opacity: 0;
    pointer-events: none;
} .context-menu:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
    transition: opacity .2s;
}

.context-menu hr {
    width: 100%;
    border: none;
    background: rgba(255,255,255,0.1);
    height: 1px;
    margin: 8px 0px;
}

.context-menu p.status {
    margin: 0;
    padding: 20px;
    opacity: 0.6;
    cursor: default;
}

.context-menu a {
    display: flex;
    flex-flow: row-reverse;
    gap: 30px;
    padding: 15px;
    align-items: center;
    cursor: pointer;
    user-select: none;
    opacity: 0.8;
    border-radius: var(--round_lg);
    background: transparent;
    border: none;
    color: var(--text);
} .context-menu a:hover {
    background: var(--secondary5);
    opacity: 1;
} .context-menu a:active {
    background: transparent;
    opacity: 0.8;
    transform: var(--press);
} .context-menu a i {
    font-size: 20px;
    display: flex;
    justify-content: center;
    min-width: 1.25em;
    max-width: 1.25em;
    color: inherit;
    opacity: 0.8;
} .context-menu a .context_menu_img_icon {
    border-radius: 50%;
    /* Cover fills the image ("cuts out" square aspect ratio) */
    object-fit: cover;
    object-position: 50% 50%;
    width: 25px;
    height: 25px;
} .context-menu a p {
    font-family: 'Inter', sans-serif;
    color: inherit;
    margin: 0;
    font-weight: 500;
    font-size: 16px;
    align-self: flex-start;
    flex-grow: 1;
} .context-menu a.danger {
    color: var(--danger) !important;
}

/* Cards */
.cartridge-grid {
    display: grid;

    /* grid-template-columns = repeat(# of cols, col size) */
    /* repeat = set this for every column */
    /* auto-fill = Create as many cols as possible */
    /* min(400px,100%) = minimum col width: 400px or screen width */
    /* 1fr = max col width: 1/3 of remaining space */
    grid-template-columns: repeat(auto-fill, minmax(min(150px, 100%), 1fr));

    gap: 10px;
    margin-top: 20px;
}


.card-grid {
    display: grid;

    /* grid-template-columns = repeat(# of cols, col size) */
    /* repeat = set this for every column */
    /* auto-fill = Create as many cols as possible */
    /* min(400px,100%) = minimum col width: 400px or screen width */
    /* 1fr = max col width: 1/3 of remaining space */
    grid-template-columns: repeat(auto-fill, minmax(min(400px, 100%), 1fr));

    gap: 20px;
    margin-top: 20px;
} .card-masonry {
    margin-top: 20px;
    width: 100%;
    /* Cancel out last grid item's margin-bottom */
    margin-bottom: -20px;
}
    .card-grid.col1 {
        grid-template-columns: 1fr !important;
    }

.cartridge {
    display: flex;
    flex-flow: column;
    background: var(--secondary10);
    padding: 10px;
    border-radius: var(--round_lg);
    opacity: 0.9;
    box-shadow: var(--bs_emboss);
} .cartridge:hover {
    background: var(--secondary20);
    opacity: 1;
} .cartridge:active {
    background: var(--secondary10);
    opacity: 0.9;
    transform: var(--press);
} .cartridge > img {
    border-radius: var(--round_med);
    /* Cover fills the image ("cuts out" aspect ratio) */
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    aspect-ratio: 1/1;
} .cartridge .name {
    font-weight: 500;
    font-size: 18px;
    margin-top: 5px;
} .cartridge .subtitle {
    font-weight: 300px;
    font-size: 15px;
    opacity: 0.8;
    margin-top: 2px;
}

.title-card {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    border-radius: var(--round_lg);
    background: var(--secondary10);
    overflow: hidden;
    opacity: 0.9;
    padding: 12px;
    box-shadow: var(--bs_emboss);
} .title-card:hover:not(:has(.kebab:hover)):not(.form-specimen) {
    /* When hovering a title card (but not its kebab) */
    background: var(--secondary20);
    opacity: 1;
} .title-card:active:not(:has(.kebab:active)):not(.form-specimen) {
    /* When pressing a title card (but not its kebab) */
    background: var(--secondary10);
    opacity: 0.9;
    transform: var(--press);
} .title-card:not(.form-specimen) > * {
    cursor: pointer !important;
    user-select: none;
}

.kebab.regular-kebab {
    padding: 10px 15px;
    border-radius: var(--round_med);
    color: var(--text70);
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer !important;
} .kebab.regular-kebab:hover {
    background: var(--secondary20);
} .kebab.regular-kebab:active {
    background: transparent;
    transform: var(--press);
}

.title-card .kebab.regular-kebab {
    margin-left: -4px;
    align-self: center;
}

.title-card img.poster {
    border-radius: var(--round_med);
    /* Cover fills the image ("cuts out" aspect ratio) */
    object-fit: cover;
    object-position: 50% 50%;
    height: 63px;
    width: 42px;
    align-self: center;
} .title-card img.poster.square {
    width: 42px !important;
    height: 42px !important;
} .title-card img.poster.wide {
    /* Hero image aspect ratio */
    aspect-ratio: 3 / 1;
    /* Cover fills the image ("cuts out" aspect ratio) */
    object-fit: cover;
    object-position: 50% 50%;
    height: 42px !important;
    width: auto !important;
}
    @media screen and (max-width: 550px) {
        /* Shrink posters on small screens */
        .title-card img.poster {
            height: 60px !important;
            width: 40px !important;
        } .title-card img.poster.square {
            height: 40px !important;
            width: 40px !important;
        } .title-card img.poster.wide {
            height: 40px !important;
        }
    }

.poster-preview {
    border-radius: var(--round_med);
    /* Cover fills the image ("cuts out" aspect ratio) */
    object-fit: cover;
    object-position: 50% 50%;
    height: 78px;
    width: 52px;
    align-self: center;
} .poster-preview.square {
    width: 52px !important;
    height: 52px !important;
} .poster-preview.wide {
    /* Hero image aspect ratio */
    aspect-ratio: 3 / 1;
    /* Cover fills the image ("cuts out" aspect ratio) */
    object-fit: cover;
    object-position: 50% 50%;
    border: 1px solid rgba(255,255,255,0.1);
    height: 52px !important;
    width: auto !important;
} .poster-preview.circle {
    /* Hero image aspect ratio */
    aspect-ratio: 1 / 1;
    /* Cover fills the image ("cuts out" aspect ratio) */
    object-fit: cover;
    object-position: 50% 50%;
    border: 1px solid rgba(255,255,255,0.1);
    height: 52px !important;
    width: 52px !important;
    border-radius: 50% !important;
}

.title-card-details {
    display: flex;
    flex-flow: column nowrap;
    gap: 5px;
    flex-grow: 1;
    justify-content: center;
    overflow: hidden;
}
    .title-card-details .name {
        font-size: 22px;
        text-overflow: ellipsis;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
    }
    .title-card-details .subtitle {
        font-size: 16px;
        white-space: nowrap;
        font-weight: 300;
    }

.title-card-score {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
    .title-card-score i {
        font-size: 48px;
        -webkit-text-stroke: 5px black;
        paint-order: stroke fill;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 48px !important;
        height: 48px !important;
    }
    .title-card-score p {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        font-weight: 1000;
        font-size: 19px;
        -webkit-text-stroke: 5px black;
        paint-order: stroke fill;
        white-space: nowrap;
    }

/* Colors for different score icons */
.score-icon-chc {
    color: hsla(40, 100%, 69%, 0.7);
}
.score-icon-hot {
    /* color: hsla(354, 100%, 78%, 0.7); */
    color: hsla(8.4, 100%, 70.6%, 0.7);
}
.score-icon-warm {
    color: var(--accent70);
}
.score-icon-mid {
    color: hsla(282, 100%, 82%, 0.7);
}
.score-icon-cold {
    color: hsla(218, 100%, 85%, 0.7);
}
.score-icon-unranked {
    color: hsla(0, 0%, 74%, 0.7);
    font-size: 24px !important;
    opacity: 0.4;
}


/* Review cards */
.review-card {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    border-radius: var(--round_lg);
    background: var(--void50);
    overflow: hidden;
    padding: 20px;
    box-shadow: var(--bs_deboss);

    /* Masonry */
    /* 2 columns (50% minus gutter) */
    width: calc(50% - 10px);
    margin-bottom: 20px;
}
    @media screen and (max-width: 1220px) {
        /* 1 column on small screens */
        .review-card {
            width: 100%;
        }
    } @media screen and (max-width: 550px) {
        /* shrink padding on small screens */
        .review-card {
            padding: 16px !important;
            gap: 16px !important;
        }
    }

.review-card-left {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
}
    .review-card img.poster {
        border-radius: var(--round_med);
        /* Cover fills the image ("cuts out" aspect ratio) */
        object-fit: cover;
        object-position: 50% 50%;
        width: calc(52px*7/4);
        align-self: center;
    } .review-card img.poster.square {
        height: calc(52px*7/4);
    } .review-card img.poster:not(.square) {
        height: calc(78px*7/4);
    }
        @media screen and (max-width: 550px) {
            /* shrink poster on small screens */
            .review-card img.poster {
                width: calc(60px*3/4) !important;
            } .review-card img.poster.square {
                height: calc(60px*3/4) !important;
            } .review-card img.poster:not(.square) {
                height: calc(90px*3/4) !important;
            }
        }

.review-card-right {
    flex-grow: 1;
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
}

.review-card-right .name-link {
    font-size: 24px;
    font-weight: 700;
} @media screen and (max-width: 550px) {
    /* shrink text on small screens */
    .review-card-right .name-link {
        font-size: 22px;
    }
}
    .review-card-right .name-link .subprint {
        font-size: 16px;
        font-weight: 300;
        opacity: 0.8;
        white-space: nowrap;
    }

.review-card-details {
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
    align-items: center;
    margin-top: -8px;
}

.mini-profile-card {
    display: flex;
    gap: 10px;
    align-items: center;
}
    .mini-profile-card img {
        border-radius: 50%;
        /* Cover fills the image ("cuts out" aspect ratio) */
        object-fit: cover;
        object-position: 50% 50%;
        width: 30px;
        height: 30px;
    }
    .mini-profile-card p {
        margin: 0;
        font-weight: 500;
    }

.review-card .score {
    font-weight: 1000;
    font-size: 19px;
    -webkit-text-stroke: 4px black;
    paint-order: stroke fill;
    padding: 5px;
    border: 3px solid black;
    border-radius: var(--round_med);
    cursor: default !important;
    min-width: 40px;
    text-align: center;
}

.review-card .content {
    font-size: 17px;
    cursor: default !important;
    width: 100%;
    margin-top: 5px;
    color: var(--text90);
}
    .review-card .content .subprint {
        font-size: 15px;
        opacity: 0.5;
        white-space: nowrap;
    }
        @media screen and (max-width: 550px) {
            /* shrink review text on small screens */
            .review-card .content {
                font-size: 15.2px;
            }
        }

.bg-chc {
    background: hsla(40, 100%, 69%, 0.7);
}
.bg-hot {
    /* background: hsla(354, 100%, 78%, 0.7); */
    background: hsla(8.4, 100%, 70.6%, 0.7);
}
.bg-warm {
    background: var(--accent70);
}
.bg-mid {
    background: hsla(282, 100%, 82%, 0.7);
}
.bg-cold {
    background: hsla(218, 100%, 85%, 0.7);
}
.bg-unranked {
    background: hsla(0, 0%, 74%, 0.7);
}

.article-card {
    display: flex;
    flex-flow: column nowrap;
    gap: 16px;
    border-radius: var(--round_lg);
    background: var(--secondary10);
    cursor: pointer !important;
    overflow: hidden;
    opacity: 0.9;
    padding: 12px;
    box-shadow: var(--bs_emboss);
    width: 100%;
    margin-bottom: 20px;
} .article-card:hover:not(:has(.kebab:hover)) {
    /* When hovering a card (but not its kebab) */
    background: var(--secondary20);
    opacity: 1;
} .article-card:active:not(:has(.kebab:active)) {
    /* When pressing a card (but not its kebab) */
    background: var(--secondary10);
    opacity: 0.9;
    transform: var(--press);
} .article-card > * {
    cursor: pointer !important;
    user-select: none;
}
    @media screen and (min-width: 860px) {
        .article-card {
            width: calc(calc(100%/2) - calc(20px/2));
        }
    }
    @media screen and (min-width: 1340px) {
        .article-card:not(.col2-max) {
            width: calc(calc(100%/3) - calc(40px/3));
        }
    }

.article-card .banner {
    aspect-ratio: 3 / 1;
    /* Cover fills the image ("cuts out" aspect ratio) */
    object-fit: cover;
    object-position: 50% 50%;
}

.article-card-bottom {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.article-card-bottom .left {
    display: flex;
    flex-flow: column nowrap;
    gap: 5px;
    flex-grow: 1;
    overflow: hidden;
}
    .article-card .name {
        font-size: 22px;
        font-weight: 600;
        overflow: hidden;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.user-card {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    border-radius: var(--round_lg);
    background: var(--secondary10);
    cursor: pointer !important;
    overflow: hidden;
    opacity: 0.9;
    padding: 12px;
    box-shadow: var(--bs_emboss);
} .user-card:hover:not(:has(.kebab:hover)) {
    /* When hovering a user card (but not its kebab) */
    background: var(--secondary20);
    opacity: 1;
} .user-card:active:not(:has(.kebab:active)) {
    /* When pressing a user card (but not its kebab) */
    background: var(--secondary10);
    opacity: 0.9;
    transform: var(--press);
} .user-card > * {
    cursor: pointer !important;
    user-select: none;
}

.user-card .pfp {
    border-radius: 50%;
    /* Cover fills the image ("cuts out" aspect ratio) */
    object-fit: cover;
    object-position: 50% 50%;
    width: 52px;
    height: 52px;
}

.user-card-details {
    display: flex;
    flex-flow: column nowrap;
    gap: 5px;
    flex-grow: 1;
    justify-content: center;
    overflow: hidden;
}
    .user-card-details .name {
        font-size: 22px;
        text-overflow: ellipsis;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
    }
    .user-card-details .subtitle {
        font-size: 16px;
        white-space: nowrap;
        font-weight: 300;
    }

.autocomplete {
    position: relative;
    max-width: 500px;
    margin-bottom: 500px;
}
    .wide-autocomplete {
        max-width: min(100%,800px) !important;
        min-width: min(100%,800px) !important;
        align-self: center;
        /* margin-top: 100px; */
    }
    .wide-autocomplete input {
        max-width: none !important;
    }

.input-with-icon {
    position: relative;
    display: flex;
    color: var(--text);
}
    .input-with-icon input {
        padding: 15px 15px 15px 60px;
        width: 100%;
    }
    .input-hint input {
        /* Inputs with text in the margin instead of icon */
        padding: 15px 15px 15px 95px !important;
    }
    .input-with-icon > i, .input-with-icon p {
        position: absolute;
        display: flex;
        align-items: center;
        padding-left: 20px;
        left: 0;
        top: 0;
        bottom: 0;
        pointer-events: none !important;
        color: var(--text50);
        font-size: 22px;
    }
    .input-with-icon p {
        font-size: 18px;
    }

.clear-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--void);
    border: none;
    cursor: pointer;
    display: none;
    padding: 10px;
    opacity: 0.5;
    border-radius: var(--round_med);
} .clear-btn:hover {
    opacity: 1;
    background: var(--danger);
} .clear-btn:active {
    opacity: 0.5;
    background: transparent;
}
    .clear-btn i {
        color: var(--text);
        max-width: 20px;
        min-width: 20px;
        max-height: 20px;
        min-height: 20px;
        font-size: 20px;
    }

#searchbar:not(:placeholder-shown) + .clear-icon {
    display: block;
}

.autocomplete-list {
    margin-top: 10px;
    background: var(--void);
    border-radius: var(--round_lg);
    display: flex;
    flex-flow: column nowrap;
    overflow: scroll;
    max-height: 450px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: var(--z_autocomplete);
}
    .autocomplete-list a {
        color: var(--text);
        padding: 20px 25px;
        opacity: 0.6;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
    }
        .autocomplete-list a:hover {
            background: var(--secondary5);
            opacity: 1;
        }
        .autocomplete-list a:active {
            background: transparent;
            opacity: 0.6;
        }

.no-results {
    align-self: center;
    padding: 50px 20px;
    cursor: default !important;
    opacity: 0.6;
}

main > p {
    cursor: default;
}

.create-option {
    display: flex;
    gap: 30px;
    padding: 18px 22px;
    cursor: pointer !important;
    border-radius: var(--round_lg);
    background: var(--secondary10);
    overflow: hidden;
    opacity: 0.9;
    margin-bottom: 15px;
    align-items: center;
    color: var(--text);
    max-width: 900px;
    box-shadow: var(--bs_emboss);
} .create-option:hover {
    background: var(--secondary20);
    opacity: 1;
} .create-option:active {
    background: var(--secondary10);
    opacity: 0.9;
    transform: var(--press);
} .create-option > * {
    cursor: pointer !important;
    user-select: none;
}

.create-option .details {
    display: flex;
    flex-flow: column nowrap;
    gap: 5px;
    flex-grow: 1;
    justify-content: center;
    overflow: hidden;
}
    .create-option .details .name {
        font-size: 22px;
        font-weight: 600;
    }
    .create-option .details .subtitle {
        font-size: 16px;
        font-weight: 300;
    }
    .create-option > i {
        font-size: 36px;
        display: flex;
        justify-content: center;
        min-width: 1.25em;
        max-width: 1.25em;
        color: inherit;
        -webkit-text-stroke: 6px black;
        paint-order: stroke fill;
    }

.reviewing-as {
    opacity: 0.8;
    margin-bottom: 15px;
    display: flex;
    gap: 6px;
}
    .reviewing-as img {
        border-radius: 50%;
        /* Cover fills the image ("cuts out" aspect ratio) */
        object-fit: cover;
        object-position: 50% 50%;
        width: 20px;
        height: 20px;
    }

.setting {
    margin-top: 30px;
}

.setting > p {
    cursor: default;
    line-height: 1.4;
    margin-bottom: 10px;
} .setting > p > * {
    line-height: inherit;
}

.form-specimen {
    max-width: 500px;
    background: var(--void50) !important;
    box-shadow: var(--bs_deboss) !important;
}
    .form-specimen > * {
        cursor: default !important;
    }

.check-with-label {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
}
    .check-with-label > * {
        cursor: pointer !important;
    }

input[type="checkbox"] {
    background: var(--void);
    /* margin: 0; */

    /* Hide the unstyled checkbox */
    appearance: none;
    -webkit-appearance: none;

    display: flex;
    align-content: center;
    justify-content: center;
    padding: 5px;
    border: none;
    border-radius: var(--round_sm);
    cursor: pointer;
    align-self: center;
}
    input[type="checkbox"]:checked {
        background: var(--accent);
    }
    input[type="checkbox"]::before {
        content: '';
        width: 15px;
        height: 15px;
        transform: scale(0);
        clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
        background: var(--void);
    }
    input[type="checkbox"]:checked::before {
        transform: scale(1);
    }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    /* firefox */
    -moz-appearance: textfield;
    appearance: textfield;
}

.setting .input-with-icon input {
    width: auto !important;
}

form {
    display: flex;
    flex-flow: column nowrap;
}

.primary-button {
    display: flex;
    gap: 8px;
    padding: 12px 15px;
    background: var(--primary);
    cursor: pointer;
    border: none;
    border-radius: var(--round_lg);
    justify-content: space-between;
    align-items: center;
    color: var(--bg);
    text-decoration: none;
} .primary-button:hover {
    background: var(--primaryGlow);
} .primary-button:active {
    background: var(--primary);
    transform: var(--press);
} .primary-button > * {
    user-select: none;
} .primary-button:focus {
    border: none;
}

.primary-button.danger {
    background: var(--danger80);
    color: var(--text);
} .primary-button.danger:hover {
    background: var(--danger);
} .primary-button.danger:active {
    background: var(--danger80);
}

.primary-button.purple {
    background: var(--secondary30);
    color: var(--text);
} .primary-button.purple:hover {
    background: var(--secondary40);
} .primary-button.purple:active {
    background: var(--secondary30);
}

.primary-button i {
    font-size: 22px;
    color: inherit;
    /* This is needed to center the icons because unfortunately, FA is dumb and their icons are NOT all fixed width like they say */
    display: flex;
    justify-content: center;
    width: 22px !important;
}

.primary-button p {
    font-size: 16px;
    font-weight: 500;
    color: inherit;
}

input[type='submit'] {
    align-self: flex-start;
}

.error-notif {
    background: var(--danger20);
    border-radius: var(--round_lg);
    padding: 20px;
    max-width: 500px;
    margin-top: 30px;
}
    .error-notif ul {
        margin: 0;
    }
    .error-notif > * {
        cursor: default !important;
    }

.message-notif {
    background: var(--primary20);
    border-radius: var(--round_lg);
    padding: 20px;
    max-width: 500px;
    margin-bottom: 30px;
}
    .message-notif ul {
        margin: 0;
    }
    .message-notif > * {
        cursor: default !important;
    }

.award-card {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: var(--round_lg);
    background: var(--void50);
    box-shadow: var(--bs_deboss);
}

.award-card > i {
    /* Medal icon */
    font-size: 36px;
    opacity: 0.8;
    color: var(--text);
    display: flex;
    justify-content: center;
    min-width: 1.25em;
    max-width: 1.25em;
}

.award-card-details {
    flex-grow: 1;
    display: flex;
    flex-flow: column nowrap;
    gap: 5px;
    justify-content: center;
} .award-card-details > * {
    cursor: default !important;
}
    .award-card-details .name {
        font-size: 24px;
        font-weight: 700;
    }

.review-section-header {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
}

.article-info {
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}
    .article-info > p {
        opacity: 0.5;
        cursor: default !important;
        white-space: nowrap;
    }

.article-top {
    display: flex;
    gap: 20px;
    align-items: center;
}

.article-content {
    font-size: 20px;
    line-height: 1.8;
    margin-top: 40px;
    color: var(--text90);
}
    @media screen and (max-width: 600px) {
        .article-content {
            font-size: 15.5px;
            line-height: 1.6;
        }
    }

/* Tabs */
.tabnav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin: 0 10px;
    scrollbar-width: none;
}

.tab-btn {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer !important;
    color: var(--text);
    padding: 10px;
    font-weight: 600;
    font-size: 15px;
    opacity: 0.8;
    white-space: nowrap;
}
    .tab-btn:hover {
        border-bottom: 3px solid var(--text50);
        opacity: 1;
    }
    .tab-btn:active {
        border-bottom: 3px solid transparent;
        opacity: 0.8;
        transform: var(--press);
    }
    .tab-btn.active {
        border-bottom: 3px solid var(--accent);
        opacity: 1;
    }
    .tab-btn p {
        color: inherit;
    }

.sortable-list {
    border: 1px solid rgba(255,255,255,0.1);
    list-style: none;
    padding: 10px;
    margin: 20px 0 0 0;
    min-height: 50px;
    border-radius: var(--round_lg);
    display: flex;
    gap: 10px;
    max-width: 500px;
    flex-flow: column nowrap;
}
    .sortable-list li {
        padding: 5px;
        background: var(--void50);
        border-radius: var(--round_lg);
        display: flex;
        justify-content: space-between;
        flex-grow: 1;
        align-items: center;
        gap: 10px;
    }
    .sortable-list li > p {
        font-weight: 600;
        font-size: 16px;
        flex-grow: 1;
        cursor: default;
        opacity: 0.8;
    }
    .grip {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 9px 12px;
        border-radius: var(--round_med);
        cursor: grab;
        border: none;
        background: var(--void80);
        font-size: 18px;
        color: var(--text40);
    }
    .remove-item {
        padding: 9px 12px;
    }
    .remove-item i {
        font-size: 18px !important;
        width: 18px !important;
    }

/* shamelessly stolen ui from letterboxd */
/* (jk, only heavy inspo) */
.poster-stack {
    display: flex;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;

    /* variables for children */
    --poster-target-width: calc(100% / 4);
    --poster-min-overlap: calc(.2 * var(--poster-target-width));
    --poster-width: var(--poster-target-width);
    --poster-count: 6;
    --poster-overlap: max(calc((var(--poster-count) * var(--poster-width) - 100cqw) / (var(--poster-count) - 1)), var(--poster-min-overlap));
    box-shadow: 0 1px 6px var(--bg);
}

.poster-item {
    margin-inline-start: calc(-1 * var(--poster-overlap));
    width: var(--poster-width);
    min-width: 0;
    height: auto;
    aspect-ratio: 2 / 3;
    display: block;
    box-shadow: 2px 0 6px black;
    position: relative;
    pointer-events: none;
    border-radius:var(--round_med);
    background: var(--bg);
}
    .poster-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 50% 50%;
        opacity: 0.9;
    }
    span.frame {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        overflow: hidden;
        box-shadow: inset 0 0 0 1px rgba(221,238,255,0.2);
        border-radius: var(--round_med);
    }
.placeholder {
    /* Fake blank poster */
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 2 / 3;
    box-shadow: inset 0 0 0 1px rgba(221,238,255,0.2);
    background: var(--bg);
    border-radius: var(--round_med);
}

.poster-item:first-child {
    margin-inline-start: 0;
}










.user-spotlight {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    gap: 40px;
}
    .user-spotlight .left {
        display: flex;
        gap: 20px;
        align-items: flex-end;
        z-index: 5;
    }
        @media screen and (max-width: 550px) {
            /* let spotlight left wrap on small screens */
            .user-spotlight .left {
                flex-flow: row wrap;
            }
        }

.fav-glass {
    display: flex;
    gap: 10px;
    flex-flow: column nowrap;
    align-self: flex-end;
    width: 100%;
    overflow: hidden;
}
    @media screen and (min-width: 1000px) {
        /* don't force stretch on big screens */
        .fav-glass {
            width: auto;
        }
    }

.fav-glass-shelf {
    display: flex;
    gap: 10px;
    align-items: center;
}

.fav-glass-shelf a {
    border-radius: var(--round_med);
    overflow: hidden;
    aspect-ratio: 2/3;
    align-self: flex-end;
    flex-basis: 0;
    flex-grow: 1;
    opacity: 0.9;
    background: var(--void50);
} .fav-glass-shelf a.square {
    aspect-ratio: 1/1;
}
    @media screen and (min-width: 1000px) {
        /* don't force stretch on big screens */
        .fav-glass-shelf a {
            max-height: 120px;
            min-height: 120px;
            box-shadow: var(--bs_emboss);
            flex-basis: auto;
        }
    }
    .fav-glass-shelf a img {
        object-fit: cover;
        object-position: 50% 50%;
        width: 100%;
        height: 100%;
    }

.content-container {
    display: -webkit-box;
    line-clamp: 10;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
    text-overflow: ellipsis;
}

.content-container.expanded {
    /* Show all content */
    line-clamp: none;
    -webkit-line-clamp: none;
}

.censor {
    display: none;
    z-index: var(--z_censor);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--void90);
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    backdrop-filter: blur(4px);
}
    .censored .censor {
        display: flex;
    }
    .censor > p {
        /* "This review contains spoilers" */
        font-size: 14px;
        opacity: 0.5;
        text-shadow: 0 1px 7px black;
        text-align: center;
        cursor: default;
    }
    .censor > button {
        box-shadow: var(--bs_emboss);
    }

.content-wrapper {
    display: flex;
    flex-grow: 1;
    flex-flow: column nowrap;
    gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;
}
    /* Normalize review content when censored */
    .content-wrapper.censored {
        position: relative;
        border-radius: var(--round_lg);
        overflow: hidden;
        padding: 5px 10px 10px;
        min-height: 100px;
        width: 100%;
    }



.changelog {
    cursor: default !important;
}
    .changelog h2 {
        line-height: 1;
    }
    .changelog-date {
        font-size: 16px;
        opacity: 0.5;
    }
    .changelog li {
        line-height: 1.4;
        font-size: 15px;
        opacity: 0.9;
    }
    .changelog ul {
        margin-bottom: 40px;
    }







/* Nav bar (mobile) */
nav#nav_mobile {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    align-items: stretch;
    padding: 5px;
    gap: 2px;
    background: var(--bg);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: var(--z_nav);
    overflow-x: auto;
    transition: 0.2s ease-in-out;
    border-radius: 13px 13px 0 0;
} nav#nav_mobile.nav-show {
    /* Slide nav into view */
    transform: translateY(0);
    box-shadow: 0 -5px 20px var(--void40);
} nav#nav_mobile.nav-hide {
    /* Slide nav out of view */
    transform: translateY(101%);
}
    @media screen and (min-width: 550px) {
        nav#nav_mobile {
            display: none;
        }
    }

nav#nav_mobile > a:not(.create), nav#nav_mobile > button {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 1px;
    flex-basis: 0;
    flex-grow: 1;
    padding: 8px 4px;
    opacity: 0.6;
    border-radius: var(--round_lg);
    border: none;
    background: transparent;
    cursor: pointer;
} nav#nav_mobile > a:not(.create):hover, nav#nav_mobile > button:hover {
    background: var(--secondary5);
    opacity: 1;
} nav#nav_mobile > a:not(.create):active, nav#nav_mobile > button:active {
    background: transparent;
    opacity: 0.8;
}

.create {
    margin: 2px 12px;
    align-self: center;
    flex-basis: 0;
    padding: 11px 14px;
    border-radius: var(--round_lg);
    background: var(--secondary15);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text) !important;
    box-shadow: var(--bs_emboss);
} .create:hover {
    background: var(--secondary30);
} .create:active {
    background: var(--secondary15);
    transform: var(--press);
} .create > i {
    opacity: 1 !important;
}

.nav-highlight {
    color: var(--text) !important;
    opacity: 1 !important;
} .nav-highlight > * {
    color: var(--text) !important;
    opacity: 1 !important;
}

nav#nav_mobile > a i, nav#nav_mobile > button i {
    color: var(--text);
    font-size: 24px;
    opacity: 0.5;
}

nav#nav_mobile img {
    opacity: 0.8;
}

nav#nav_mobile > a p, nav#nav_mobile > button p {
    font-size: 12px;
    font-weight: 550;
    opacity: 1;
}

/* Profile pic in mobile nav */
nav#nav_mobile > a img {
    border-radius: 50%;
    /* Cover fills the image ("cuts out" square aspect ratio) */
    object-fit: cover;
    object-position: 50% 50%;
    max-width: 24px;
    min-width: 24px;
    max-height: 24px;
    min-height: 24px;
}

.mobile-status {
    z-index: var(--z_nav);
    transition: 0.2s ease-in-out;
    position: fixed;
    top: 0;
    background: var(--void90);
    backdrop-filter: blur(20px);
    max-height: var(--mobile_status_height);
    min-height: var(--mobile_status_height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    left: 0;
    right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    gap: 5px;
}
    .mobile-status.nav-show {
        /* Slide nav into view */
        transform: translateY(0);
    } .mobile-status.nav-hide {
        /* Slide nav out of view */
        transform: translateY(-101%);
    }
    @media screen and (min-width: 550px) {
        .mobile-status {
            display: none;
        }
    }

.mobile-status p {
    font-weight: 600;
    opacity: 0.5;
    font-size: 16px;
    cursor: default !important;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    flex-grow: 1;
}

.mobile-status button {
    opacity: 0.5;
}

.desktop-only-page-kebab {
    display: none !important;
}
    @media screen and (min-width: 550px) {
        .desktop-only-page-kebab {
            display: flex !important;
        }
    }

form input[type="submit"] {
    font-weight: 500;
}



/* Modal */

.modal {
    border: none;
    border-radius: var(--round_xlg);
    padding: 0;
    max-width: 400px;
    width: 90%;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.2); */
    box-shadow: var(--bs_emboss);
    background: var(--bg);
}
    /* Dim the background when modal is open */
    .modal::backdrop {
        background: rgba(0,0,0,0.8);
        backdrop-filter: blur(2px);
    }

.modal-content {
    display: flex;
    flex-flow: column nowrap;
}

.modal-strip {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    padding: 10px;
    justify-content: flex-end;
}

.modal-strip h2 {
    flex-grow: 1;
    margin: 0 0 0 15px;
}

.modal-strip .primary-button {
    box-shadow: var(--bs_emboss);
}

.list-options {
    list-style: none;
    padding: 10px;
    max-height: 400px;
    overflow: auto;
    width: 100%;
    margin: 0;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
}

.list-options li {
    padding: 15px;
    border-radius: var(--round_med);
    cursor: pointer;
}
    .list-options li:hover {
        background: var(--secondary5);
    }

.fat_searchbar {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    max-width: none;
}

.pagination {
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
    justify-content: center;
    padding-top: 20px;
}

/* cake */
.search-result-title-card .title-card-score i:not(.score-icon-unranked) {
    font-size: 42px !important;
    width: 42px !important;
    height: 42px !important;
} .search-result-title-card .title-card-score i.score-icon-unranked {
    font-size: 24px !important;
    width: 42px !important;
    height: 42px !important;
}
.search-result-title-card .title-card-score p {
    font-size: 17px !important;
}

.result-count {
    margin-bottom: 10px;
    opacity: 0.5;
    font-weight: 500;
    cursor: default;
}