.ccm-page,
.ccm-page * {
	box-sizing: border-box;
}

.ccm-page {
	--ccm-ink: #101828;
	--ccm-muted: #667085;
	--ccm-line: #e4e7ec;
	--ccm-brand: #104913;
	--ccm-brand-dark: #4224c9;
	--ccm-bg: #F9F5EA;
	color: var(--ccm-ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ccm-landing,
.ccm-detail {
	margin: 0;
	padding: 48px 0 72px;
	background: var(--ccm-bg);
}

.ccm-container {
	width: min(1180px, calc(100% - 36px));
	margin: 0 auto;
}

.ccm-section + .ccm-section {
	margin-top: 56px;
}

.ccm-section-heading {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.ccm-section-heading h2 {
	margin: 0;
	color: var(--ccm-ink);
	font-size: clamp(24px, 3vw, 32px);
	line-height: 1.2;
}

.ccm-section-heading span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 28px;
	padding: 0 8px;
	border-radius: 999px;
	background: #e9e4ff;
	color: var(--ccm-brand);
	font-size: 13px;
	font-weight: 800;
}

.ccm-contest-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.ccm-card,
.ccm-detail-card,
.ccm-empty,
.ccm-notice {
	overflow: hidden;
	border: 1px solid rgba(16, 24, 40, .06);
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 8px 28px rgba(16, 24, 40, .08);
}

.ccm-card {
	transition: transform .2s ease, box-shadow .2s ease;
}

.ccm-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 34px rgba(16, 24, 40, .13);
}

.ccm-card-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.ccm-card-banner {
	position: relative;
	height: 180px;
	background-color: #d9d3ff;
	background-position: center;
	background-size: cover;
}

.ccm-card-banner--empty,
.ccm-detail-hero--empty {
	background-image: linear-gradient(135deg, #301c91, #765cf4 55%, #baaaff);
}

.ccm-deadline-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	padding: 7px 10px;
	border: 1px solid rgba(255, 255, 255, .36);
	border-radius: 999px;
	background: rgba(16, 24, 40, .76);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	backdrop-filter: blur(5px);
}

.ccm-card-body {
	position: relative;
	padding: 38px 20px 20px;
}

.ccm-card-logo,
.ccm-detail-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border: 4px solid #fff;
	border-radius: 16px;
	background: #ede9fe;
	color: var(--ccm-brand);
	font-weight: 900;
	box-shadow: 0 5px 14px rgba(16, 24, 40, .16);
}

.ccm-card-logo {
	position: absolute;
	top: -34px;
	left: 20px;
	width: 64px;
	height: 64px;
	font-size: 26px;
}

.ccm-card-logo img,
.ccm-detail-logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Contest logos should remain fully visible in the single-post summary. */
.ccm-summary-card .ccm-detail-logo img {
	object-fit: contain;
}

.ccm-card-meta,
.ccm-kicker {
	color: var(--ccm-brand);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ccm-card-title-row {
	display: flex;
	align-items: start;
	flex-wrap: wrap;
	gap: 8px;
	margin: 7px 0 4px;
}

.ccm-card-title-row h3 {
	flex: 1 1 150px;
	min-width: 0;
	margin: 0;
	color: var(--ccm-ink);
	font-size: 21px;
	line-height: 1.25;
}

.ccm-card-title-row .ccm-card-giveaway-badge,
.ccm-card-title-row .ccm-card-giveaway-badge .tummala-giveaway-badge {
	margin: 0;
}

.ccm-card-title-row .ccm-card-giveaway-badge {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
}

.ccm-card-creator {
	margin: 0;
	color: var(--ccm-muted);
	font-size: 14px;
}

.ccm-progress {
	overflow: hidden;
	height: 5px;
	margin: 20px 0 16px;
	border-radius: 999px;
	background: #eaecf0;
}

.ccm-progress span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--ccm-brand), #8b72ff);
}

.ccm-card-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.ccm-card-stats div {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.ccm-card-stats strong {
	color: var(--ccm-ink);
	font-size: 14px;
}

.ccm-card-stats span {
	color: var(--ccm-muted);
	font-size: 11px;
	text-transform: uppercase;
}

.ccm-card-stats .ccm-guaranteed-label,
.ccm-stat-strip .ccm-guaranteed-label,
.ccm-payout-list .ccm-guaranteed-label,
.ccm-payout-modal .ccm-guaranteed-label {
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 4px;
}

.ccm-card-stats .ccm-guaranteed-badge,
.ccm-stat-strip .ccm-guaranteed-badge,
.ccm-payout-list .ccm-guaranteed-badge,
.ccm-payout-modal .ccm-guaranteed-badge {
	position: relative;
	display: inline-flex;
	flex: 0 0 20px;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #36c95f;
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	text-transform: none;
}

.ccm-card-stats .ccm-guaranteed-badge::after,
.ccm-stat-strip .ccm-guaranteed-badge::after,
.ccm-payout-list .ccm-guaranteed-badge::after,
.ccm-payout-modal .ccm-guaranteed-badge::after {
	position: absolute;
	right: -14px;
	bottom: calc(100% + 10px);
	z-index: 2;
	padding: 12px 18px;
	border-radius: 7px;
	background: #1c2021;
	color: #fff;
	content: attr(data-tooltip);
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	text-transform: none;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transform: translateY(4px);
	transition: opacity .15s ease, transform .15s ease;
}

.ccm-card-stats .ccm-guaranteed-badge:hover::after,
.ccm-stat-strip .ccm-guaranteed-badge:hover::after,
.ccm-payout-list .ccm-guaranteed-badge:hover::after,
.ccm-payout-modal .ccm-guaranteed-badge:hover::after {
	opacity: 1;
	transform: translateY(0);
}

.ccm-empty,
.ccm-notice {
	padding: 24px;
	color: var(--ccm-muted);
}

.ccm-detail {
	padding-top: 0;
}

.ccm-detail-hero {
	overflow: hidden;
	width: 100%;
	height: 200px;
	background-color: #d9d3ff;
}

.ccm-detail-hero-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ccm-detail-layout {
	position: relative;
	margin-top: -68px;
}

.ccm-notice {
	margin-bottom: 18px;
	border-left: 4px solid var(--ccm-brand);
	color: var(--ccm-ink);
	font-weight: 600;
}

.ccm-account {
	padding: 0;
	background: transparent;
}

.ccm-account-head h2,
.ccm-confirmation-card h2 {
	margin: 0 0 18px;
	color: var(--ccm-ink);
	font-size: 28px;
	line-height: 1.2;
}

.ccm-dashboard-summary {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 20px;
}

.ccm-dashboard-stat,
.ccm-entry-card,
.ccm-login-prompt,
.ccm-confirmation-card {
	border: 1px solid rgba(16, 24, 40, .08);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(16, 24, 40, .08);
}

.ccm-dashboard-stat {
	padding: 18px;
}

.ccm-dashboard-stat span,
.ccm-confirmation-details span {
	display: block;
	color: var(--ccm-muted);
	font-size: 13px;
}

.ccm-dashboard-stat strong {
	display: block;
	margin-top: 5px;
	color: var(--ccm-ink);
	font-size: 28px;
	line-height: 1;
}

.ccm-entry-toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin: 0 0 18px;
}

