@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
	--bg: #0b0c10;
	--surface: rgba(22, 24, 30, 0.9);
	--surface-card: rgba(30, 33, 42, 0.8);
	--border: rgba(255, 255, 255, 0.1);
	--border-accent: rgba(0, 210, 255, 0.25);
	--text: #f0f0f5;
	--muted: rgba(255, 255, 255, 0.6);
	--accent: #00d2ff;
	--accent-hover: #33dfff;
	--primary: #2b58f8;
	--primary-hover: #4a70ff;
	--primary-glow: rgba(43, 88, 248, 0.4);
	--radius: 20px;
}

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

body {
	font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
	background: var(--bg);
	color: var(--text);
	min-height: 100vh;
	overflow-x: hidden;
}

body::before {
	content: '';
	position: fixed;
	inset: 0;
	background:
		radial-gradient(ellipse 80% 50% at 50% -20%, rgba(43, 88, 248, 0.18) 0%, transparent 70%),
		radial-gradient(ellipse 60% 40% at 80% 90%, rgba(0, 210, 255, 0.08) 0%, transparent 60%);
	pointer-events: none;
	z-index: 0;
}

.gate-screen {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 20px;
	position: relative;
	z-index: 1;
}

.gate-card {
	text-align: center;
	max-width: 440px;
	width: 100%;
	padding: 44px 32px 36px;
	background: var(--surface);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgb(0 140 255 / 25%);
	border-radius: var(--radius);
	box-shadow:
		0 20px 60px rgba(0, 0, 0, 0.7),
		inset 0 1px 0 rgba(255, 255, 255, 0.1);
	animation: slideUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes slideUp {
	from { opacity: 0; transform: translateY(30px) scale(0.96); }
	to   { opacity: 1; transform: translateY(0) scale(1); }
}

.gate-logo {
	font-size: 1.8rem;
	font-weight: 800;
	letter-spacing: -0.5px;
	margin-bottom: 20px;
	background: linear-gradient(135deg, var(--accent), #ffffff 60%, var(--accent));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.gate-badge {
	display: inline-block;
	background: rgb(32 143 224 / 15%);
	border: 1px solid rgb(32 185 255 / 40%);
	color: #68dbff;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 18px;
}

.gate-question {
	font-size: 1.65rem;
	font-weight: 800;
	color: #fff;
	line-height: 1.3;
	margin-bottom: 8px;
}

.gate-sub {
	font-size: 0.9rem;
	color: var(--muted);
	margin-bottom: 28px;
	line-height: 1.5;
}

.gate-divider {
	width: 227px;
	height: 2px;
	background: linear-gradient(90deg, transparent, #7ab8f8, transparent);
	margin: 19px auto 21px;
}

.gate-actions {
	display: flex;
	gap: 12px;
}

.action-btn {
	flex: 1;
	padding: 14px 18px;
	border-radius: 12px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	border: none;
	transition: all 0.25s ease;
	text-transform: uppercase;
	letter-spacing: 1.2px;
	font-family: inherit;
}

.action-btn-primary {
	background: linear-gradient(135deg, #2bd6f8 0%, #3a92ff 100%);
	color: #fff;
	box-shadow: 0 4px 20px var(--primary-glow);
}

.action-btn-primary:hover {
	transform: translateY(-2px);
	background: linear-gradient(135deg, #3a92ff 0%, #2bd6f8 100%);
	box-shadow: 0 8px 26px var(--primary-glow);
}

.action-btn-primary:active { transform: translateY(0); }

.action-btn-secondary {
	background: rgba(255, 255, 255, 0.07);
	color: var(--muted);
	border: 1px solid var(--border);
}

.action-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
	transform: translateY(-2px);
}

.gate-disclaimer {
	margin-top: 20px;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.35);
	line-height: 1.4;
}

.cover-screen {
	display: none;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 24px 16px;
	position: relative;
	z-index: 1;
}

.cover-card {
	max-width: 480px;
	width: 100%;
	background: var(--surface);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid var(--border-accent);
	border-radius: 24px;
	padding: 28px 24px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.75);
	text-align: center;
	animation: slideUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.cover-header-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(245, 197, 24, 0.12);
	border: 1px solid rgba(245, 197, 24, 0.3);
	color: #ffca00;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 5px 14px;
	border-radius: 20px;
	margin-bottom: 16px;
}

.cover-title {
	font-size: 1.45rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 18px;
	line-height: 1.35;
}

.cover-image-1to1 {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 16px;
	overflow: hidden;
	margin-bottom: 22px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	background: #14161d;
}

.cover-image-1to1 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}

.cover-image-1to1:hover img {
	transform: scale(1.03);
}

.cover-actions {
	display: flex;
	gap: 12px;
}

.cover-actions .action-btn {
	flex: 1;
	padding: 15px;
	font-size: 15px;
	border-radius: 14px;
}

@media (max-width: 480px) {
	.gate-card { padding: 36px 20px 28px; }
	.gate-question { font-size: 1.45rem; }
	.cover-card { padding: 22px 18px; border-radius: 20px; }
	.cover-title { font-size: 1.25rem; margin-bottom: 14px; }
	.cover-actions { gap: 10px; }
	.cover-actions .action-btn { font-size: 13.5px; padding: 13px; }
}
