/* ── Aurora Template ─────────────────────────────────────── */
:root {
	--dlk-primary:   #667eea;
	--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, #1a1a4e 0%, #2d1b69 40%, #11131f 100%);
	font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}

/* Aurora animated background */
.dlk-aurora-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; }

.dlk-aurora-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: .45;
}
.dlk-orb-1 {
	width: 60vw; height: 60vw;
	background: radial-gradient(circle, #667eea, transparent 70%);
	top: -20%; left: -15%;
	animation: dlk-float 12s ease-in-out infinite;
}
.dlk-orb-2 {
	width: 50vw; height: 50vw;
	background: radial-gradient(circle, #764ba2, transparent 70%);
	bottom: -10%; right: -10%;
	animation: dlk-float 15s ease-in-out infinite reverse;
}
.dlk-orb-3 {
	width: 40vw; height: 40vw;
	background: radial-gradient(circle, #f093fb, transparent 70%);
	top: 40%; left: 40%;
	animation: dlk-float 10s ease-in-out infinite 3s;
}

@keyframes dlk-float {
	0%, 100% { transform: translateY(0) scale(1); }
	33% { transform: translateY(-30px) scale(1.05); }
	66% { transform: translateY(20px) scale(0.97); }
}

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

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

.dlk-mode-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 6px 20px;
	background: linear-gradient(90deg, rgba(102,126,234,.25), rgba(118,75,162,.25));
	border: 1px solid rgba(102,126,234,.4);
	border-radius: 30px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #c4b8ff;
	backdrop-filter: blur(10px);
}

.dlk-headline {
	font-size: clamp(44px, 8.5vw, 76px);
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1.02;
	background: linear-gradient(135deg, #fff 0%, #c4b8ff 50%, #f093fb 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.dlk-subheadline { font-size: clamp(15px, 2.5vw, 18px); color: rgba(255,255,255,.55); line-height: 1.65; max-width: 500px; }
.dlk-description  { font-size: 14px; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 500px; }

/* Countdown */
.dlk-countdown { display: flex; align-items: center; gap: 6px; 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: 800;
	font-variant-numeric: tabular-nums;
	line-height: 1;
	color: #fff;
	background: linear-gradient(135deg, rgba(102,126,234,.25) 0%, rgba(118,75,162,.2) 100%);
	border: 1px solid rgba(102,126,234,.3);
	border-radius: 16px;
	padding: 18px 20px;
	min-width: 86px;
	text-align: center;
	backdrop-filter: blur(16px);
	box-shadow: 0 8px 32px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.1);
}
.dlk-countdown-sep { font-size: clamp(24px,4vw,44px); font-weight: 800; color: rgba(255,255,255,.2); margin-bottom: 20px; padding-top: 18px; align-self: flex-start; }
.dlk-countdown-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.3); }
.dlk-countdown-expired { font-size: 18px; color: #c4b8ff; }

/* 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: 600; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.4); }
.dlk-progress-pct   { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.55); }
.dlk-progress-track { height: 6px; background: rgba(255,255,255,.08); border-radius: 6px; overflow: hidden; }
.dlk-progress-fill {
	height: 100%;
	background: linear-gradient(90deg, var(--dlk-primary), var(--dlk-secondary));
	border-radius: 6px;
	transition: width .9s cubic-bezier(.34,1.56,.64,1);
}

/* Email Form */
.dlk-email-form { width: 100%; max-width: 500px; }
.dlk-email-row {
	display: flex;
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(102,126,234,.3);
	border-radius: 50px;
	overflow: hidden;
	backdrop-filter: blur(12px);
	box-shadow: 0 4px 24px rgba(0,0,0,.2);
}
.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,.3); }
.dlk-email-row button {
	padding: 12px 28px;
	background: linear-gradient(135deg, var(--dlk-primary), var(--dlk-secondary));
	color: #fff;
	border: none;
	border-radius: 46px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	margin: 4px;
	transition: opacity .15s, transform .1s;
	white-space: nowrap;
}
.dlk-email-row button:hover { opacity: .88; 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(56,161,105,.18); color: #9ae6b4; border: 1px solid rgba(56,161,105,.25); }
.dlk-form-error   { background: rgba(229,62,62,.18); color: #feb2b2; border: 1px solid rgba(229,62,62,.25); }

/* 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(102,126,234,.15);
	border: 1px solid rgba(102,126,234,.25);
	color: rgba(255,255,255,.55);
	text-decoration: none;
	transition: all .2s;
}
.dlk-social-link svg { width: 18px; height: 18px; }
.dlk-social-link:hover { background: linear-gradient(135deg, var(--dlk-primary), var(--dlk-secondary)); border-color: transparent; color: #fff; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(102,126,234,.4); }

.dlk-footer { position: fixed; bottom: 0; left: 0; right: 0; text-align: center; padding: 16px; font-size: 12px; color: rgba(255,255,255,.2); 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: 16px; padding: 8px; gap: 8px; }
	.dlk-email-row input { padding: 12px 14px; }
	.dlk-email-row button { border-radius: 10px; margin: 0; padding: 14px; }
}