.ccm-entry-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	flex: 1 1 360px;
}

.ccm-entry-tab {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0 12px;
	border: 1px solid var(--ccm-line);
	border-radius: 999px;
	background: #fff;
	color: var(--ccm-ink);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.ccm-entry-tab.is-active {
	border-color: var(--ccm-brand);
	background: var(--ccm-brand);
	color: #fff;
}

.ccm-entry-toolbar input[type="search"] {
	width: min(260px, 100%);
	min-height: 40px;
	border: 1px solid var(--ccm-line);
	border-radius: 8px;
}

.ccm-entry-history {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.ccm-entry-card {
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr) auto;
	gap: 16px;
	align-items: center;
	padding: 16px;
}

.ccm-entry-thumb {
	overflow: hidden;
	width: 88px;
	height: 64px;
	border-radius: 8px;
	background: #e4e7ec;
}

.ccm-entry-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ccm-entry-thumb--empty {
	background: linear-gradient(135deg, #104913, #8b72ff);
}

.ccm-entry-main h3 {
	margin: 0 0 8px;
	color: var(--ccm-ink);
	font-size: 18px;
	line-height: 1.25;
}

.ccm-entry-meta,
.ccm-entry-badges,
.ccm-entry-actions,
.ccm-confirmation-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.ccm-entry-meta {
	color: var(--ccm-muted);
	font-size: 13px;
}

.ccm-status-badge {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0 9px;
	border-radius: 999px;
	background: #f2f4f7;
	color: #344054;
	font-size: 12px;
	font-weight: 800;
}

.ccm-status-badge--confirmed,
.ccm-status-badge--completed,
.ccm-status-badge--processing,
.ccm-status-badge--contest-active {
	background: #dcfae6;
	color: #067647;
}

.ccm-status-badge--pending,
.ccm-status-badge--on-hold,
.ccm-status-badge--contest-upcoming {
	background: #fef0c7;
	color: #b54708;
}

.ccm-status-badge--cancelled,
.ccm-status-badge--refunded,
.ccm-status-badge--failed,
.ccm-status-badge--contest-completed {
	background: #fee4e2;
	color: #b42318;
}

.ccm-login-prompt,
.ccm-confirmation-card {
	padding: 24px;
}

.ccm-login-prompt p {
	margin: 0 0 16px;
	color: var(--ccm-muted);
}

.ccm-confirmation {
	padding: 0;
	background: transparent;
}

.ccm-confirmation-details {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 0 0 20px;
}

.ccm-confirmation-details div {
	padding: 14px;
	border: 1px solid var(--ccm-line);
	border-radius: 8px;
}

.ccm-confirmation-details strong {
	display: block;
	margin-top: 4px;
	color: var(--ccm-ink);
}

.ccm-summary-card {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 22px;
	align-items: center;
	padding: 24px;
}

.ccm-detail-logo {
	width: 112px;
	height: 112px;
	border-radius: 24px;
	font-size: 42px;
}

.ccm-summary-copy h1 {
	margin: 5px 0 6px;
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.05;
}

.ccm-summary-copy p {
	margin: 0;
	color: var(--ccm-muted);
}

.ccm-summary-actions {
	display: flex;
	gap: 10px;
}

.ccm-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: 10px;
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	cursor: pointer;
}

.ccm-button--primary {
	background: var(--ccm-brand);
	color: #fff;
}

.ccm-button--primary:hover {
	background: var(--ccm-brand-dark);
	color: #fff;
}

.ccm-button--secondary {
	border-color: var(--ccm-line);
	background: #fff;
	color: var(--ccm-ink);
}

.ccm-button--disabled {
	background: #eaecf0;
	color: #98a2b3;
	cursor: not-allowed;
}

.ccm-contest-play-header {
	background: #151719;
	color: #fff;
}

.ccm-contest-play-header-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 24px;
	align-items: center;
	min-height: 92px;
}

.ccm-contest-play-title {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	min-width: 0;
}

.ccm-contest-play-title .ccm-detail-logo {
	width: 54px;
	height: 54px;
	border-width: 2px;
	border-radius: 50%;
	font-size: 22px;
	box-shadow: none;
}

.ccm-contest-play-title h1 {
	margin: 0 0 5px;
	overflow: hidden;
	color: #fff;
	font-size: 22px;
	line-height: 1.15;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ccm-contest-play-title p {
	margin: 0;
	color: #a7adb7;
	font-size: 14px;
	font-weight: 700;
}

.ccm-contest-play-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(118px, 1fr));
	gap: 10px;
}

.ccm-contest-play-stats div {
	min-height: 62px;
	padding: 12px 16px;
	border-radius: 4px;
	background: #25272e;
	text-align: center;
}

.ccm-contest-play-stats strong,
.ccm-contest-play-stats span {
	display: block;
}

.ccm-contest-play-stats strong {
	color: #fff;
	font-size: 18px;
	line-height: 1.1;
}

.ccm-contest-play-stats span {
	margin-top: 5px;
	color: #b7bbc4;
	font-size: 13px;
	font-weight: 700;
}

.ccm-contest-play-tabs {
	display: flex;
	gap: 34px;
	min-height: 54px;
}

.ccm-contest-play-tabs a {
	display: inline-flex;
	align-items: center;
	border-bottom: 4px solid transparent;
	color: #fff;
	font-size: 15px;
	font-weight: 850;
	text-decoration: none;
}

.ccm-contest-play-tabs a:hover,
.ccm-contest-play-tabs a.is-active {
	border-bottom-color: #37e4d4;
	color: #37e4d4;
}

.ccm-detail-layout--standings {
	margin-top: 0;
	padding-top: 34px;
}

.ccm-standings-board {
	margin-bottom: 18px;
}

.ccm-standings-summary,
.ccm-standings-empty,
.ccm-standings-scroll {
	border: 1px solid rgba(16, 24, 40, .08);
	background: #fff;
	box-shadow: 0 8px 24px rgba(16, 24, 40, .08);
}

