/* =========================================================
   Darkframe Game Site — Holding / Coming-Soon Page
   Standalone: does not depend on builder CSS.
   Full viewport, centred, atmospheric.
   ========================================================= */

*, *::before, *::after { box-sizing: border-box; }

.dgs-holding-body {
	min-height: 100vh;
	font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
	-webkit-font-smoothing: antialiased;
}

.dgs-holding {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 40px 24px;
	text-align: center;
	position: relative;
}

/* Brand / logo — natural flow at top of flex column */
.dgs-holding__brand {
	margin-bottom: 0;
}

.dgs-holding__logo {
	max-height: 48px;
	width: auto;
	display: block;
}

.dgs-holding__wordmark {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
}

/* Main content — grows to fill space and centres vertically */
.dgs-holding__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	max-width: 520px;
	width: 100%;
	padding: 40px 0;
}

/* Animated signal bars */
.dgs-holding__signal {
	display: flex;
	gap: 5px;
	justify-content: center;
	align-items: flex-end;
	height: 24px;
	margin-bottom: 32px;
}

.dgs-holding__signal span {
	display: block;
	width: 3px;
	background: rgba(74, 158, 255, 0.6);
	border-radius: 2px;
	animation: dgs-signal 1.4s ease-in-out infinite;
}

.dgs-holding__signal span:nth-child(1) { height: 8px;  animation-delay: 0s; }
.dgs-holding__signal span:nth-child(2) { height: 16px; animation-delay: 0.2s; }
.dgs-holding__signal span:nth-child(3) { height: 10px; animation-delay: 0.4s; }

@keyframes dgs-signal {
	0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
	50%       { opacity: 1;   transform: scaleY(1); }
}

/* Title */
.dgs-holding__title {
	margin: 0 0 20px;
	font-size: clamp(1.6rem, 5vw, 2.6rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	color: #e8eaed;
	text-transform: uppercase;
	line-height: 1.15;
}

/* Message */
.dgs-holding__message {
	margin: 0;
	font-size: 0.95rem;
	color: rgba(232, 234, 237, 0.55);
	line-height: 1.7;
	letter-spacing: 0.01em;
}

.dgs-holding__message a {
	color: rgba(74, 158, 255, 0.8);
}

/* Footer — natural flow at bottom of flex column */
.dgs-holding__footer {
	white-space: nowrap;
}

.dgs-holding__footer p {
	margin: 0;
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.2);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-family: "Courier New", monospace;
}

/* Subtle scanline texture overlay */
.dgs-holding::before {
	content: '';
	position: fixed;
	inset: 0;
	background-image: repeating-linear-gradient(
		0deg,
		transparent,
		transparent 2px,
		rgba(0, 0, 0, 0.03) 2px,
		rgba(0, 0, 0, 0.03) 4px
	);
	pointer-events: none;
	z-index: 0;
}
.dgs-holding__brand,
.dgs-holding__content,
.dgs-holding__footer { z-index: 1; }
