html { scroll-behavior: auto; }
body { font-family: 'Noto Sans SC', sans-serif; overflow-x: hidden; }

.grid-bg {
    background-image: 
        linear-gradient(rgba(233, 69, 96, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(233, 69, 96, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.shape-blob {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.filter-btn.active {
    background: #e94560;
    color: white;
    border-color: #e94560;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #8b8b9a;
}
.pagination-btn.active {
    background: #e94560;
    border-color: #e94560;
    color: white;
}
.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0f0f1a; }
::-webkit-scrollbar-thumb { background: #e94560; border-radius: 4px; }

.table-container {
    overflow-x: auto;
}

.version-row {
    transition: background-color 0.2s ease;
}
.version-row:hover {
    background-color: rgba(233, 69, 96, 0.05);
}

@media (max-width: 1024px) {
    .hide-mobile { display: none; }
}