.ccm-standings-summary {
	display: grid;
	grid-template-columns: auto auto minmax(120px, 1fr);
	gap: 22px;
	align-items: center;
	min-height: 78px;
	margin-bottom: 14px;
	padding: 18px 22px;
	border-radius: 12px;
}

.ccm-standings-summary div:last-child {
	text-align: right;
}

.ccm-standings-summary span {
	color: #3d434c;
	font-size: 14px;
	font-weight: 700;
}

.ccm-standings-summary strong {
	color: #111318;
	font-size: 16px;
}

.ccm-standings-scroll {
	overflow-x: auto;
	border-radius: 12px;
}

.ccm-standings-table {
	width: 100%;
	min-width: 860px;
	border-collapse: collapse;
	background: #fff;
}

.ccm-standings-table th,
.ccm-standings-table td {
	padding: 14px 10px;
	border-bottom: 1px solid #eef0f2;
	text-align: left;
	vertical-align: middle;
}

.ccm-standings-table thead th {
	color: #8f949d;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
	white-space: nowrap;
}

.ccm-standings-table tbody th {
	width: 230px;
	background: #fff;
}

.ccm-standings-player {
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
}

.ccm-standings-avatar {
	overflow: hidden;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #e9ebef;
}

.ccm-standings-avatar img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ccm-standings-player strong,
.ccm-standings-player span {
	display: inline;
}

.ccm-standings-player strong {
	color: #252a31;
	font-size: 14px;
}

.ccm-standings-player span {
	margin-left: 4px;
	color: #8f949d;
	font-size: 13px;
}

.ccm-round-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 92px;
	min-height: 54px;
	padding: 0 8px;
	border: 1px solid #d9dde4;
	border-radius: 7px;
	background: #fff;
	color: #7c838d;
	font-size: 12px;
	font-weight: 850;
}

.ccm-round-pill--proceeded {
	border-color: #8ddf9d;
	background: #eefcf0;
	color: #16703a;
}

.ccm-round-pill--eliminated {
	border-color: #f0a6a6;
	background: #fff1f1;
	color: #b42318;
}

.ccm-round-pill--pending {
	color: #a0a5ad;
}

.ccm-standings-table tr.is-eliminated {
	opacity: .72;
}

.ccm-standings-empty {
	padding: 28px;
	border-radius: 12px;
	color: #667085;
	font-weight: 700;
	text-align: center;
}

.ccm-stat-strip {
	display: grid;
	overflow: visible;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin-top: 20px;
	padding: 24px;
}

.ccm-stat-strip div {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 0 20px;
	border-left: 1px solid var(--ccm-line);
}

.ccm-stat-strip div:first-child {
	padding-left: 0;
	border-left: 0;
}

.ccm-stat-strip span,
.ccm-data-list span {
	color: var(--ccm-muted);
	font-size: 13px;
}

.ccm-stat-strip strong {
	font-size: 20px;
}

.ccm-detail-columns {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(320px, .75fr);
	gap: 32px;
	margin-top: 20px;
}

.ccm-detail-main,
.ccm-detail-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.ccm-detail-columns .ccm-detail-card {
	padding: 28px;
}

.ccm-detail-card h2 {
	margin: 0 0 20px;
	font-size: 22px;
}

.ccm-entry-purchase-panel {
	scroll-margin-top: 24px;
	overflow: hidden;
	border: 1px solid #23252b;
	border-radius: 18px;
	background: transparent;
	box-shadow: 0 12px 30px rgba(16, 24, 40, .18);
}

.ccm-purchase-mode {
	margin: 8px;
	padding: 14px 18px;
	border: 2px solid rgba(255, 255, 255, .68);
	border-radius: 999px;
	background: linear-gradient(135deg, #104913, #1f6b26 55%, #a7d7aa);
	color: #fff;
	font-size: 15px;
	font-weight: 900;
	text-align: center;
}

.ccm-purchase-tabs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 4px;
	margin: 8px;
	padding: 4px;
	border: 1px solid #343840;
	border-radius: 999px;
	background: #08090b;
}

.ccm-purchase-tab {
	min-height: 54px;
	padding: 10px 12px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #858996;
	font: inherit;
	font-size: 14px;
	font-weight: 900;
	cursor: pointer;
}

.ccm-purchase-tab.is-active {
	background: linear-gradient(115deg, #a7f638, #13eab3 38%, #20a9f4 72%, #bf45ef);
	color: #050608;
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .58);
}

