:root {
	--ccw-ink: #071019;
	--ccw-panel: #101c27;
	--ccw-panel-2: #162532;
	--ccw-line: rgba(190, 204, 215, .2);
	--ccw-steel: #c2ccd4;
	--ccw-gold: #d2ad61;
	--ccw-gold-light: #f4d78f;
	--ccw-red: #c92723;
	--ccw-red-dark: #7f1413;
	--ccw-blue: #2867a6;
	--ccw-white: #f7f9fb;
}

.ccw-arena,
.ccw-arena * { box-sizing: border-box; }

.ccw-arena {
	position: relative;
	width: min(1500px, calc(100vw - 32px));
	max-width: none !important;
	margin: 28px 50%;
	transform: translateX(-50%);
	color: var(--ccw-white);
	font-family: Inter, "Arial Narrow", Arial, sans-serif;
	background:
		radial-gradient(circle at 13% -10%, rgba(201, 39, 35, .18), transparent 30%),
		radial-gradient(circle at 90% 8%, rgba(40, 103, 166, .18), transparent 28%),
		linear-gradient(145deg, #09131d 0%, #0a1118 100%);
	border: 1px solid rgba(210, 173, 97, .32);
	border-radius: 20px;
	box-shadow: 0 28px 80px rgba(0, 0, 0, .48), inset 0 0 0 1px rgba(255,255,255,.025);
	overflow: hidden;
	isolation: isolate;
}

.ccw-arena::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: -1;
	opacity: .12;
	background-image: linear-gradient(135deg, transparent 47%, rgba(255,255,255,.12) 49%, transparent 51%);
	background-size: 13px 13px;
}

.ccw-hero {
	position: relative;
	min-height: 430px;
	padding: 72px clamp(28px, 7vw, 110px) 82px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 380px;
	align-items: center;
	gap: 50px;
	background:
		linear-gradient(90deg, rgba(6,15,23,.98) 0%, rgba(8,17,26,.92) 54%, rgba(6,15,23,.56) 100%),
		repeating-linear-gradient(125deg, transparent 0 20px, rgba(255,255,255,.018) 21px 22px);
	border-bottom: 1px solid var(--ccw-line);
}

.ccw-hero::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--ccw-red) 0 34%, var(--ccw-gold) 34% 66%, var(--ccw-blue) 66%);
	box-shadow: 0 0 22px rgba(210, 173, 97, .38);
}

.ccw-kicker,
.ccw-form-head > span,
.ccw-mini-head > div > span {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	color: var(--ccw-gold-light);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .22em;
	text-transform: uppercase;
}

.ccw-kicker::before,
.ccw-form-head > span::before {
	content: "";
	width: 30px;
	height: 2px;
	background: var(--ccw-red);
	box-shadow: 0 0 8px var(--ccw-red);
}

.ccw-hero h1 {
	margin: 0 0 18px;
	font-size: clamp(46px, 7vw, 92px);
	line-height: .86;
	font-weight: 950;
	letter-spacing: -.06em;
	text-transform: uppercase;
	text-wrap: balance;
}

