.ux9kShell {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fltPanel_zz92 {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
    flex-flow: wrap;
    justify-content: center;
}

.btnNebula_qw71 {
    padding: 8px 16px;
    background: #ddd;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.btnNebula_qw71:hover {
    background: #ccc;
}

.btnNebula_qw71--active {
    background: #555;
    color: white;
}

.crslWrap_omega13 {
    width: 100%;
    max-width: 1000px;
    overflow: hidden;
    position: relative;
    height: 450px;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, #000 2% 98%, transparent);
}

.trkNebula_r3 {
    display: flex;
    width: fit-content;
    height: 100%;
    align-items: center;
    cursor: grab;
    transform: translateX(0);
    gap: 10px;
}

.trkNebula_r3--drag {
    cursor: grabbing;
    animation: none;
    transition: transform 0.1s ease-out;
}

.trkNebula_r3--auto {
    animation: driftNebula_r3 25s linear infinite;
}

.trkNebula_r3:hover {
    animation-play-state: paused;
}

.cardStar_mx5 {
    width: 250px;
    height: 250px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
}

.cardStar_mx5-core {
    width: 100%;
    transition: all 0.3s ease;
}

.cardStar_mx5 h3 {
    margin: 0 0 5px 0;
    font-size: 12px;
    opacity: 0;
    transition: all 0.5s ease;
    font-weight: 600;
}

.cardStar_mx5 p {
    margin: 0;
    font-size: 12px;
    opacity: 0;
    transition: all 0.5s ease;
}

.cardStar_mx5 ul {
    list-style-type: none;
    padding: 0;
    margin: 8px 0 0 0;
    text-align: left;
    font-size: 12px;
    opacity: 0;
    transition: all 0.5s ease;
}

.cardStar_mx5 li {
    margin-bottom: 2px;
    position: relative;
    padding-left: 15px;
}

.cardStar_mx5 li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #4CAF50;
}

.cardStar_mx5:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    filter: grayscale(60%);
}

.cardStar_mx5:hover p,
.cardStar_mx5:hover h3,
.cardStar_mx5:hover ul {
    opacity: 1;
}

.cardStar_mx5:hover .cardStar_mx5-core {
    background-color: rgba(6, 11, 4, 0.7);
    border-radius: 10px;
    padding: 10px;
}

.cardStar_mx5--hide {
    display: none !important;
}

@keyframes driftNebula_r3 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}