.ccm-purchase-tab[data-purchase-view="single"].is-active {
	background: linear-gradient(135deg, #104913, #1f6b26 55%, #a7d7aa);
	color: #fff;
}

.ccm-purchase-tab[data-purchase-view="membership"].is-active {
	background: linear-gradient(135deg, #104913, #1f6b26 55%, #a7d7aa);
	color: #fff;
}

.ccm-purchase-tab:focus-visible,
.ccm-membership-plan:focus-visible,
.ccm-membership-submit:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 2px;
}

.ccm-purchase-view[hidden] {
	display: none !important;
}

.ccm-purchase-body {
	margin-top: 10px;
	padding: 24px 20px 20px;
	border: 0;
	border-radius: 18px;
	background: linear-gradient(135deg, #104913, #1f6b26 55%, #a7d7aa);
	color: #fff;
}

.ccm-purchase-body h2 {
	margin: 0 0 8px;
	color: #fff;
	font-size: clamp(22px, 2vw, 28px);
	font-style: italic;
	font-weight: 950;
	line-height: 1.05;
	text-align: center;
	text-transform: uppercase;
}

.ccm-purchase-body > p {
	margin: 0;
	font-size: 14px;
	font-weight: 650;
	text-align: center;
}

.ccm-membership-body {
	margin-top: 10px;
	padding: 24px 20px 20px;
	border-radius: 18px;
	background: linear-gradient(135deg, #104913, #1f6b26 55%, #a7d7aa);
	color: #f4f5f7;
}

.ccm-membership-body h2 {
	margin: 0 0 8px;
	background: linear-gradient(100deg, #a7f638, #13eab3 38%, #20a9f4 72%, #bf45ef);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-size: clamp(20px, 2vw, 27px);
	font-style: italic;
	font-weight: 950;
	line-height: 1.1;
	text-transform: uppercase;
}

.ccm-membership-body > p {
	margin: 0;
	color: #e5e7eb;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.45;
}

.ccm-membership-plans {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin-top: 30px;
}

.ccm-membership-plan-wrap {
	position: relative;
	display: flex;
	min-width: 0;
}

.ccm-membership-plan {
	display: flex;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-width: 0;
	min-height: 112px;
	padding: 12px 8px;
	border: 2px solid #353941;
	border-radius: 10px;
	background: #d3d3d3;
	color: #f7f7f8;
	font: inherit;
	text-align: center;
	cursor: pointer;
}

.ccm-membership-plan-wrap:nth-child(2) .ccm-membership-plan {
	background: #808080;
}

.ccm-membership-plan-wrap:nth-child(3) .ccm-membership-plan {
	background: #000;
}

.ccm-membership-plan-wrap:first-child .ccm-membership-plan {
	color: #000;
}

.ccm-membership-plan.is-active {
	border-color: #39d879;
	box-shadow: inset 0 0 0 1px rgba(38, 232, 195, .45);
}

.ccm-membership-plan strong {
	display: block;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.25;
}

.ccm-membership-plan > .ccm-membership-price {
	display: block;
	color: #2de5b0;
	font-size: 16px;
	font-weight: 950;
	line-height: 1.25;
}

.ccm-membership-plan-wrap:first-child .ccm-membership-price {
	color: #000;
}

.ccm-membership-plan-wrap:nth-child(2) .ccm-membership-price {
	color: #fff;
}

.ccm-membership-plan-wrap:nth-child(3) .ccm-membership-price {
	color: #fff;
}

.ccm-membership-popular {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	display: block;
	max-width: calc(100% - 4px);
	padding: clamp(4px, 1.1vw, 6px) clamp(5px, 1.8vw, 10px);
	border-radius: 999px;
	background: #2db43c;
	color: #fff;
	font-size: clamp(8px, 2vw, 7px);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	transform: translate(-50%, -50%);
}

.ccm-membership-plan .woocommerce-Price-amount,
.ccm-membership-plan .woocommerce-Price-currencySymbol {
	color: inherit;
}

.ccm-membership-benefits {
	min-height: 150px;
	margin-top: 22px;
}

.ccm-membership-details ul {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ccm-membership-details li {
	position: relative;
	padding-left: 30px;
	color: #e5e7eb;
	font-size: 14px;
	line-height: 1.45;
}

.ccm-membership-details li::before {
	position: absolute;
	top: -.12em;
	left: 2px;
	color: #16ed86;
	content: '\2713';
	font-size: 24px;
	font-weight: 900;
}

.ccm-membership-form {
	margin-top: 20px;
}

.ccm-membership-form .ccm-express-checkout {
	margin-top: 0;
}

.ccm-membership-form .ccm-express-divider {
	margin-bottom: 14px;
}

.ccm-membership-entry-note {
	margin: 12px 2px 0;
	color: rgba(255, 255, 255, .72);
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
}

.ccm-membership-redemptions {
	margin: 0 0 28px;
	padding: 22px;
	border: 1px solid #dbe5dc;
	border-radius: 14px;
	background: #f7fbf7;
}

.ccm-membership-redemptions-head,
.ccm-membership-redemption-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.ccm-membership-redemptions-head h3 {
	margin: 0 0 4px;
}

.ccm-membership-redemptions-head p,
.ccm-membership-redemptions-empty {
	margin: 0;
	color: #5f6d61;
}

.ccm-membership-redemptions-head p + p {
	margin-top: 3px;
}

.ccm-membership-redemptions-head > span {
	flex: 0 0 auto;
	font-weight: 700;
}

.ccm-membership-redemption-list {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.ccm-membership-redemption-row {
	padding: 14px;
	border: 1px solid #dbe5dc;
	border-radius: 10px;
	background: #fff;
}

.ccm-membership-redemption-row > div {
	display: grid;
	gap: 3px;
}

.ccm-membership-redemption-row span {
	color: #677269;
	font-size: 13px;
}

.ccm-redeem-notice {
	margin-bottom: 16px;
	padding: 12px 14px;
	border-radius: 8px;
}

.ccm-redeem-notice--success {
	background: #dcf8e3;
	color: #155d27;
}

.ccm-redeem-notice--error {
	background: #fde8e8;
	color: #8b1d1d;
}

@media (max-width: 640px) {
	.ccm-membership-redemptions-head,
	.ccm-membership-redemption-row {
		align-items: stretch;
		flex-direction: column;
	}

	.ccm-membership-redemption-row .ccm-button {
		width: 100%;
	}
}

.ccm-membership-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 54px;
	padding: 10px 16px;
	border: 1px solid rgba(255, 255, 255, .78);
	border-radius: 10px;
	background: #104913;
	color: #050608;
	font: inherit;
	font-size: 17px;
	font-weight: 950;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(22, 237, 134, .16), inset 0 0 0 1px rgba(255, 255, 255, .35);
}

.ccm-membership-submit:hover {
	filter: brightness(1.08);
}

.ccm-quantity-stepper {
	display: grid;
	grid-template-columns: 50px minmax(90px, 1fr) 50px;
	gap: 12px;
	align-items: center;
	margin: 24px 0 18px;
}

.ccm-quantity-change {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, .8);
	border-radius: 50%;
	background: transparent;
	color: #fff;
	font: inherit;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
}

.ccm-quantity-change:disabled {
	cursor: not-allowed;
	opacity: .36;
}

.ccm-quantity-stepper label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	align-items: center;
}

.ccm-quantity-number {
	width: 100%;
	height: 62px;
	padding: 8px;
	border: 1px solid #111;
	border-radius: 10px;
	background: #fff;
	color: #fff !important;
	font: inherit;
	font-size: 32px;
	font-weight: 900;
	line-height: 1;
	text-align: center;
	-webkit-text-fill-color: #fff;
	-moz-appearance: textfield;
}

input.ccm-quantity-number.qty.filled,
input.ccm-quantity-number.qty.fill_inited {
	color: #fff !important;
	-webkit-text-fill-color: #fff !important;
}

.ccm-quantity-number::-webkit-inner-spin-button,
.ccm-quantity-number::-webkit-outer-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

.ccm-quantity-stepper small {
	font-size: 13px;
	font-weight: 850;
}

.ccm-quantity-range-wrap {
	margin-bottom: 16px;
}

.ccm-quantity-range {
	--ccm-range-progress: 0%;
	width: 100%;
	height: 28px;
	margin: 0;
	background: transparent;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
}

.ccm-quantity-range::-webkit-slider-runnable-track {
	height: 12px;
	border-radius: 999px;
	background: linear-gradient(to right, #f0002f 0 var(--ccm-range-progress), #080808 var(--ccm-range-progress) 100%);
}

.ccm-quantity-range::-webkit-slider-thumb {
	width: 30px;
	height: 30px;
	margin-top: -9px;
	border: 2px solid #8f001c;
	border-radius: 50%;
	background: #f0002f;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, .55);
	-webkit-appearance: none;
}

.ccm-quantity-range::-moz-range-track {
	height: 12px;
	border-radius: 999px;
	background: #080808;
}

.ccm-quantity-range::-moz-range-progress {
	height: 12px;
	border-radius: 999px;
	background: #f0002f;
}

.ccm-quantity-range::-moz-range-thumb {
	width: 28px;
	height: 28px;
	border: 2px solid #8f001c;
	border-radius: 50%;
	background: #f0002f;
	box-shadow: 0 0 0 2px rgba(255, 255, 255, .55);
}

.ccm-quantity-range-wrap > div {
	display: flex;
	justify-content: space-between;
	margin-top: -2px;
	font-size: 12px;
	font-weight: 750;
}

.ccm-quick-spends {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.ccm-quick-spends button {
	min-height: 46px;
	padding: 8px;
	border: 1px solid rgba(255, 255, 255, .8);
	border-radius: 9px;
	background: rgba(255, 255, 255, .08);
	color: #fff;
	font: inherit;
	font-size: 17px;
	font-weight: 900;
	cursor: pointer;
}

.ccm-quick-spends button:hover:not(:disabled),
.ccm-quick-spends button:focus-visible:not(:disabled) {
	background: rgba(255, 255, 255, .52);
}

.ccm-quick-spends button:disabled {
	cursor: not-allowed;
	opacity: .36;
}

.ccm-quick-spends .woocommerce-Price-amount,
.ccm-quick-spends .woocommerce-Price-currencySymbol {
	color: inherit;
}

.ccm-purchase-summary {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, .35);
}

.ccm-purchase-summary > div {
	min-width: 0;
}

.ccm-purchase-summary strong,
.ccm-purchase-summary small {
	display: block;
}

.ccm-purchase-summary > div > strong {
	font-size: 14px;
}

.ccm-purchase-calculation,
.ccm-purchase-bonus {
	margin-top: 3px;
	font-size: 11px;
	font-weight: 700;
}

.ccm-purchase-bonus {
	color: #d8f5da;
}

.ccm-purchase-total {
	flex: 0 0 auto;
	font-size: 27px;
	font-weight: 950;
}

.ccm-purchase-total .woocommerce-Price-amount,
.ccm-purchase-total .woocommerce-Price-currencySymbol {
	color: inherit;
}

.ccm-purchase-form {
	margin-top: 16px;
}

.ccm-express-checkout {
	margin-top: 18px;
}

.ccm-express-checkout.is-loading {
	margin-top: 0;
}

.ccm-express-checkout.is-loading > p,
.ccm-express-checkout.is-loading .ccm-express-divider {
	display: none;
}

.ccm-express-checkout > p {
	margin: 0 0 9px;
	font-size: 12px;
	font-weight: 850;
	text-align: center;
	text-transform: uppercase;
}

.ccm-express-checkout .wcpay-express-checkout-wrapper,
.ccm-express-checkout #wcpay-express-checkout-element {
	width: 100%;
	margin: 0;
}

.ccm-express-checkout #wcpay-woopay-button,
.ccm-express-checkout #wcpay-express-checkout-button-separator {
	display: none !important;
}

.ccm-express-checkout .ppc-button-wrapper {
	display: flex !important;
	flex-direction: column;
	gap: 10px;
	align-items: stretch;
	justify-content: flex-start !important;
	height: auto !important;
	min-height: 0 !important;
	margin: 14px 0 0 !important;
	padding: 0 !important;
}

.ccm-express-checkout .ppcp-messages,
.ccm-express-checkout #ppc-button-ppcp-gateway {
	flex: 0 0 auto;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
}

.ccm-express-checkout .ppcp-messages iframe,
.ccm-express-checkout #ppc-button-ppcp-gateway iframe {
	display: block;
}

