Today's Digital Newspaper

The Gazette

Weather Block Here



CSU Rams star Nique Clifford ready to flourish on March Madness stage

SEATTLE — Nique Clifford’s first trip to the NCAA Tournament was about as unique as it gets.

He sat on the sidelines for nearly the entirety of No. 5 seed Colorado’s 96-73 blowout win over No. 12 seed Georgetown inside a mostly empty Hinkle Fieldhouse at the 2021 tournament that was contained inside the state of Indiana.

But Clifford got to play two minutes at the end of that win for the Buffaloes and even hit a 3-pointer.

“It was the coolest thing ever,” Clifford recalled to The Denver Gazette on Thursday.

Oh, how things have changed for the Colorado Springs native.

Nique Clifford, CSU Rams vs. Boise State

Colorado State fifth-year senior guard Nique Clifford inbounds the ball during a game against Boise State on Wednesday at Moby Arena in Fort Collins.

Tyler King, The Denver Gazette

Nique Clifford, CSU Rams vs. Boise State

Colorado State fifth-year senior guard Nique Clifford inbounds the ball during a game against Boise State on Wednesday at Moby Arena in Fort Collins.






He’s a different person, a different player and on a different team. As Clifford heads into his third and final March Madness appearance on Friday, leading No. 12 seed Colorado State against No. 5 seed Memphis (Noon, TBS), it’s hard for him to not reminisce about it all.

“I’m just taking a step back and being grateful for being able to be in these positions, just to see my journey and where I came from,” Clifford said. “I’m really leading a team into March Madness. It’s just crazy how times have changed and the path I’ve taken up to this point. Just super grateful. I love to pray about it and give thanks to God for putting me through these trials and tribulations.”

As many have heard by now, Clifford’s college career wasn’t the smoothest. After a solid sophomore season in Boulder, Clifford regressed in terms of both role and production as a junior, all while CU signed a five-star player at his position in Cody Williams.

Utah Colorado Basketball

Colorado guard Nique Clifford plays during the first half March 4 in Boulder.

The Associated Press

Utah Colorado Basketball

Colorado guard Nique Clifford plays during the first half March 4 in Boulder.






But he found a home just up the road in Fort Collins, quickly becoming the perfect second fiddle to Rams star point guard Isaiah Stevens last season and helping his new team get back to the NCAA Tournament.

This year, after nearly not returning to school and getting started on a pro career, Clifford predicted how this season would go.

“I think there’s a lot of potential with this group,” Clifford said back in November. “We’re not gonna be right where we want from game one, but as we go forward through the season, teams continue to get better and that’s the path we want to be on.”

Spot on.

Clifford also knew that if he was going to achieve his goal of leading CSU back to the big dance, he needed to up his game in more ways than one.

Sign Up For Free:

let pathVariable;
let pathVariable2;

function handleUrlPathSegment() {

const fullPath = window.location.pathname.toLowerCase();
if (fullPath.includes(‘/business/’)) {
pathVariable = ‘business’;
pathVariable2 = ‘Business Newsletter’;
} else if (fullPath.includes(‘/outdoors/’) || fullPath.includes(‘/outdoor/’)) {
pathVariable = ‘outdoors’;
pathVariable2 = ‘Outdoors Newsletter’;
} else if (fullPath.includes(‘/opinion/’)) {
pathVariable = ‘opinion’;
pathVariable2 = ‘Opinion Newsletter’;
} else if (fullPath.includes(‘politics’)) {
pathVariable = ‘politics’;
pathVariable2 = ‘Politics Newsletter’;
} else {
pathVariable = ‘am-update’;
pathVariable2 = ‘AM Update Newsletter’;
}

console.log(`Current path: ${fullPath}`);
console.log(`Path variable set to: ${pathVariable}`);
console.log(`Path variable 2 set to: ${pathVariable2}`);

applyNewsletterName(pathVariable2);

return { pathVariable, pathVariable2 };
}

function applyNewsletterName(newsletterName) {

if (document.readyState === ‘loading’) {
document.addEventListener(‘DOMContentLoaded’, function() {
updateNewsletterElement(newsletterName);
});
} else {

updateNewsletterElement(newsletterName);
}
}

