.cookie-consent-overlay{
	position:fixed;inset:0;display:flex;align-items:flex-end;justify-content:center;padding:20px;pointer-events:none;z-index:2000
}
.cookie-consent{
	pointer-events:auto;
	max-width:900px;
	width:calc(100% - 40px);
	margin:0 auto;
	border-radius:12px;
	background:linear-gradient(180deg, rgba(6,10,14,0.94), rgba(3,6,10,0.96));
	box-shadow:0 18px 60px rgba(0,0,0,0.75), inset 0 1px 0 rgba(255,255,255,0.02);
	backdrop-filter: blur(8px);
	border:1px solid rgba(0,217,255,0.06);
	overflow:hidden;
	transform:translateY(18px);
	opacity:0;
	transition:all 0.32s cubic-bezier(.2,.9,.2,1);
}
.cookie-consent.cc-hidden{opacity:0;transform:translateY(30px)}
.cookie-consent.cc-enter{opacity:1;transform:translateY(0)}

.cookie-consent .cc-content{padding:18px;display:flex;gap:18px;align-items:flex-start;justify-content:space-between}
.cookie-consent .cc-left{flex:1;min-width:200px}
.cookie-consent h3{margin:0 0 6px 0;font-size:20px;color:var(--text-color);font-weight:800;display:flex;align-items:center;gap:10px}
.cookie-consent p{margin:0;color:rgba(255,255,255,0.9);font-size:14px;max-width:100%}
.cookie-consent .cc-right{width:320px;display:flex;flex-direction:column;gap:12px;align-items:flex-end}
.cookie-consent .cc-actions{display:flex;gap:10px;align-items:center}
.cc-btn{background:linear-gradient(180deg,var(--accent),var(--accent-tertiary));color:#001; padding:10px 14px;border-radius:12px;border:none;cursor:pointer;font-weight:800;box-shadow:0 10px 28px rgba(0,217,255,0.06)}
.cc-accept-all{background:linear-gradient(180deg,#27c26a,#0ea85a);color:#fff}
.cc-choose{background:linear-gradient(180deg,#e6e6e6,#cfcfcf);color:#062;box-shadow:0 6px 18px rgba(0,0,0,0.25)}
.cc-close{position:absolute;right:12px;top:12px;background:transparent;border:1px solid rgba(255,255,255,0.06);width:36px;height:36px;border-radius:8px;color:rgba(255,255,255,0.9);cursor:pointer}
.cc-footnote{font-size:12px;color:rgba(255,255,255,0.6);}

/* checkboxes */
.cc-checkbox { display:flex;gap:10px;align-items:center;font-weight:700;color:var(--text-color) }
.cc-checkbox input { width:18px;height:18px;accent-color: #00d9ff }

/* small-screen layout */
@media (max-width:720px){
  .cookie-consent{width:100%;border-radius:10px}
  .cookie-consent .cc-content{flex-direction:column}
  .cookie-consent .cc-right{width:100%;align-items:stretch}
}

/* subtle small-screen layout */
@media (max-width:720px){
	.cookie-consent{width:100%;border-radius:10px}
	.cookie-consent .cc-content{flex-direction:column;align-items:flex-start}
	.cookie-consent p{max-width:100%}
	.cc-actions{width:100%;display:flex;gap:8px;justify-content:space-between}
}
