/* ZP Suite — Status sayfası. Site tasarım dili: koyu #131212 + glassmorphism + #FE0100. */

.zp-status-wrap{
	max-width: 1140px;
	margin: 0 auto;
	padding: 48px 20px 90px;
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	color: #fff;
}

/* ---------- Hero ---------- */
.zp-status-hero{
	text-align: center;
	margin-bottom: 56px;
}

.zp-status-eyebrow{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 16px;
	border-radius: 50px;
	background: rgba(254,1,0,.12);
	border: 1px solid rgba(254,1,0,.4);
	color: #ff5a5a;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .14em;
	margin-bottom: 18px;
}
.zp-status-eyebrow::before{
	content: '';
	width: 7px; height: 7px;
	border-radius: 50%;
	background: #FE0100;
	animation: zpStPulseRed 2s cubic-bezier(.4,0,.2,1) infinite;
}

.zp-status-title{
	margin: 0 0 14px;
	font-size: clamp(34px, 5vw, 52px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -.02em;
	color: #fff;
}
.zp-status-title span{ color: #FE0100; }

.zp-status-sub{
	margin: 0 auto 28px;
	max-width: 560px;
	color: #aaa;
	font-size: 16px;
	line-height: 1.6;
}

/* Özet çipleri */
.zp-status-summary{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.zp-sum-chip{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 14px;
	border-radius: 50px;
	background: rgba(255,255,255,.025);
	border: 1px solid rgba(255,255,255,.06);
	font-size: 13px;
	font-weight: 600;
	color: #ccc;
}

/* Statü noktaları (ortak) */
.zp-dot{
	width: 8px; height: 8px;
	border-radius: 50%;
	flex: 0 0 auto;
}
.zp-dot--undetected{ background: #22c55e; }
.zp-dot--updating  { background: #f59e0b; }
.zp-dot--detected  { background: #ef4444; }
.zp-dot--not_found { background: #9ca3af; }

/* ---------- Kategori grupları ---------- */
.zp-status-group{ margin-bottom: 52px; }

.zp-group-title{
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 22px;
	font-size: 26px;
	font-weight: 800;
	letter-spacing: -.01em;
	color: #fff;
}
.zp-group-title::before{
	content: '';
	width: 4px; height: 24px;
	border-radius: 4px;
	background: linear-gradient(180deg, #FE0100, #c40000);
	box-shadow: 0 0 14px rgba(254,1,0,.5);
}
.zp-group-title::after{
	content: '';
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, rgba(255,255,255,.08), transparent);
}

/* ---------- Kart grid ---------- */
.zp-status-grid{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}

.zp-status-card{
	display: flex;
	flex-direction: column;
	background: rgba(255,255,255,.025);
	border: 1px solid rgba(255,255,255,.06);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-radius: 16px;
	overflow: hidden;
	text-decoration: none;
	transition: transform .3s cubic-bezier(.4,0,.2,1),
	            border-color .3s cubic-bezier(.4,0,.2,1),
	            box-shadow .3s cubic-bezier(.4,0,.2,1);
}
.zp-status-card:hover{
	transform: translateY(-4px);
	border-color: rgba(254,1,0,.4);
	box-shadow: 0 12px 40px rgba(254,1,0,.15);
}

.zp-sc-media{
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: rgba(0,0,0,.35);
}
.zp-sc-media img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.zp-status-card:hover .zp-sc-media img{ transform: scale(1.04); }

.zp-sc-body{
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding: 18px 18px 16px;
}

.zp-sc-titlerow{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.zp-sc-name{
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.zp-sc-cat{
	flex: 0 0 auto;
	padding: 4px 10px;
	border-radius: 50px;
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.08);
	color: #aaa;
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: .1em;
}

.zp-sc-statusrow{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.zp-sc-lbl{
	color: #888;
	font-size: 13.5px;
	font-weight: 500;
}

/* Statü pill'leri */
.zp-pill{
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 13px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 700;
}
.zp-pill--undetected{
	background: rgba(34,197,94,.12);
	border: 1px solid rgba(34,197,94,.35);
	color: #4ade80;
}
.zp-pill--undetected .zp-dot{ animation: zpStPulseGreen 2s cubic-bezier(.4,0,.2,1) infinite; }
.zp-pill--updating{
	background: rgba(245,158,11,.12);
	border: 1px solid rgba(245,158,11,.35);
	color: #fbbf24;
}
.zp-pill--detected{
	background: rgba(239,68,68,.12);
	border: 1px solid rgba(239,68,68,.4);
	color: #f87171;
}
.zp-pill--not_found{
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.1);
	color: #9ca3af;
}

.zp-status-empty{
	text-align: center;
	color: #888;
	padding: 40px 0;
}

/* ---------- Animasyonlar ---------- */
@keyframes zpStPulseGreen{
	0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.45); }
	70%  { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
	100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
@keyframes zpStPulseRed{
	0%   { box-shadow: 0 0 0 0 rgba(254,1,0,.45); }
	70%  { box-shadow: 0 0 0 6px rgba(254,1,0,0); }
	100% { box-shadow: 0 0 0 0 rgba(254,1,0,0); }
}
@media (prefers-reduced-motion: reduce){
	.zp-status-eyebrow::before,
	.zp-sb--ok .zp-sb-dot,
	.zp-sb--bad .zp-sb-dot,
	.zp-pill--undetected .zp-dot{ animation: none; }
	.zp-status-card,
	.zp-sc-media img{ transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 640px){
	.zp-status-wrap{ padding: 32px 16px 60px; }
	.zp-status-hero{ margin-bottom: 40px; }
	.zp-status-grid{ grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }
	.zp-group-title{ font-size: 22px; }
	.zp-sc-body{ padding: 14px 14px 13px; gap: 10px; }
}