.ccm-express-divider {
	display: flex;
	gap: 10px;
	align-items: center;
	margin: 14px 0 0;
	color: rgba(255, 255, 255, .82);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.ccm-express-divider::before,
.ccm-express-divider::after {
	flex: 1;
	height: 1px;
	background: rgba(255, 255, 255, .35);
	content: '';
}

.ccm-purchase-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 50px;
	padding: 10px 16px;
	border: 1px solid #8f001c;
	border-radius: 10px;
	background: #f0002f;
	color: #fff;
	font: inherit;
	font-size: 16px;
	font-weight: 900;
	cursor: pointer;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .6);
}

.ccm-purchase-submit:hover,
.ccm-purchase-submit:focus-visible {
	background: #d9002b;
}

.ccm-secure-checkout {
	margin-top: 16px !important;
	font-size: 11px !important;
	font-weight: 800 !important;
	text-align: center;
}

.ccm-entrants-panel {
	padding: 4px 0 0;
}

.ccm-entrants-panel h2 {
	margin: 0 0 24px;
	color: var(--ccm-ink);
	font-size: 28px;
	line-height: 1.15;
}

.ccm-entrant-list {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.ccm-entrant-row {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr) auto;
	gap: 14px;
	align-items: center;
	min-height: 64px;
}

.ccm-entrant-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	width: 48px;
	height: 48px;
	border: 2px solid rgba(16, 73, 19, .2);
	border-radius: 999px;
	background: #b7f7c8;
	color: var(--ccm-brand);
}

.ccm-entrant-avatar img,
.ccm-entrant-avatar-img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	object-fit: cover;
}

.ccm-entrant-name {
	min-width: 0;
}

.ccm-entrant-name strong {
	display: block;
	overflow: hidden;
	color: var(--ccm-ink);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.25;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ccm-entrant-name span {
	display: block;
	margin-top: 3px;
	color: var(--ccm-muted);
	font-size: 12px;
	font-weight: 700;
}

.ccm-entrant-follow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 14px;
	border: 0;
	border-radius: 6px;
	background: #101114;
	color: #fff;
	font: inherit;
	font-size: 13px;
	font-weight: 800;
	cursor: default;
	opacity: 1;
}

.ccm-entrants-empty {
	padding: 18px;
	border: 1px solid rgba(16, 24, 40, .08);
	border-radius: 10px;
	background: rgba(255, 255, 255, .65);
	color: var(--ccm-muted);
}

.ccm-lead {
	color: var(--ccm-ink);
	font-size: 18px;
	line-height: 1.6;
}

