.ct-container {
    padding: 0;
}

.ct-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid #1c1c2e;
}

.ct-title {
    font-size: 24px;
    font-weight: 800;
    color: #e0e0ea;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ct-title-icon {
    font-size: 28px;
    color: #fdcb6e;
}

.ct-count {
    font-size: 13px;
    font-weight: 600;
    color: #6b6b80;
    background: #13131d;
    border: 1px solid #1c1c2e;
    padding: 6px 14px;
}

.ct-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.ct-card {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s;
    min-width: 0;
}

.ct-card:hover {
    transform: translateY(-4px);
}

.ct-card-img {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #111;
}

.ct-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.ct-card:hover .ct-card-img img {
    transform: scale(1.05);
}

.ct-card-info {
    padding: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.ct-card-info h2 {
    font-size: 13px;
    font-weight: 700;
    color: #b0b0c0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    transition: color 0.2s;
}

.ct-card:hover .ct-card-info h2 {
    color: #fff;
}

.ct-card-cat {
    font-size: 11px;
    font-weight: 600;
    color: #6c5ce7;
}

.ct-card-plays {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #4a4a60;
}

.ct-card-plays .material-icons-round {
    font-size: 14px;
}

.ct-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 20px 0 40px;
}

.ct-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 600;
    color: #9d9db5;
    background: #13131d;
    border: 1px solid #1c1c2e;
    text-decoration: none;
    transition: all 0.2s;
}

.ct-page:hover {
    border-color: #6c5ce7;
    color: #fff;
    background: #1a1a2e;
}

.ct-page-active {
    background: #6c5ce7;
    border-color: #6c5ce7;
    color: #fff;
}

.ct-page-active:hover {
    background: #5a4bd1;
    border-color: #5a4bd1;
}

.ct-page-next {
    padding: 0;
}

.ct-page-next .material-icons-round {
    font-size: 20px;
}

@media (max-width: 1200px) {
    .ct-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1024px) {
    .ct-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .ct-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .ct-title {
        font-size: 20px;
    }

    .ct-title-icon {
        font-size: 24px;
    }

    .ct-count {
        font-size: 12px;
        padding: 4px 10px;
    }

    .ct-card-info h2 {
        font-size: 12px;
    }

    .ct-card-cat {
        font-size: 10px;
    }

    .ct-card-plays {
        font-size: 10px;
    }

    .ct-page {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 550px) {
    .ct-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .ct-head {
        margin-bottom: 20px;
        padding-bottom: 14px;
    }

    .ct-title {
        font-size: 18px;
    }

    .ct-title-icon {
        font-size: 22px;
    }

    .ct-card-info {
        padding: 8px 0 0;
    }

    .ct-card-info h2 {
        font-size: 12px;
    }

    .ct-card-cat {
        font-size: 9px;
    }

    .ct-card-plays {
        font-size: 9px;
    }

    .ct-card-plays .material-icons-round {
        font-size: 12px;
    }

    .ct-page {
        min-width: 34px;
        height: 34px;
        font-size: 12px;
        padding: 0 8px;
    }
}

@media (max-width: 400px) {
    .ct-title {
        font-size: 16px;
    }

    .ct-count {
        font-size: 11px;
        padding: 3px 8px;
    }

    .ct-card-info h2 {
        font-size: 11px;
    }

    .ct-page {
        min-width: 32px;
        height: 32px;
        font-size: 11px;
        gap: 4px;
    }
}