* {
    --hue: 190 !important;
}

.rankings-home {
    display: flex;
    gap: 20px;
    > div {
        flex: 1;
    }
    >div:first-child {
        max-width: 400px;
    }
}
.buttongrid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
    a {
        padding: 16px;
        min-height: 120px;
        background: var(--col-l3);
        border: 1px solid var(--col-l4);
        font-size: 24px;
        border-radius: var( --border-radius);
        color: inherit;
        font-weight: 300;
        transition: all 0.2s ease;
        position: relative;
        svg {
            position: absolute;
            bottom: 16px;
            right: 16px;
            height: 64px;
            width: auto;
            stroke-width: 1px;
            stroke: var(--col-text-l3);
            transition: stroke 0.2s ease, transform 1s ease;
        }
        &:hover:before {
            opacity: 1;
        }
        &:before {
            opacity: 0;
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom right, #fff0, var(--col-sat-1));
            transition: opacity 0.2s;
        }
        &:hover {
            transform: translateY(-2px);
            svg {
                stroke: white;
                transform: scale(1.1);
            }
        }
        >* {
            z-index: 1;
            position: relative;
        }
        p {
            font-size: 24px;
            font-weight: 200;
        }
        overflow: hidden;
    }
}

@media (max-width: 1000px) {
    .rankings-home {
        flex-direction: column;
        >div:first-child {
            max-width: 100%;
        }
    }
}

.add-form {
    display: flex;
    align-items: stretch;
    .input-with-text {
        flex: 1;
    }
    width: 100%;
    gap: 10px;
    margin: 12px 0px;
    >* {
        border-radius: 6px !important;
        align-items: center;
    }
}

.rankings-home {

    warning {
        font-size: 15px;
    }
}

.category-panel {
    background: var(--col-l1);
    >div {
        padding: 16px;
    }
    >div:has(>h1) {
        position: relative;
        height: 90px;
        overflow: hidden;
        display: flex;
        align-items: center;
        background: linear-gradient(to left, color-mix(in srgb, var(--col-sat-1) 50%, transparent), var(--col-l3));
        border-bottom: 1px solid var(--col-d2);
        svg {
            width: 120px;
            position: absolute;
            right: 0;
            height: 120px;
            mask-image: linear-gradient(to top right, #fff, #fff0);
            stroke: white;
            stroke-width: 1px;
            mix-blend-mode: overlay;
        }
        h1 {
            z-index: 2;
            font-size: 40px;
            font-weight: 400;
        }
    }
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--col-l3);
    margin-bottom: 20px;
}

.welcomepanel {
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--col-sat-3), var(--col-sat-1));
    border-radius: var(--border-radius);
    position: relative;
    &:before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to bottom, #fff0, #000);
        mix-blend-mode: overlay;
    }

    box-shadow: 0px 0px 50px inset #0002;
    overflow: hidden;
    >* {
        position: relative;
        z-index: 9;
        filter: drop-shadow(0px 2px 2px #0002);
    }
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;

    img {
        margin-bottom: 14px;
    }
    p {
        margin-top: 12px;
    }


}

/*# sourceMappingURL=rankings_home.css.map*/