.ccm-rich-content,
.ccm-rules {
	color: #475467;
	line-height: 1.7;
}

.ccm-rules {
	margin: 0;
	padding-left: 0;
}

.ccm-rule + .ccm-rule {
	margin-top: 10px;
}

.ccm-data-list > div {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 13px 0;
	border-top: 1px solid var(--ccm-line);
}

.ccm-data-list > div:first-child {
	padding-top: 0;
	border-top: 0;
}

.ccm-data-list strong {
	text-align: right;
}

.ccm-payout-list {
	overflow: hidden;
	border-radius: 12px;
	background: #fff;
}

.ccm-payout-list > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 17px 12px;
	border-top: 1px solid #edf0f2;
}

.ccm-payout-list > div:first-child {
	border-top: 0;
}

.ccm-payout-list span {
	color: var(--ccm-ink);
	font-size: 15px;
}

.ccm-payout-list strong {
	color: var(--ccm-ink);
	font-size: 18px;
	font-weight: 900;
	text-align: right;
}

.ccm-payout-list > .ccm-payout-guaranteed {
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	gap: 14px;
	padding-top: 16px;
	padding-bottom: 16px;
}

.ccm-payout-list .ccm-payout-guaranteed > .ccm-guaranteed-label {
	color: var(--ccm-muted);
	font-size: 15px;
	font-weight: 700;
}

.ccm-payout-guaranteed > p {
	margin: 0;
	color: var(--ccm-ink);
	font-size: 14px;
	line-height: 1.55;
}

.ccm-payout-details-open {
	align-self: center;
	padding: 3px 4px;
	border: 0;
	background: transparent;
	color: #10b9c4;
	font: inherit;
	font-size: 14px;
	font-weight: 850;
	cursor: pointer;
}

.ccm-payout-details-open:hover,
.ccm-payout-details-open:focus-visible {
	color: #087f8b;
	text-decoration: underline;
}

body.ccm-payout-modal-open {
	overflow: hidden;
}

.ccm-payout-modal[hidden] {
	display: none !important;
}

.ccm-payout-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.ccm-payout-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(9, 12, 16, .72);
	backdrop-filter: blur(3px);
}

.ccm-payout-modal-dialog {
	position: relative;
	z-index: 1;
	overflow: auto;
	width: min(920px, 100%);
	max-height: calc(100vh - 48px);
	border-radius: 16px;
	background: #fff;
	color: var(--ccm-ink);
	box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

.ccm-payout-modal-dialog:focus {
	outline: none;
}

.ccm-payout-modal-dialog > header {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 92px;
	padding: 20px 72px;
}

.ccm-payout-modal-dialog h2 {
	margin: 0;
	color: #111318;
	font-size: 24px;
	font-weight: 900;
	line-height: 1.2;
}

.ccm-payout-modal-close {
	position: absolute;
	top: 22px;
	right: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #f0f2f4;
	color: #4d5661;
	font: inherit;
	font-size: 32px;
	font-weight: 300;
	line-height: 1;
	cursor: pointer;
}

.ccm-payout-modal-close:hover,
.ccm-payout-modal-close:focus-visible {
	background: #e2e6ea;
	color: #111318;
}

.ccm-payout-modal-content {
	padding: 8px 36px 34px;
}

.ccm-payout-modal-intro {
	margin: 0 0 28px;
	color: #252a31;
	font-size: 16px;
	line-height: 1.65;
}

.ccm-payout-modal-list > div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 0;
	border-bottom: 1px solid #e8eaed;
}

.ccm-payout-modal-list span {
	font-size: 16px;
}

.ccm-payout-modal-list strong {
	font-size: 20px;
	font-weight: 900;
	text-align: right;
}

.ccm-payout-modal-guarantee {
	padding-top: 16px;
}

.ccm-payout-modal-guarantee > .ccm-guaranteed-label {
	color: var(--ccm-muted);
	font-size: 16px;
	font-weight: 750;
}

.ccm-payout-modal-guarantee > p {
	margin: 14px 0 0;
	font-size: 16px;
	line-height: 1.55;
}

@media (max-width: 620px) {
	.ccm-payout-modal {
		padding: 12px;
	}

	.ccm-payout-modal-dialog {
		max-height: calc(100vh - 24px);
		border-radius: 12px;
	}

	.ccm-payout-modal-dialog > header {
		min-height: 76px;
		padding: 16px 60px;
	}

	.ccm-payout-modal-dialog h2 {
		font-size: 20px;
	}

	.ccm-payout-modal-close {
		top: 16px;
		right: 16px;
		width: 40px;
		height: 40px;
	}

	.ccm-payout-modal-content {
		padding: 4px 20px 24px;
	}

	.ccm-payout-modal-intro,
	.ccm-payout-modal-guarantee > p {
		font-size: 14px;
	}

	.ccm-payout-modal-list strong {
		font-size: 17px;
	}
}

.ccm-leaderboard {
	padding: 32px 0;
	background: transparent;
	color: #f4f4f5;
}

.ccm-leaderboard-shell {
	width: min(1240px, calc(100% - 36px));
	margin: 0 auto;
}

.ccm-leaderboard-head {
	margin: 0 0 18px;
}

.ccm-leaderboard-head h2 {
	margin: 0;
	color: #f4f4f5;
	font-size: clamp(24px, 3vw, 36px);
	line-height: 1.15;
}

.ccm-leaderboard-table-wrap {
	overflow-x: auto;
	border-top: 1px solid #24272d;
	border-bottom: 1px solid #24272d;
}

.ccm-leaderboard-table {
	width: 100%;
	min-width: 760px;
	border-collapse: collapse;
	background: transparent;
	color: #e6e7eb;
	table-layout: fixed;
}

.ccm-leaderboard-table tr {
	background: transparent;
}

.ccm-leaderboard-table th,
.ccm-leaderboard-table td {
	padding: 22px 0;
	border-bottom: 1px solid #1f2228;
	font-size: 16px;
	line-height: 1.35;
	text-align: left;
	vertical-align: middle;
}

.ccm-leaderboard-table th {
	color: #f4f4f5;
	font-size: 14px;
	font-weight: 800;
}

.ccm-leaderboard-table th:nth-child(1),
.ccm-leaderboard-table td:nth-child(1) {
	width: 84px;
}

.ccm-leaderboard-table th:nth-child(3),
.ccm-leaderboard-table td:nth-child(3) {
	width: 210px;
}

.ccm-leaderboard-table th:nth-child(4),
.ccm-leaderboard-table td:nth-child(4) {
	width: 140px;
	text-align: right;
}

