/* Apply Button for Tournaments */
.apply-btn {
	display: inline-block;
	margin-top: 15px;
	padding: 12px 30px;
	background: var(--accent);
	color: white;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-size: 12px;
	font-weight: 600;
	border-radius: 4px;
	transition: all 0.3s ease;
	text-align: center;
	border: none;
	cursor: pointer;
	width: 100%;
}

.apply-btn:hover {
	background: var(--accent-hover);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(139, 26, 26, 0.4);
}

/* Clickable Match Cards */
a.collection-card {
	text-decoration: none;
	color: inherit;
	display: block;
}

a.collection-card.clickable-card {
	cursor: pointer;
}

a.collection-card.clickable-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(139, 26, 26, 0.3);
}

a.collection-card.clickable-card::after {
	content: '▶';
	position: absolute;
	top: 20px;
	right: 20px;
	width: 40px;
	height: 40px;
	background: rgba(139, 26, 26, 0.9);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: white;
	opacity: 0;
	transition: all 0.3s ease;
}

a.collection-card.clickable-card:hover::after {
	opacity: 1;
	transform: scale(1.1);
}
