.yks-araci-countdown {
	--yks-araci-navy: #122c54;
	--yks-araci-navy-deep: #0a1a38;
	--yks-araci-green: #25d366;
	--yks-araci-radius: 24px;

	position: relative;
	overflow: hidden;
	max-width: 680px;
	margin: 1.5rem auto;
	padding: 2.15rem 1.75rem 1.85rem;
	text-align: center;
	color: #fff;
	font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--yks-araci-radius);
	background:
		radial-gradient(ellipse 70% 80% at 10% 0%, rgba(229, 69, 59, 0.35) 0%, transparent 55%),
		radial-gradient(ellipse 60% 70% at 100% 100%, rgba(37, 211, 102, 0.18) 0%, transparent 50%),
		linear-gradient(145deg, #17366a 0%, var(--yks-araci-navy) 45%, var(--yks-araci-navy-deep) 100%);
	box-shadow: 0 24px 60px rgba(16, 27, 52, 0.32);
}

.yks-araci-countdown::before {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.06) 50%, transparent 60%);
}

.yks-araci-countdown__header {
	position: relative;
	z-index: 1;
	margin-bottom: 0.85rem;
}

.yks-araci-countdown__label {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.45rem 0.9rem;
	margin-bottom: 0.85rem;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border-radius: 999px;
	backdrop-filter: blur(8px);
}

.yks-araci-countdown__label::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--yks-araci-green);
	box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
	animation: yksAraciPulse 1.6s ease-in-out infinite;
}

@keyframes yksAraciPulse {
	0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
	70% { box-shadow: 0 0 0 9px rgba(37, 211, 102, 0); }
	100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.yks-araci-countdown__exam-date {
	display: block;
	font-size: clamp(1.25rem, 3.2vw, 1.65rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	color: #fff !important;
	line-height: 1.25;
}

.yks-araci-countdown__title {
	position: relative;
	z-index: 1;
	margin-bottom: 1.35rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.75);
	letter-spacing: 0.02em;
}

.yks-araci-countdown__timer {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.yks-araci-countdown__unit {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 16px;
	padding: 1.1rem 0.5rem;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.yks-araci-countdown__unit:hover {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(37, 211, 102, 0.35);
}

.yks-araci-countdown__value {
	display: block;
	font-size: clamp(1.5rem, 4vw, 2.15rem);
	font-weight: 800;
	line-height: 1;
	color: #fff !important;
	font-variant-numeric: tabular-nums;
	letter-spacing: -0.03em;
	text-shadow: 0 0 24px rgba(37, 211, 102, 0.25);
}

.yks-araci-countdown__unit-label {
	display: block;
	margin-top: 0.5rem;
	font-size: 0.7rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.7);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.yks-araci-countdown__days-summary {
	position: relative;
	z-index: 1;
	display: inline-block;
	margin: 0;
	padding: 0.65rem 1rem;
	font-size: 0.95rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.92);
	background: rgba(37, 211, 102, 0.12);
	border: 1px solid rgba(37, 211, 102, 0.25);
	border-radius: 999px;
}

.yks-araci-countdown__days-summary strong {
	font-size: 1.15em;
	color: #fff;
	font-weight: 800;
}

.yks-araci-countdown__finished {
	position: relative;
	z-index: 1;
	margin-top: 1rem;
	padding: 1rem 1.15rem;
	background: rgba(37, 211, 102, 0.16);
	border: 1px solid rgba(37, 211, 102, 0.35);
	border-radius: 14px;
	color: #fff;
	font-weight: 700;
}

.yks-araci-countdown.is-finished .yks-araci-countdown__timer,
.yks-araci-countdown.is-finished .yks-araci-countdown__days-summary {
	display: none;
}

@media (max-width: 520px) {
	.yks-araci-countdown {
		padding: 1.6rem 1rem 1.4rem;
	}

	.yks-araci-countdown__timer {
		gap: 0.5rem;
	}

	.yks-araci-countdown__unit {
		padding: 0.85rem 0.35rem;
		border-radius: 12px;
	}

	.yks-araci-countdown__value {
		font-size: 1.45rem;
	}
}

@media (max-width: 380px) {
	.yks-araci-countdown__timer {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