.ccm-leaderboard-table tbody td:nth-child(3),
.ccm-leaderboard-table tbody td:nth-child(4) {
	color: #e4e5e9;
}

.ccm-leaderboard-place {
	color: #ffb000;
	font-size: 17px;
	font-weight: 900;
}

.ccm-leaderboard-user {
	display: block;
	overflow: hidden;
	color: #00e68a;
	font-weight: 900;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.ccm-leaderboard-entries {
	color: #e4e5e9;
	font-size: 17px;
	font-weight: 900;
}

.ccm-leaderboard-empty {
	padding: 26px 0;
	border-top: 1px solid #24272d;
	border-bottom: 1px solid #24272d;
	color: #b8bcc7;
	font-weight: 700;
}

@media (max-width: 920px) {
	.ccm-contest-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ccm-dashboard-summary {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.ccm-summary-card {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.ccm-summary-actions {
		grid-column: 1 / -1;
	}

	.ccm-stat-strip {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 0;
	}

	.ccm-stat-strip div:nth-child(3) {
		padding-left: 0;
		border-left: 0;
	}

	.ccm-detail-columns {
		grid-template-columns: 1fr;
	}

	.ccm-entrants-panel {
		padding: 24px;
		border: 1px solid rgba(16, 24, 40, .06);
		border-radius: 18px;
		background: #fff;
		box-shadow: 0 8px 28px rgba(16, 24, 40, .08);
	}

	.ccm-entry-purchase-panel {
		width: min(100%, 520px);
		margin: 0 auto;
	}
}

@media (max-width: 640px) {
	.ccm-dashboard-summary,
	.ccm-confirmation-details {
		grid-template-columns: 1fr;
	}

	.ccm-entry-card {
		grid-template-columns: 72px minmax(0, 1fr);
	}

	.ccm-entry-thumb {
		width: 72px;
		height: 56px;
	}

	.ccm-entry-actions {
		grid-column: 1 / -1;
	}

	.ccm-entry-toolbar input[type="search"],
	.ccm-entry-toolbar .ccm-button {
		width: 100%;
	}

	.ccm-leaderboard {
		padding: 20px 0;
	}

	.ccm-leaderboard-shell {
		width: min(100% - 24px, 1240px);
	}

	.ccm-leaderboard-table-wrap {
		overflow-x: visible;
	}

	.ccm-leaderboard-table {
		min-width: 0;
	}

	.ccm-leaderboard-table thead {
		position: absolute;
		overflow: hidden;
		width: 1px;
		height: 1px;
		clip: rect(0 0 0 0);
		white-space: nowrap;
	}

	.ccm-leaderboard-table,
	.ccm-leaderboard-table tbody,
	.ccm-leaderboard-table tr,
	.ccm-leaderboard-table td {
		display: block;
		width: 100%;
	}

	.ccm-leaderboard-table td:nth-child(1),
	.ccm-leaderboard-table td:nth-child(2),
	.ccm-leaderboard-table td:nth-child(3),
	.ccm-leaderboard-table td:nth-child(4) {
		width: 100%;
		text-align: right;
	}

	.ccm-leaderboard-table tr {
		padding: 16px 0;
		border-bottom: 1px solid #1f2228;
	}

	.ccm-leaderboard-table td {
		display: flex;
		justify-content: space-between;
		gap: 18px;
		padding: 6px 0;
		border-bottom: 0;
		text-align: right;
	}

	.ccm-leaderboard-table td::before {
		content: attr(data-label);
		color: #8e95a3;
		font-size: 13px;
		font-weight: 800;
		text-align: left;
	}

	.ccm-leaderboard-user {
		white-space: normal;
	}
}

@media (max-width: 620px) {
	.ccm-landing,
	.ccm-detail {
		padding-bottom: 44px;
	}

	.ccm-container {
		width: min(100% - 24px, 1180px);
	}

	.ccm-contest-grid {
		grid-template-columns: 1fr;
	}

	.ccm-card-banner {
		height: 165px;
	}

	.ccm-detail-layout {
		margin-top: -36px;
	}

	.ccm-summary-card {
		display: block;
		overflow: visible;
		padding: 18px;
	}

	.ccm-detail-logo {
		width: 84px;
		height: 84px;
		margin-top: -58px;
		margin-bottom: 16px;
		border-radius: 19px;
	}

	.ccm-summary-actions {
		display: grid;
		grid-template-columns: 1fr;
		margin-top: 20px;
	}

	.ccm-stat-strip {
		grid-template-columns: 1fr 1fr;
		padding: 18px;
	}

	.ccm-stat-strip div {
		padding: 0 12px;
	}

	.ccm-stat-strip strong {
		font-size: 16px;
	}

	.ccm-detail-columns .ccm-detail-card {
		padding: 20px;
	}

	.ccm-purchase-body {
		padding: 22px 16px 18px;
	}

	.ccm-quantity-stepper {
		grid-template-columns: 44px minmax(86px, 1fr) 44px;
		gap: 9px;
	}

	.ccm-quantity-change {
		width: 44px;
		height: 44px;
	}

	.ccm-entrant-row {
		grid-template-columns: 48px minmax(0, 1fr);
	}

	.ccm-entrant-follow {
		grid-column: 2;
		justify-self: start;
	}
}
.ccm-promotion-badge {
	display: inline-block;
	margin: 8px 0;
	padding: 6px 10px;
	border-radius: 999px;
	background: #e8f5e9;
	color: #176b2c;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.3;
}

.ccm-my-contests {
	min-height: 720px;
	margin: 0;
	background: #f4f5f7;
}

.ccm-my-contests-header {
	background-image: linear-gradient(135deg, #104913, #1f6b26 55%, #a7d7aa);
	color: #fff;
}

.ccm-my-contests-container {
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.ccm-my-contests-header h2 {
	margin: 0;
	padding: 30px 0 22px;
	color: #fff;
	font-size: 34px;
	line-height: 1.1;
}

.ccm-my-contests-tabs {
	display: flex;
	align-items: flex-end;
	gap: 34px;
	min-height: 48px;
}

.ccm-my-contests-tab {
	display: inline-flex;
	align-items: center;
	min-height: 48px;
	border-bottom: 4px solid transparent;
	color: rgba(255, 255, 255, .9);
	font-size: 15px;
	font-weight: 850;
	text-decoration: none;
}

.ccm-my-contests-tab:hover,
.ccm-my-contests-tab.is-active {
	border-bottom-color: #37e4d4;
	color: #37e4d4;
}

.ccm-my-contests-body {
	padding: 24px 0 80px;
}

.ccm-my-contests-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(280px, 1fr));
	gap: 20px;
	max-width: 1040px;
}

.ccm-my-contest-card,
.ccm-my-contests-empty {
	border: 1px solid rgba(16, 24, 40, .08);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 12px 28px rgba(16, 24, 40, .1);
}

.ccm-my-contest-card {
	overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease;
}

.ccm-my-contest-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 34px rgba(16, 24, 40, .14);
}

.ccm-my-contest-card-link {
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr);
	gap: 16px;
	min-height: 136px;
	padding: 20px;
	color: inherit;
	text-decoration: none;
}

.ccm-my-contest-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #75e8e1;
	color: #101114;
	font-size: 23px;
	font-weight: 900;
}