.ccw-hero h1 em {
	position: relative;
	display: inline-block;
	padding: 8px 20px 10px 14px;
	color: #fff;
	font-style: normal;
	background: linear-gradient(145deg, #ed3932, #9d1716);
	clip-path: polygon(0 0, 100% 0, 91% 100%, 0 100%);
	text-shadow: 0 4px 0 rgba(0,0,0,.2);
	box-shadow: 0 12px 40px rgba(201,39,35,.3);
}

.ccw-hero h1 span { color: var(--ccw-steel); font-size: .62em; letter-spacing: -.025em; }

.ccw-hero-copy > p {
	max-width: 720px;
	margin: 0;
	color: #c4cdd5;
	font-size: clamp(16px, 1.6vw, 20px);
	line-height: 1.65;
}

.ccw-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.ccw-btn,
.ccw-arena button.ccw-btn,
.ccw-arena a.ccw-btn {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 12px 25px;
	border: 1px solid transparent;
	border-radius: 7px;
	font: 800 12px/1 Inter, Arial, sans-serif;
	letter-spacing: .11em;
	text-decoration: none !important;
	text-transform: uppercase;
	cursor: pointer;
	transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ccw-btn:hover { transform: translateY(-2px); }
.ccw-btn-red { color: #fff !important; background: linear-gradient(145deg, #e0342e, #a01917) !important; border-color: #f15751 !important; box-shadow: 0 10px 25px rgba(201,39,35,.25); }
.ccw-btn-red:hover { box-shadow: 0 14px 32px rgba(201,39,35,.42); }
.ccw-btn-ghost { color: var(--ccw-white) !important; background: rgba(255,255,255,.04) !important; border-color: rgba(255,255,255,.24) !important; }
.ccw-btn-ghost:hover { background: rgba(255,255,255,.1) !important; }
.ccw-btn-gold { color: #111 !important; background: linear-gradient(145deg, #f2d486, #b98d38) !important; border-color: #f5dd9c !important; }

.ccw-radar {
	position: relative;
	width: min(30vw, 320px);
	aspect-ratio: 1;
	margin: auto;
	border: 1px solid rgba(210,173,97,.35);
	border-radius: 50%;
	background:
		linear-gradient(90deg, transparent 49.7%, rgba(210,173,97,.14) 50%, transparent 50.3%),
		linear-gradient(0deg, transparent 49.7%, rgba(210,173,97,.14) 50%, transparent 50.3%),
		radial-gradient(circle, transparent 0 25%, rgba(210,173,97,.2) 25.5% 26%, transparent 26.5% 49%, rgba(210,173,97,.2) 49.5% 50%, transparent 50.5% 73%, rgba(210,173,97,.2) 73.5% 74%, transparent 74.5%),
		radial-gradient(circle at center, #172737, #09141e 70%);
	box-shadow: 0 0 70px rgba(40,103,166,.18), inset 0 0 30px rgba(0,0,0,.8);
}

.ccw-radar::before,
.ccw-radar::after {
	content: "";
	position: absolute;
	inset: 10%;
	border-radius: 50%;
	border: 2px solid var(--ccw-gold);
	opacity: .65;
	box-shadow: 0 0 20px rgba(210,173,97,.4);
}

.ccw-radar::after { inset: 24%; border-color: rgba(194,204,212,.55); border-width: 1px; }
.ccw-radar i { position: absolute; top: 50%; width: 48%; height: 3px; transform-origin: 100% 50%; }
.ccw-radar i:nth-child(1) { left: 2%; transform: rotate(22deg); background: linear-gradient(90deg, transparent, var(--ccw-red)); box-shadow: 0 0 10px var(--ccw-red); }
.ccw-radar i:nth-child(2) { right: 2%; transform: rotate(-28deg); transform-origin: 0 50%; background: linear-gradient(90deg, var(--ccw-blue), transparent); box-shadow: 0 0 10px var(--ccw-blue); }
.ccw-radar i:nth-child(3) { left: 2%; transform: rotate(145deg); background: linear-gradient(90deg, transparent, rgba(210,173,97,.8)); animation: ccw-sweep 7s linear infinite; }
.ccw-radar span { position: absolute; z-index: 2; inset: 37%; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(145deg, #d1322c, #7d0e0d); border: 3px solid #f2c875; box-shadow: 0 0 0 8px #0a141d, 0 0 30px rgba(201,39,35,.7); font-size: clamp(28px,4vw,54px); font-weight: 950; font-style: italic; }

@keyframes ccw-sweep { to { transform: rotate(505deg); } }

.ccw-statline {
	position: absolute;
	left: clamp(28px, 7vw, 110px);
	right: clamp(28px, 7vw, 110px);
	bottom: 19px;
	display: flex;
	gap: 38px;
}

.ccw-statline div { display: flex; align-items: baseline; gap: 8px; }
.ccw-statline strong { color: #fff; font-size: 19px; }
.ccw-statline span { color: #84919c; font-size: 9px; font-weight: 800; letter-spacing: .14em; }

.ccw-tabs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding: 0 clamp(16px, 4vw, 60px);
	background: rgba(5,12,18,.9);
	border-bottom: 1px solid var(--ccw-line);
}

.ccw-tab {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 78px;
	color: #8f9aa4 !important;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-decoration: none !important;
	transition: color .2s ease, background .2s ease;
}

.ccw-tab:hover,
.ccw-tab.is-active { color: #fff !important; background: linear-gradient(180deg, rgba(255,255,255,.045), transparent); }
.ccw-tab.is-active::after { content: ""; position: absolute; left: 20%; right: 20%; bottom: -1px; height: 3px; background: var(--ccw-red); box-shadow: 0 -4px 15px rgba(201,39,35,.6); }
.ccw-tab-icon { color: var(--ccw-gold); font-size: 20px; }
.ccw-tab b { display: grid; place-items: center; min-width: 22px; height: 22px; padding: 0 6px; border-radius: 11px; color: #fff; background: #263847; font-size: 10px; }

.ccw-view { min-height: 360px; padding: clamp(22px, 4vw, 58px); }
.ccw-battle-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 25px; }

.ccw-battle {
	position: relative;
	min-width: 0;
	background: linear-gradient(150deg, rgba(23,38,51,.98), rgba(10,19,27,.98));
	border: 1px solid rgba(194,204,212,.19);
	border-radius: 14px;
	box-shadow: 0 16px 38px rgba(0,0,0,.3), inset 0 1px rgba(255,255,255,.04);
	overflow: hidden;
	transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.ccw-battle:hover { transform: translateY(-3px); border-color: rgba(210,173,97,.38); box-shadow: 0 24px 48px rgba(0,0,0,.42); }
.ccw-battle-top { display: grid; grid-template-columns: 1fr auto auto; align-items: center; min-height: 58px; padding: 10px 18px; gap: 14px; background: rgba(2,8,13,.48); border-bottom: 1px solid var(--ccw-line); }
.ccw-battle-number { color: #8e9aa4; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.ccw-status { display: inline-flex; align-items: center; gap: 7px; color: #d9e0e5; font-size: 9px; font-weight: 900; letter-spacing: .11em; }
.ccw-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--ccw-gold); box-shadow: 0 0 10px var(--ccw-gold); }
.ccw-status-voting .ccw-status i { background: #f33c35; box-shadow: 0 0 10px #f33c35; animation: ccw-pulse 1.5s infinite; }
.ccw-status-completed .ccw-status i { background: #56b875; box-shadow: 0 0 10px #56b875; }
@keyframes ccw-pulse { 50% { opacity: .35; transform: scale(.7); } }
.ccw-timer { display: grid; grid-template-columns: auto; min-width: 76px; text-align: right; }
.ccw-timer b { color: var(--ccw-gold-light); font: 800 15px/1.1 ui-monospace, Consolas, monospace; letter-spacing: .02em; }
.ccw-timer small { margin-top: 2px; color: #65727c; font-size: 7px; font-weight: 900; letter-spacing: .12em; }

.ccw-versus { position: relative; display: grid; grid-template-columns: minmax(0,1fr) 42px minmax(0,1fr); align-items: stretch; gap: 5px; padding: 24px 18px 16px; }
.ccw-side { position: relative; min-width: 0; text-align: center; }
.ccw-coin-stage { position: relative; width: min(100%, 225px); margin: 0 auto 12px; aspect-ratio: 1; display: grid; place-items: center; }
.ccw-coin-stage::before { content: ""; position: absolute; inset: 7%; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 62%); filter: blur(6px); }
.ccw-coin-ring { position: relative; width: 91%; aspect-ratio: 1; padding: 5px; border-radius: 50%; background: conic-gradient(from 20deg, #6e5627, #f0d28d, #59421b, #d8b568, #574019, #ebcf8a, #6e5627); box-shadow: 0 14px 24px rgba(0,0,0,.5), 0 0 0 1px #f2d087, inset 0 0 0 2px #4d3816; transition: transform .4s ease; }
.ccw-side-b .ccw-coin-ring { background: conic-gradient(from 20deg, #405f79, #d6e1e9, #334c60, #a8bbc9, #2c465a, #e3edf3, #405f79); box-shadow: 0 14px 24px rgba(0,0,0,.5), 0 0 0 1px #c5d6e1, inset 0 0 0 2px #2a3c4b; }
.ccw-battle:hover .ccw-side-a .ccw-coin-ring { transform: rotate(-3deg) scale(1.025); }
.ccw-battle:hover .ccw-side-b .ccw-coin-ring { transform: rotate(3deg) scale(1.025); }
.ccw-coin-ring img { width: 100% !important; height: 100% !important; margin: 0 !important; object-fit: cover; border-radius: 50% !important; background: #101820; border: 2px solid rgba(0,0,0,.55); }
.ccw-command { display: block; height: 16px; overflow: hidden; color: var(--ccw-gold); font-size: 8px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; text-overflow: ellipsis; white-space: nowrap; }
.ccw-side h3 { height: 38px; margin: 4px 0 8px; overflow: hidden; color: #f6f8f9; font-size: clamp(11px, 1.1vw, 14px); line-height: 1.3; font-weight: 800; text-transform: uppercase; }
.ccw-vote-meter { height: 6px; overflow: hidden; background: #273440; border-radius: 5px; }
.ccw-vote-meter i { display: block; height: 100%; background: linear-gradient(90deg, #8b1513, #f4423a); box-shadow: 0 0 9px rgba(244,66,58,.5); transition: width .4s ease; }
.ccw-side-b .ccw-vote-meter i { margin-left: auto; background: linear-gradient(90deg, #4b91d3, #1f568c); box-shadow: 0 0 9px rgba(75,145,211,.5); }
.ccw-vote-count { display: flex; justify-content: space-between; align-items: center; margin-top: 6px; }
.ccw-vote-count strong { color: #fff; font-size: 14px; }
.ccw-vote-count span { color: #74818b; font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.ccw-vote-btn { width: 100%; min-height: 37px; margin-top: 11px; padding: 8px !important; color: #fff !important; background: rgba(201,39,35,.13) !important; border: 1px solid rgba(235,69,63,.55) !important; border-radius: 4px !important; font: 800 9px/1 Inter,Arial,sans-serif !important; letter-spacing: .08em; cursor: pointer; }
.ccw-side-b .ccw-vote-btn { background: rgba(40,103,166,.14) !important; border-color: rgba(75,145,211,.55) !important; }
.ccw-vote-btn:hover,
.ccw-vote-btn.is-selected { background: var(--ccw-red) !important; }
.ccw-side-b .ccw-vote-btn:hover,
.ccw-side-b .ccw-vote-btn.is-selected { background: var(--ccw-blue) !important; }
.ccw-own-entry { display: block; min-height: 37px; margin-top: 11px; padding: 11px 4px 0; color: #71808c; font-size: 8px; font-weight: 800; letter-spacing: .08em; }
.ccw-vs { position: relative; display: grid; place-items: center; }
.ccw-vs::before { content: ""; position: absolute; top: 8%; bottom: 8%; left: 50%; width: 1px; background: linear-gradient(transparent, rgba(210,173,97,.5), transparent); }
.ccw-vs span { position: relative; z-index: 1; display: grid; place-items: center; width: 39px; height: 39px; border-radius: 50%; color: #fff; background: linear-gradient(145deg, #d7302a, #7e1110); border: 2px solid var(--ccw-gold); box-shadow: 0 0 0 5px #111e29, 0 8px 20px rgba(0,0,0,.6); font-size: 15px; font-style: italic; font-weight: 950; }
.ccw-side-empty { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 285px; padding: 15px; }
.ccw-empty-coin { display: grid; place-items: center; width: min(70%, 170px); aspect-ratio: 1; border: 2px dashed rgba(194,204,212,.22); border-radius: 50%; background: rgba(0,0,0,.15); }
.ccw-empty-coin span { color: #54616b; font-size: 48px; font-weight: 300; }
.ccw-side-empty p { margin: 4px 0; color: #81909b; font-size: 11px; line-height: 1.5; }
.ccw-winner-ribbon { position: absolute; z-index: 3; top: 8px; left: 50%; transform: translateX(-50%) rotate(-4deg); padding: 5px 14px; color: #0b1117; background: linear-gradient(145deg,#f4da92,#aa7d2b); border: 1px solid #ffe4a2; box-shadow: 0 5px 15px rgba(0,0,0,.5); font-size: 9px; font-weight: 950; letter-spacing: .12em; }
.ccw-battle blockquote { margin: 0 18px 15px; padding: 12px 15px; color: #c8d0d6; background: rgba(0,0,0,.2); border: 0; border-left: 2px solid var(--ccw-gold); font-size: 11px; line-height: 1.5; }
.ccw-battle-actions { display: flex; justify-content: center; align-items: center; gap: 18px; min-height: 48px; padding: 8px 18px; background: rgba(2,8,13,.5); border-top: 1px solid var(--ccw-line); }
.ccw-battle-actions button,
.ccw-battle-actions a { color: #9aa6af !important; background: transparent !important; border: 0 !important; padding: 4px !important; font: 800 8px/1.2 Inter,Arial,sans-serif !important; letter-spacing: .09em; text-decoration: none !important; cursor: pointer; }
.ccw-battle-actions button:hover,
.ccw-battle-actions a:hover { color: var(--ccw-gold-light) !important; }
.ccw-share span { margin-right: 5px; color: var(--ccw-gold); font-size: 14px; }
.ccw-admin-download { color: var(--ccw-gold) !important; }

.ccw-answer-panel { margin: 0 18px 18px; padding: 17px; background: rgba(210,173,97,.07); border: 1px solid rgba(210,173,97,.28); border-radius: 8px; }
.ccw-answer-panel h3 { margin: 0 0 4px; color: var(--ccw-gold-light); font-size: 12px; letter-spacing: .09em; }
.ccw-answer-panel > p { margin: 0 0 12px; color: #9aa7b0; font-size: 10px; }
.ccw-answer-row { display: grid; grid-template-columns: 1fr auto auto; gap: 8px; }
.ccw-file-small { display: grid; place-items: center; min-width: 100px; padding: 8px; color: #d7dde1; background: #1a2b38; border: 1px solid #40515d; border-radius: 5px; font-size: 8px; font-weight: 800; cursor: pointer; }
.ccw-file-small input { display: none; }
.ccw-decline { margin-top: 8px; text-align: right; }
.ccw-decline button { color: #8d98a1 !important; background: none !important; border: 0 !important; padding: 0 !important; font-size: 8px !important; text-decoration: underline; cursor: pointer; }

.ccw-admin-bar { display: flex; align-items: center; gap: 10px; padding: 12px clamp(18px,4vw,60px); color: #111; background: linear-gradient(90deg,#ba8c35,#f0d285,#b98b35); border-bottom: 1px solid #ffe5a5; }
.ccw-admin-bar div { margin-right: auto; display: grid; }
.ccw-admin-bar span { font-size: 10px; font-weight: 950; letter-spacing: .11em; }
.ccw-admin-bar small { font-size: 9px; opacity: .72; }
.ccw-admin-bar a { padding: 8px 10px; color: #111 !important; background: rgba(255,255,255,.26); border: 1px solid rgba(0,0,0,.25); border-radius: 4px; font-size: 8px; font-weight: 900; text-decoration: none !important; }

.ccw-create-wrap[hidden] { display: none !important; }
.ccw-create-wrap { position: fixed; z-index: 999999; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(1,6,10,.88); backdrop-filter: blur(10px); overflow-y: auto; }
.ccw-create { position: relative; width: min(820px, 100%); max-height: calc(100vh - 40px); overflow-y: auto; padding: clamp(24px,5vw,48px); color: #eff3f5; background: linear-gradient(150deg,#142431,#09131c); border: 1px solid rgba(210,173,97,.45); border-radius: 14px; box-shadow: 0 28px 100px rgba(0,0,0,.75), inset 0 1px rgba(255,255,255,.06); }
.ccw-close { position: absolute; top: 15px; right: 15px; width: 36px; height: 36px; padding: 0 !important; color: #b9c2c9 !important; background: rgba(255,255,255,.05) !important; border: 1px solid rgba(255,255,255,.14) !important; border-radius: 50% !important; font-size: 24px !important; cursor: pointer; }
.ccw-form-head h2 { margin: 0 0 8px; color: #fff; font-size: clamp(30px,5vw,52px); line-height: 1; letter-spacing: -.04em; }
.ccw-form-head p { margin: 0 0 28px; max-width: 630px; color: #aab5bd; line-height: 1.55; }
.ccw-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 19px; }
.ccw-field { min-width: 0; }
.ccw-field-wide { grid-column: 1 / -1; }
.ccw-field label { display: block; margin-bottom: 7px; color: #d6dde2; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.ccw-field label span { color: #72808a; font-weight: 500; }
.ccw-field input[type="text"],
.ccw-field input[type="search"],
.ccw-field textarea,
.ccw-field select,
.ccw-answer-panel input[type="search"] { width: 100%; min-height: 46px; margin: 0; padding: 10px 13px; color: #fff; background: #08121a; border: 1px solid #344653; border-radius: 6px; box-shadow: inset 0 2px 5px rgba(0,0,0,.4); font: 500 13px/1.3 Inter,Arial,sans-serif; }
.ccw-field textarea { min-height: 84px; resize: vertical; }
.ccw-field input:focus,
.ccw-field select:focus,
.ccw-field textarea:focus,
.ccw-answer-panel input:focus { outline: 2px solid rgba(210,173,97,.35); border-color: var(--ccw-gold); }
.ccw-field small { display: block; margin-top: 5px; color: #73818b; font-size: 9px; }
.ccw-entry-switch { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 9px; background: #08121a; border: 1px solid #344653; border-radius: 6px; overflow: hidden; }
.ccw-entry-switch button { min-height: 40px; padding: 8px; color: #788690 !important; background: transparent !important; border: 0 !important; font: 800 9px/1 Inter,Arial,sans-serif !important; letter-spacing: .08em; cursor: pointer; }
.ccw-entry-switch button.is-active { color: #111 !important; background: linear-gradient(145deg,#efcf7e,#b78b37) !important; }
.ccw-upload { min-height: 78px; padding: 14px; text-align: center; background: rgba(0,0,0,.18); border: 1px dashed #4c5b66; border-radius: 6px; }
.ccw-upload input { max-width: 100%; color: #d6dde2; }
.ccw-upload span { display: block; margin-top: 8px; color: #6f7c85; font-size: 8px; letter-spacing: .08em; }
.ccw-check { display: flex; align-items: flex-start; gap: 8px; margin: 18px 0; color: #97a3ab; font-size: 10px; line-height: 1.4; }
.ccw-check input { margin-top: 1px; accent-color: var(--ccw-red); }
.ccw-submit { width: 100%; }
.ccw-form-status { min-height: 18px; margin-top: 9px; color: #f3d48a; font-size: 10px; text-align: center; }
.ccw-form-status.is-error { color: #ff706b; }

.ccw-product-picker { position: relative; min-width: 0; }
.ccw-product-results { position: absolute; z-index: 20; top: calc(100% + 5px); left: 0; right: 0; max-height: 310px; padding: 5px; overflow-y: auto; background: #0d1922; border: 1px solid #425461; border-radius: 7px; box-shadow: 0 15px 40px rgba(0,0,0,.7); }
.ccw-product-result { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 9px; width: 100%; padding: 7px !important; color: #e9edf0 !important; background: transparent !important; border: 0 !important; border-bottom: 1px solid rgba(255,255,255,.06) !important; text-align: left; cursor: pointer; }
.ccw-product-result:hover { background: rgba(210,173,97,.1) !important; }
.ccw-product-result img { width: 48px !important; height: 48px !important; margin: 0 !important; object-fit: contain; border-radius: 50% !important; background: #091119; }
.ccw-product-result span { min-width: 0; font-size: 10px; font-weight: 700; line-height: 1.3; }
.ccw-product-result small { color: var(--ccw-gold-light); font-size: 9px; }

.ccw-empty { grid-column: 1 / -1; min-height: 310px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px; text-align: center; background: rgba(255,255,255,.018); border: 1px dashed rgba(194,204,212,.17); border-radius: 12px; }
.ccw-empty > span { color: var(--ccw-gold); font-size: 48px; }
.ccw-empty h3 { margin: 12px 0 4px; color: #fff; font-size: 22px; letter-spacing: .04em; }
.ccw-empty p { margin: 0 0 20px; color: #82909a; }
.ccw-more { padding: 8px 0 30px; text-align: center; }
.ccw-more a { color: var(--ccw-gold-light) !important; font-size: 10px; font-weight: 900; letter-spacing: .11em; text-decoration: none !important; }

.ccw-arena-embedded { margin-top: 45px; margin-bottom: 45px; }
.ccw-arena-embedded .ccw-mini-head { display: flex; align-items: center; justify-content: space-between; padding: 30px clamp(22px,5vw,60px); border-bottom: 1px solid var(--ccw-line); }
.ccw-mini-head h2 { margin: 0; color: #fff; font-size: clamp(28px,4vw,48px); letter-spacing: -.04em; }
.ccw-arena-embedded > .ccw-battle-grid { padding: clamp(22px,4vw,58px); }

.ccw-product-war {
	display: grid !important;
	grid-template-columns: 40px 1fr;
	grid-template-rows: auto auto;
	align-items: center;
	gap: 2px 12px;
	width: 100%;
	margin: 16px 0 0 !important;
	padding: 14px 18px !important;
	color: #fff !important;
	background: linear-gradient(100deg,#8e1513,#d42c27) !important;
	border: 1px solid #f2534c !important;
	border-radius: 7px !important;
	box-shadow: 0 9px 24px rgba(201,39,35,.24);
	text-decoration: none !important;
}
.ccw-product-war span { grid-row: 1 / 3; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%; font-size: 20px; }
.ccw-product-war b { font-size: 12px; letter-spacing: .1em; }
.ccw-product-war small { color: rgba(255,255,255,.75); font-size: 9px; }
.ccw-product-war:hover { color: #fff !important; filter: brightness(1.1); transform: translateY(-1px); }
.ccw-loop-war { display: inline-flex !important; align-items: center; justify-content: center; min-height: 29px; margin: 6px 3px 0 !important; padding: 6px 10px !important; color: #fff !important; background: linear-gradient(145deg,#bd211e,#84110f) !important; border: 1px solid #e44a44 !important; border-radius: 4px !important; font: 800 8px/1 Inter,Arial,sans-serif !important; letter-spacing: .08em; text-decoration: none !important; }

.ccw-toast { position: fixed; z-index: 1000000; right: 22px; bottom: 22px; max-width: 340px; padding: 14px 18px; color: #111; background: linear-gradient(145deg,#f4d990,#b78933); border: 1px solid #ffe8aa; border-radius: 7px; box-shadow: 0 14px 42px rgba(0,0,0,.55); font-size: 11px; font-weight: 800; animation: ccw-toast .35s ease both; }
@keyframes ccw-toast { from { opacity: 0; transform: translateY(12px); } }

@media (max-width: 1050px) {
	.ccw-hero { grid-template-columns: 1fr 280px; }
	.ccw-battle-grid { grid-template-columns: 1fr; }
	.ccw-coin-stage { max-width: 240px; }
}

@media (max-width: 760px) {
	.ccw-arena { width: calc(100vw - 16px); margin-top: 8px; border-radius: 12px; }
	.ccw-hero { min-height: auto; grid-template-columns: 1fr; padding: 45px 22px 82px; text-align: center; }
	.ccw-hero-copy { display: flex; flex-direction: column; align-items: center; }
	.ccw-hero h1 { font-size: clamp(43px,15vw,70px); }
	.ccw-hero h1 span { display: block; margin-top: 13px; }
	.ccw-radar { width: min(70vw,280px); grid-row: 1; }
	.ccw-statline { left: 18px; right: 18px; bottom: 17px; justify-content: center; gap: 18px; }
	.ccw-statline div { display: grid; gap: 1px; text-align: center; }
	.ccw-tabs { grid-template-columns: repeat(4,minmax(0,1fr)); padding: 0 4px; }
	.ccw-tab { min-height: 66px; flex-direction: column; gap: 3px; font-size: 7px; letter-spacing: .07em; }
	.ccw-tab b { position: absolute; top: 7px; right: calc(50% - 28px); min-width: 16px; height: 16px; font-size: 7px; }
	.ccw-tab-icon { font-size: 18px; }
	.ccw-view { padding: 13px; }
	.ccw-battle-top { grid-template-columns: 1fr auto; }
	.ccw-timer { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; }
	.ccw-versus { grid-template-columns: minmax(0,1fr) 30px minmax(0,1fr); padding: 17px 8px 12px; }
	.ccw-vs span { width: 31px; height: 31px; font-size: 11px; }
	.ccw-coin-ring { width: 96%; padding: 3px; }
	.ccw-command { font-size: 6px; letter-spacing: .04em; }
	.ccw-side h3 { height: 32px; font-size: 9px; }
	.ccw-vote-count { display: grid; justify-content: center; }
	.ccw-vote-count span { font-size: 6px; }
	.ccw-vote-btn { min-height: 34px; font-size: 7px !important; }
	.ccw-side-empty { min-height: 205px; padding: 5px; }
	.ccw-side-empty p { font-size: 8px; }
	.ccw-answer-row { grid-template-columns: 1fr; }
	.ccw-form-grid { grid-template-columns: 1fr; }
	.ccw-field-wide { grid-column: auto; }
	.ccw-admin-bar { align-items: stretch; flex-wrap: wrap; }
	.ccw-admin-bar div { flex: 1 0 100%; }
	.ccw-admin-bar a { flex: 1; text-align: center; }
	.ccw-arena-embedded .ccw-mini-head { align-items: flex-start; flex-direction: column; gap: 16px; }
	.ccw-arena-embedded > .ccw-battle-grid { padding: 13px; }
}

@media (prefers-reduced-motion: reduce) {
	.ccw-arena *, .ccw-arena *::before, .ccw-arena *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}