function updateNewsletterElement(newsletterName) {
const newsletterElement = document.getElementById(‘newsletterName’);

if (newsletterElement) {
newsletterElement.textContent = newsletterName;
console.log(`Updated #newsletterName element with: ${newsletterName}`);
} else {
console.warn(‘Element with ID #newsletterName not found in the DOM’);
}
}

function setupFormSubmitListener() {
function getFormattedDate() {
const now = new Date();

const timestamp = now.getTime();

console.log(‘chris: Using Unix timestamp’);
console.log(‘chris: Current time:’, now);
console.log(‘chris: Unix timestamp (ms):’, timestamp);

return timestamp;
}

const formattedDate = getFormattedDate();
var profile = window.blueConicClient.profile.getProfile();
profile.setValues(‘newsletter_category’, pathVariable);
profile.setValue(‘newsletter_signup_date’, formattedDate);
window.blueConicClient.profile.updateProfile(this, function() {
});
}

handleUrlPathSegment();

Success! Thank you for subscribing to our newsletter.

function subscribeSuccess() {
var nsltrform = document.querySelector(“#nsltr”);
var nsltrSuccess = document.querySelector(“#successnsltr”);

nsltrform.classList.add(“hideblock”);
nsltrSuccess.classList.remove(“hideblock”);
}

function validateEmail(email) {
return String(email)
.toLowerCase()
.match(
/^(([^()[]\.,;:s@”]+(.[^()[]\.,;:s@”]+)*)|(“.+”))@(([[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}])|(([a-zA-Z-0-9]+.)+[a-zA-Z]{2,}))$/
);
}

function validateEmailAddress() {
const result = document.querySelector(“#result”);
const email = document.querySelector(“#email”).value;

result.innerText = “”;

if(validateEmail(email)) {
newsletterSubscribe(email);
} else {
result.innerText = ‘The email entered: ‘ + email + ‘ is not valid :(‘;
result.style.color = “red”;
}
return false;
}

function newsletterSubscribe(email) {
fetch(“https://services.gazette.com/mg2-newsletters.php?action=subscribe&site=denvergazette.com&emailPreferenceId=59&email=” + email, {
method: “POST”
}).then(res => {
console.log(“SUCCESSFUL POST”);
subscribeSuccess();
});

}

#nsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: #2076b3;

background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/pp5%20signup%203.png);
background-size: cover;

}

#nsltr-header {
color: #fff4f4;
}
#nsltr-body {
text-align: center;
color: #ffffff;
}
#nsltr-button {
margin-top: 5px;
}
#successnsltr {
min-width: 100%;
margin: 10px 0;
padding: 10px 20px;
background-color: green;
text-align: center;
color: white;
}

#successnsltr a {
color: white;
}

.hideblock {
display:none;
}

h6 a {
color: black;
text-decoration: none;
padding: 5px;
background-color: #bbccdd;
font-weight: 600;
}

@media only screen and (min-width: 768px) {
#nsltr {
background-image: url(https://static.gazette.com/emails/circ/Audience%20Images/pp5%20signup%203.png);
background-size: cover;
}
}

Nailed it again.

Clifford is the only player in the country averaging 19 points per game and over nine rebounds and four assists per game. He’s evolved into one of the nation’s most dangerous playmakers behind a mindset of a player who truly understands how he can best make an impact on a given game.

“I think it’s just feeling it. When maybe a couple of threes aren’t falling, you gotta recognize that and get downhill, get to the free throw line and do something else to get myself going,” Clifford said back in January. “It’s hard, as a confident player, you think the next shot is going on, but I think it’s (about) not forcing the issue.

“I have to be aggressive for my team to be successful — whether that’s getting downhill and making a play for somebody else, whether that’s scoring — and I think it comes back to that feel of the game.”

All of that was on display last week in Las Vegas as Clifford averaged 25 points and 10 rebounds per game on the way to leading the Rams to their first Mountain West tournament championship in 22 years.

MWC Boise St Colorado St Basketball