.ccm-my-contest-logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ccm-my-contest-logo--empty {
	background: #75e8e1;
}

.ccm-my-contest-main h3 {
	margin: 4px 0 5px;
	color: #1c2026;
	font-size: 19px;
	line-height: 1.2;
}

.ccm-my-contest-main p {
	margin: 0;
	color: #8f949d;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
}

.ccm-my-contest-progress {
	overflow: hidden;
	height: 4px;
	margin: 22px 0 16px;
	border-radius: 999px;
	background: #eceff2;
}

.ccm-my-contest-progress span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: #37e4d4;
}

.ccm-my-contest-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.ccm-my-contest-stats div {
	min-width: 0;
}

.ccm-my-contest-stats strong {
	display: block;
	overflow-wrap: anywhere;
	color: #1c2026;
	font-size: 18px;
	line-height: 1.1;
}

.ccm-my-contest-stats span {
	display: block;
	margin-top: 5px;
	color: #a0a4ab;
	font-size: 13px;
	line-height: 1.2;
}

.ccm-my-contests-count {
	margin: 92px 0 0;
	color: #969ba3;
	font-size: 16px;
	text-align: center;
}

.ccm-my-contests-empty-wrap {
	display: flex;
	justify-content: center;
	padding-top: 12px;
}

.ccm-my-contests-empty {
	width: min(460px, 100%);
	padding: 42px 48px;
	text-align: center;
}

.ccm-my-contests-empty h3 {
	margin: 18px 0 12px;
	color: #20242a;
	font-size: 26px;
	line-height: 1.15;
}

.ccm-my-contests-empty p {
	margin: 0;
	color: #5d6672;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.45;
}

.ccm-my-contests-empty .ccm-button {
	width: min(280px, 100%);
	margin-top: 34px;
}

.ccm-button--dark {
	background: #101114;
	color: #fff;
}

.ccm-button--dark:hover {
	background: #25282f;
	color: #fff;
}

.ccm-my-contests-empty-icon {
	position: relative;
	display: inline-block;
	width: 64px;
	height: 64px;
	color: #bfc2c8;
}

.ccm-my-contests-empty-icon::before,
.ccm-my-contests-empty-icon::after {
	position: absolute;
	display: block;
	content: "";
}

.ccm-my-contests-empty-icon--invites::before {
	top: 14px;
	left: 12px;
	width: 36px;
	height: 36px;
	border-top: 6px solid currentColor;
	border-right: 6px solid currentColor;
	transform: rotate(45deg) skew(-14deg, -14deg);
	transform-origin: center;
}

.ccm-my-contests-empty-icon--invites::after {
	top: 25px;
	left: 25px;
	width: 22px;
	height: 6px;
	border-radius: 999px;
	background: currentColor;
	transform: rotate(-32deg);
}

.ccm-my-contests-empty-icon--active::before {
	top: 11px;
	left: 18px;
	width: 28px;
	height: 30px;
	border: 6px solid currentColor;
	border-top-width: 7px;
	border-radius: 0 0 16px 16px;
}

.ccm-my-contests-empty-icon--active::after {
	left: 22px;
	bottom: 8px;
	width: 20px;
	height: 20px;
	border-bottom: 6px solid currentColor;
	border-left: 6px solid currentColor;
	border-radius: 0 0 0 8px;
	transform: rotate(-45deg);
}

.ccm-my-contests-empty-icon--final::before {
	top: 12px;
	left: 12px;
	width: 40px;
	height: 40px;
	border: 6px solid currentColor;
	border-radius: 50%;
}

.ccm-my-contests-empty-icon--final::after {
	top: 30px;
	left: 22px;
	width: 22px;
	height: 6px;
	border-radius: 999px;
	background: currentColor;
}

@media (max-width: 760px) {
	.ccm-my-contests-container {
		width: min(100% - 28px, 1180px);
	}

	.ccm-my-contests-header h2 {
		padding-top: 24px;
		font-size: 30px;
	}

	.ccm-my-contests-tabs {
		gap: 26px;
		overflow-x: auto;
	}

	.ccm-my-contests-grid {
		grid-template-columns: 1fr;
	}

	.ccm-my-contest-card-link {
		grid-template-columns: 52px minmax(0, 1fr);
		gap: 14px;
		padding: 18px;
	}

	.ccm-my-contest-logo {
		width: 48px;
		height: 48px;
	}

	.ccm-my-contest-main h3 {
		font-size: 17px;
	}

	.ccm-my-contest-stats strong {
		font-size: 16px;
	}

	.ccm-my-contests-empty {
		padding: 34px 24px;
	}

	.ccm-my-contests-empty h3 {
		font-size: 24px;
	}

	.ccm-my-contests-empty p {
		font-size: 16px;
	}
}

@media (max-width: 760px) {
	.ccm-contest-play-header-inner {
		grid-template-columns: 1fr;
		gap: 16px;
		padding-top: 20px;
		padding-bottom: 14px;
	}

	.ccm-contest-play-title {
		grid-template-columns: 48px minmax(0, 1fr);
	}

	.ccm-contest-play-title .ccm-detail-logo {
		width: 46px;
		height: 46px;
		margin: 0;
		border-radius: 50%;
	}

	.ccm-contest-play-title h1 {
		font-size: 19px;
	}

	.ccm-contest-play-stats {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		width: 100%;
	}

	.ccm-contest-play-stats div {
		min-height: 58px;
		padding: 10px 8px;
	}

	.ccm-contest-play-stats strong {
		font-size: 15px;
	}

	.ccm-contest-play-stats span {
		font-size: 12px;
	}

	.ccm-contest-play-tabs {
		gap: 24px;
		overflow-x: auto;
	}

	.ccm-detail-layout--standings {
		padding-top: 22px;
	}

	.ccm-standings-summary {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 16px;
	}

	.ccm-standings-summary div:last-child {
		text-align: left;
	}
}
