:root {
	--ocs-bg-1: #0b0b0d;
	--ocs-bg-2: #18181b;
	--ocs-card-bg: rgba(255, 255, 255, 0.035);
	--ocs-text: #f5f5f7;
	--ocs-text-muted: #9a9aa2;
	--ocs-text-faint: #6b6b72;
	/* --ocs-accent și --ocs-accent-border vin inline din setările plugin-ului (culoare aleasă din admin) */
	--ocs-accent: #ff3b30;
	--ocs-accent-border: rgba(255, 59, 48, 0.45);
}

* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	background: radial-gradient(circle at 50% 20%, var(--ocs-bg-2), var(--ocs-bg-1) 70%);
	color: var(--ocs-text);
	font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
	font-weight: 300;
	-webkit-font-smoothing: antialiased;
}

.ocs-wrap {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.ocs-card {
	position: relative;
	width: 100%;
	max-width: 560px;
	background: var(--ocs-card-bg);
	border: 1px solid var(--ocs-accent-border);
	border-radius: 24px;
	padding: 56px 48px;
	text-align: center;
	backdrop-filter: blur(20px);
	box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.6);
}

.ocs-eyebrow {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ocs-accent);
}

.ocs-title {
	margin: 0 0 6px;
	font-size: 32px;
	font-weight: 500;
	letter-spacing: -0.01em;
	color: var(--ocs-text);
}

.ocs-url {
	margin: 0 0 28px;
	font-size: 14px;
	font-weight: 400;
	color: var(--ocs-text-muted);
}

.ocs-announcement {
	margin: 0 0 36px;
	font-size: 16px;
	line-height: 1.6;
	font-weight: 300;
	color: #d4d4d8;
}

.ocs-countdown {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 14px;
	margin-bottom: 32px;
}

.ocs-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 56px;
}

.ocs-number {
	font-family: 'Roboto Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-variant-numeric: tabular-nums;
	font-size: 32px;
	font-weight: 500;
	color: var(--ocs-text);
	line-height: 1;
}

.ocs-label {
	margin-top: 8px;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ocs-text-faint);
}

.ocs-sep {
	font-family: 'Roboto Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: 28px;
	font-weight: 300;
	color: var(--ocs-accent);
	opacity: 0.6;
	margin-top: 2px;
}

.ocs-launched {
	color: var(--ocs-accent);
	font-weight: 500;
	margin-bottom: 32px;
}

.ocs-contact {
	font-size: 14px;
	color: var(--ocs-text-muted);
}

.ocs-contact a {
	color: var(--ocs-text-muted);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.ocs-contact a:hover {
	color: var(--ocs-accent);
	border-color: var(--ocs-accent-border);
}

.ocs-dot {
	margin: 0 10px;
	color: var(--ocs-text-faint);
}

.ocs-footer {
	margin-top: 28px;
	font-size: 11px;
	letter-spacing: 0.06em;
	color: var(--ocs-text-faint);
	opacity: 0.6;
	text-align: center;
}

@media (max-width: 560px) {
	.ocs-card {
		padding: 40px 24px;
		border-radius: 20px;
	}

	.ocs-title {
		font-size: 26px;
	}

	.ocs-countdown {
		gap: 8px;
	}

	.ocs-unit {
		min-width: 46px;
	}

	.ocs-number {
		font-size: 24px;
	}

	.ocs-sep {
		font-size: 22px;
	}
}

@media (max-width: 380px) {
	.ocs-countdown {
		flex-wrap: wrap;
		row-gap: 16px;
	}

	.ocs-sep {
		display: none;
	}
}