Colorado State guard Nique Clifford, left, shoots around Boise State forward Emmanuel Ugbo during the second half of an NCAA college basketball championship game at the Mountain West Conference tournament Saturday, March 15, 2025, in Las Vegas. (AP Photo/John Locher)

John Locher

MWC Boise St Colorado St Basketball

Colorado State guard Nique Clifford, left, shoots around Boise State forward Emmanuel Ugbo during the second half of an NCAA college basketball championship game at the Mountain West Conference tournament Saturday, March 15, 2025, in Las Vegas. (AP Photo/John Locher)






Clifford is a popular pick to be one of the stars of this year’s NCAA Tournament. He knows exactly what that looks like as CSU associate head coach Ali Farokhmanesh is still remembered for his performance in leading No. 9 seed Northern Iowa over top overall seed Kansas back in 2010.

Farokhmanesh knows Clifford is as ready as anyone to join him as a March Madness legend.

“He’s gotta show up every night. That’s a lot of pressure, but he’s done it for a high level for the last two months now,” Farokhmanesh told The Denver Gazette. “It’s just (about) sticking to the process of what he’s been doing the whole time and trusting his work and trusting his teammates. He’s getting a lot done without making it look like he’s stressing himself out trying to do it.

“He doesn’t force anything. That’s the biggest thing that’s changed in the last two months. He takes what’s given to him, but he’s aggressive when he takes it.”

The level Clifford has reached in recent months is something his teammate, fifth-year senior Ethan Morton, has seen before. He played alongside two-time Naismith Player of the Year Zach Edey at Purdue.

“He’s been super impressive,” Morton said. “I’ve been around some great players, played against some great guys and he’s right in that group. The best compliment I can give him is when you watch him, he just moves differently from everybody else out there. He makes the right play. He does everything you could ask for. At the end of the day, too, he’s a winner. A lot of guys you could say have great pro potential, but he’s just such a winner. He does whatever it takes.”

MWC Boise St Colorado St Basketball

Colorado State guard Nique Clifford (10) and Colorado State guard Jalen Lake (15) celebrate after defeating Boise State in an NCAA college basketball championship game at the Mountain West Conference tournament Saturday, March 15, 2025, in Las Vegas. (AP Photo/John Locher)

John Locher

MWC Boise St Colorado St Basketball

Colorado State guard Nique Clifford (10) and Colorado State guard Jalen Lake (15) celebrate after defeating Boise State in an NCAA college basketball championship game at the Mountain West Conference tournament Saturday, March 15, 2025, in Las Vegas. (AP Photo/John Locher)






Clifford will happily take the “winner” description. Because he knows continuing to prove he’s exactly that this weekend in Seattle (and maybe beyond) is how he becomes a March legend in his own right.

“It’s always cool to get recognition and have people believing in you to do those types of things,” Clifford said. “It puts a level of pressure on you, but I don’t think I get into that. I have a good mindset and I’m just focused on trying to help my team win games. When I do that, I feel like I play at my best and when I play at my best, those things could happen. I’m just trying to take it one day at a time, just focusing on getting better and helping my team win. I think those things will take care of itself.”

93a88c1c-fa35-4d07-a829-81b6b92c75ed

View Original Article | Split View
Tags

PREV

PREVIOUS

What makes Colorado State's Niko Medved so special? Players, coaches, administrators on the star Rams coach

Facebook Twitter WhatsApp SMS Email Print Copy article link Save FORT COLLINS — John Weber doesn’t see it like everybody else. The Colorado State athletic director is once again having to go through another coaching carousel where he’s in danger of losing an emerging star in college basketball in Niko Medved. With the No. 12 […]

NEXT

NEXT UP

No. 12 Colorado State vs. No. 5 Memphis at the NCAA Tournament | King’s pick

Facebook Twitter WhatsApp SMS Email Print Copy article link Save SEATTLE — Last year was nice, but Colorado State has its eyes on taking this season one step further. The Rams beat Virginia in the First Four of last year’s NCAA Tournament in Dayton, the program’s first March Madness win since 2013, to advance to […]