.cc-contestant-page {
	max-width: 1100px;
	margin: 40px auto;
	padding: 0 20px;
}

.cc-contestant-layout {
	display: grid;
	grid-template-columns: 45% 55%;
	gap: 40px;
	align-items: start;
}

@media (max-width: 768px) {
	.cc-contestant-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}
}

.cc-contestant-photo {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
	border-radius: 16px;
	display: block;
}

.cc-photo-placeholder {
	width: 100%;
	aspect-ratio: 4/3;
	background: #fff0f3;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5rem;
}

.cc-vote-btn-main {
	width: 100%;
	height: 60px;
	background: #FF6B8A;
	color: white;
	border: none;
	border-radius: 50px;
	font-size: 1.2rem;
	font-weight: 800;
	cursor: pointer;
	margin-bottom: 12px;
	transition: transform 0.2s, background 0.2s;
	letter-spacing: 1px;
}

.cc-vote-btn-main:hover {
	background: #ff4d70;
	transform: scale(1.02);
}

.cc-vote-btn-main:disabled {
	background: #ccc;
	cursor: not-allowed;
	transform: none;
}

.cc-multi-vote-btn-main {
	width: 100%;
	height: 44px;
	background: white;
	color: #FF6B8A;
	border: 2px solid #FF6B8A;
	border-radius: 50px;
	font-size: 0.95rem;
	font-weight: 700;
	cursor: pointer;
	margin-bottom: 20px;
	transition: all 0.2s;
}

.cc-multi-vote-btn-main:hover {
	background: #FF6B8A;
	color: white;
}

.cc-share-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}

.cc-share-label {
	font-size: 0.9rem;
	color: #666;
	font-weight: 600;
}

.cc-share-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: transform 0.2s;
	font-size: 1.1rem;
	color: #fff;
}

.cc-share-btn:hover { transform: scale(1.1); }
.cc-share-fb { background: #1877F2; }
.cc-share-wa { background: #25D366; }
.cc-share-tw { background: #000; }
.cc-share-ms { background: #0084FF; }

.cc-baby-name {
	font-size: 2.5rem;
	font-weight: 900;
	color: #1a1a1a;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0 0 8px;
	line-height: 1.1;
}

.cc-stats-box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	border: 1px solid #eee;
	border-radius: 12px;
	overflow: hidden;
	margin: 20px 0;
}

.cc-stats-cell {
	padding: 16px;
}

.cc-stats-cell:first-child {
	border-right: 1px solid #eee;
}

.cc-stats-heading {
	font-size: 0.7rem;
	font-weight: 700;
	color: #FF6B8A;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 8px;
}

.cc-countdown {
	display: flex;
	gap: 8px;
	align-items: flex-end;
}

.cc-countdown-unit {
	text-align: center;
}

.cc-countdown-number {
	font-size: 1.8rem;
	font-weight: 900;
	color: #1a1a1a;
	line-height: 1;
	display: block;
}

.cc-countdown-label {
	font-size: 0.6rem;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.cc-countdown-sep {
	font-size: 1.5rem;
	font-weight: 900;
	color: #1a1a1a;
	padding-bottom: 4px;
}

.cc-stat-label {
	font-size: 0.7rem;
	font-weight: 700;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 0 4px;
}

.cc-stat-value {
	font-size: 2rem;
	font-weight: 900;
	color: #1a1a1a;
	line-height: 1;
}

.cc-bio {
	color: #444;
	font-size: 1rem;
	line-height: 1.7;
	margin: 16px 0;
	font-style: italic;
}

.cc-vote-balance-note {
	font-size: 0.85rem;
	color: #888;
	margin-top: 8px;
}

/* Not in the original spec block — added because the markup requires them:
   a category pill (ported from the previous version of this file) and a
   hide-until-JS-decides utility for the buy-more-votes link. */

.cc-badge {
	display: inline-block;
	padding: 6px 20px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.9rem;
	background: #eee;
	color: #333;
}

.cc-badge--newborn     { background: #ffe0e9; color: #8a3f57; }
.cc-badge--baby         { background: #e0f3ff; color: #2b5f80; }
.cc-badge--toddler      { background: #fff3d6; color: #8a6d1f; }
.cc-badge--little-star  { background: #ede0ff; color: #5b3f8a; }
.cc-badge--junior       { background: #e0ffea; color: #2f7a4d; }

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