.cc-game-page {
	max-width: 960px;
	margin: 0 auto;
	padding: 40px 20px 80px;
}

.cc-game-header {
	text-align: center;
	margin-bottom: 32px;
}

.cc-game-title {
	font-size: 2.2rem;
	font-weight: 800;
	color: #1a1a1a;
	margin: 0 0 8px;
}

.cc-game-subheading {
	font-size: 1.1rem;
	color: #555;
	margin: 0;
}

.cc-game-guest-banner {
	margin-top: 20px;
	background: #fff0f4;
	border: 1px solid #ffd0dc;
	border-radius: 12px;
	padding: 14px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	color: #8a3f57;
	font-weight: 600;
}

/* Game embed */

.cc-game-embed {
	margin-bottom: 32px;
}

.cc-game-embed__frame {
	max-width: 900px;
	aspect-ratio: 16 / 9;
	margin: 0 auto;
	border-radius: 12px;
	overflow: hidden;
	background: #000;
}

.cc-game-embed__frame iframe {
	width: 100%;
	height: 100%;
	display: block;
}

/* Reward card */

.cc-game-reward {
	display: flex;
	justify-content: center;
	margin-bottom: 32px;
}

.cc-reward-card {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	padding: 28px 24px;
	max-width: 480px;
	width: 100%;
	text-align: center;
}

.cc-timer-label {
	font-weight: 600;
	color: #444;
	margin: 0 0 12px;
}

.cc-timer-track {
	position: relative;
	background: #f0f0f0;
	border-radius: 12px;
	height: 28px;
	overflow: hidden;
}

.cc-timer-fill {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 0%;
	background: #FFB800;
	border-radius: 12px;
	transition: width 0.3s linear;
}

.cc-timer-pct {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	font-weight: 700;
	font-size: 0.85rem;
	color: #1a1a1a;
}

.cc-claim-success p {
	margin: 0 0 10px;
	font-size: 1.05rem;
	color: #333;
}

.cc-claim-error {
	margin-top: 14px;
	color: #c0392b;
	font-size: 0.95rem;
}

.cc-hidden {
	display: none !important;
}

/* Buttons (self-contained to this template) */

.cc-button {
	display: inline-block;
	padding: 12px 24px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 1rem;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: transform 0.15s ease, opacity 0.15s ease;
}

.cc-button:hover {
	transform: translateY(-2px);
}

.cc-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.cc-button--primary {
	background: #FF6B8A;
	color: #fff;
}

.cc-button--claim {
	background: #FFB800;
	color: #1a1a1a;
	font-size: 1.15rem;
	padding: 16px 40px;
	margin-top: 4px;
}

/* More games */

.cc-more-games {
	text-align: center;
}

.cc-more-games__heading {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: #222;
}

.cc-more-games-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.cc-game-card {
	display: block;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	text-decoration: none;
	color: #222;
	transition: transform 0.15s ease;
}

.cc-game-card:hover {
	transform: translateY(-2px);
}

.cc-game-card__thumb {
	aspect-ratio: 16 / 9;
	background: linear-gradient(135deg, #FFB800, #FF6B8A);
}

.cc-game-card__title {
	padding: 12px;
	font-weight: 700;
	text-align: center;
}

/* Mobile */

@media (max-width: 600px) {
	.cc-game-title {
		font-size: 1.6rem;
	}

	.cc-more-games-grid {
		grid-template-columns: 1fr;
	}

	.cc-reward-card {
		padding: 20px 16px;
	}
}
