* {
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    background: #0b0b0b;
    color: #fff;
}

/* WRAPPER */
.category-wrapper {
    padding: 16px;
    overflow-x: auto;
}

/* LIST */
.category-list {
    display: flex;
    gap: 18px;
    justify-content: flex-start;
}

/* ITEM */
.category-item {
    min-width: 80px;
    text-align: center;
    cursor: pointer;
}

.category-item span {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    opacity: .85;
}

/* ICON CIRCLE */
.icon {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    border-radius: 50%;
    background: radial-gradient(circle at top, #1f1f1f, #0f0f0f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: inset 0 0 10px rgba(255,255,255,.05);
    transition: all .2s ease;
}

/* HOVER */
.category-item:hover .icon {
    box-shadow: 0 0 10px rgba(255,212,0,.5);
    transform: translateY(-2px);
}

/* DESKTOP CENTER */
@media (min-width: 768px) {
    .category-list {
        justify-content: center;
    }
}
