/* ── Horizon Template ────────────────────────────────────── */
:root {
	--dlk-primary:   #f5576c;
	--dlk-secondary: #f093fb;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

.dlk-page {
	min-height: 100vh;
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 40%, #fda085 100%);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

/* Geometric shapes */
.dlk-horizon-shapes { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.dlk-shape {
	position: absolute;
	border-radius: 50%;
	background: rgba(255,255,255,.08);
	animation: dlk-drift 20s ease-in-out infinite;
}
.dlk-shape-1 { width: 40vw; height: 40vw; top: -15%; right: -10%; animation-delay: 0s; }
.dlk-shape-2 { width: 28vw; height: 28vw; bottom: -5%; left: -8%; animation-delay: -8s; }
.dlk-shape-3 { width: 18vw; height: 18vw; top: 60%; right: 15%; animation-delay: -4s; }
.dlk-shape-4 { width: 14vw; height: 14vw; top: 20%; left: 10%; animation-delay: -12s; background: rgba(255,255,255,.05); }

@keyframes dlk-drift {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33% { transform: translate(20px, -30px) scale(1.04); }
	66% { transform: translate(-15px, 25px) scale(0.97); }
}

.dlk-container {
	position: relative;
	z-index: 10;
	max-width: 680px;
	width: 100%;
	padding: 56px 36px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
}

.dlk-logo img { max-width: 100%; height: auto; display: block; margin: 0 auto; filter: brightness(2) drop-shadow(0 2px 8px rgba(0,0,0,.2)); }

.dlk-mode-badge {
	display: inline-flex; align-items: center; gap: 7px;
	padding: 6px 18px;
	background: rgba(255,255,255,.2);
	border: 1px solid rgba(255,255,255,.35);
	border-radius: 30px;
	font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
	color: #fff;
	backdrop-filter: blur(8px);
}

.dlk-headline {
	font-size: clamp(44px, 8.5vw, 76px);
	font-weight: 900;
	letter-spacing: -0.03em;
	line-height: 1.15;
	padding-bottom: 0.05em;
	color: #fff;
	text-shadow: 0 4px 24px rgba(0,0,0,.15);
}

.dlk-subheadline { font-size: clamp(15px, 2.5vw, 19px); color: rgba(255,255,255,.8); line-height: 1.6; max-width: 500px; }
.dlk-description  { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 500px; }

/* Countdown */
.dlk-countdown { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.dlk-countdown-unit { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 78px; }
.dlk-countdown-number {
	font-size: clamp(32px, 6vw, 56px);
	font-weight: 900;
	font-variant-numeric: tabular-nums;
	line-height: 1;
	color: #fff;
	background: rgba(255,255,255,.18);
	border: 1px solid rgba(255,255,255,.28);
	border-radius: 16px;
	padding: 16px 20px;
	min-width: 86px;
	text-align: center;
	backdrop-filter: blur(12px);
	box-shadow: 0 8px 32px rgba(0,0,0,.1), inset 0 1px 0 rgba(255,255,255,.3);
}
.dlk-countdown-sep { font-size: clamp(24px,4vw,44px); font-weight: 900; color: rgba(255,255,255,.4); margin-bottom: 22px; padding-top: 16px; align-self: flex-start; }
.dlk-countdown-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.55); }
.dlk-countdown-expired { font-size: 20px; font-weight: 700; color: #fff; }

/* Progress */
.dlk-progress-wrap { width: 100%; max-width: 440px; }
.dlk-progress-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
.dlk-progress-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.55); }
.dlk-progress-pct   { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.75); }
.dlk-progress-track { height: 8px; background: rgba(255,255,255,.2); border-radius: 8px; overflow: hidden; }
.dlk-progress-fill {
	height: 100%;
	background: #fff;
	border-radius: 8px;
	transition: width .9s cubic-bezier(.34,1.56,.64,1);
	box-shadow: 0 0 12px rgba(255,255,255,.4);
}

/* Email Form */
.dlk-email-form { width: 100%; max-width: 500px; }
.dlk-email-row {
	display: flex;
	background: rgba(255,255,255,.18);
	border: 1px solid rgba(255,255,255,.3);
	border-radius: 50px;
	overflow: hidden;
	backdrop-filter: blur(12px);
	box-shadow: 0 4px 24px rgba(0,0,0,.15);
}
.dlk-email-row input { flex: 1; background: transparent; border: none; outline: none; padding: 15px 22px; font-size: 14px; color: #fff; min-width: 0; }
.dlk-email-row input::placeholder { color: rgba(255,255,255,.5); }
.dlk-email-row button {
	padding: 12px 28px;
	background: #fff;
	color: var(--dlk-primary);
	border: none;
	border-radius: 46px;
	font-size: 14px; font-weight: 800;
	cursor: pointer; margin: 4px;
	transition: all .15s;
	white-space: nowrap;
}
.dlk-email-row button:hover { background: #1a1a2e; color: #fff; transform: scale(1.03); }
.dlk-email-row button:disabled { opacity: .5; transform: none; cursor: wait; }
.dlk-form-message { margin-top: 12px; padding: 10px 16px; border-radius: 10px; font-size: 13px; font-weight: 500; text-align: center; }
.dlk-form-success { background: rgba(255,255,255,.2); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.dlk-form-error   { background: rgba(0,0,0,.2); color: #ffcdd2; border: 1px solid rgba(0,0,0,.15); }

/* Social */
.dlk-social { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.dlk-social-link {
	display: flex; align-items: center; justify-content: center;
	width: 44px; height: 44px; border-radius: 14px;
	background: rgba(255,255,255,.18);
	border: 1px solid rgba(255,255,255,.25);
	color: rgba(255,255,255,.8);
	text-decoration: none;
	transition: all .2s;
	backdrop-filter: blur(6px);
}
.dlk-social-link svg { width: 18px; height: 18px; }
.dlk-social-link:hover { background: #fff; color: var(--dlk-primary); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.15); border-color: transparent; }

.dlk-footer { position: fixed; bottom: 0; left: 0; right: 0; text-align: center; padding: 16px; font-size: 12px; color: rgba(255,255,255,.4); z-index: 10; }

@media (max-width: 540px) {
	.dlk-container { padding: 32px 20px; gap: 22px; }
	.dlk-countdown-number { min-width: 62px; padding: 12px 14px; }
	.dlk-email-row { flex-direction: column; border-radius: 18px; padding: 8px; gap: 8px; }
	.dlk-email-row input { padding: 12px 14px; }
	.dlk-email-row button { border-radius: 10px; margin: 0; padding: 14px; }
}
