html, body.cag-body {
	margin: 0;
	padding: 0;
	height: 100%;
}

.cag-gate {
	position: relative;
	min-height: 100vh;
	width: 100%;
	background-color: #1a1a1a;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-family: Georgia, 'Times New Roman', serif;
	color: #ffffff;
	text-align: center;
	overflow: hidden;
}

.cag-gate::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
}

.cag-gate-inner {
	position: relative;
	z-index: 1;
	max-width: 640px;
	width: 90%;
	padding: 40px 20px;
}

.cag-logo {
	max-width: 260px;
	width: 60%;
	height: auto;
	margin-bottom: 30px;
}

.cag-heading {
	font-size: 44px;
	line-height: 1.15;
	letter-spacing: 2px;
	margin: 0 0 30px;
	font-weight: 400;
	text-transform: uppercase;
}

.cag-heading-main {
	display: block;
	font-weight: 700;
}

.cag-heading-accent {
	display: block;
	font-style: italic;
	text-transform: lowercase;
	font-weight: 400;
	font-size: 0.85em;
	letter-spacing: 1px;
}

.cag-intro {
	font-size: 20px;
	margin: 0 0 8px;
}

.cag-question {
	font-size: 20px;
	margin: 0 0 28px;
}

.cag-decline-msg {
	max-width: 480px;
	margin: 0 auto 24px;
	line-height: 1.5;
}

.cag-dob-row {
	display: flex;
	justify-content: center;
	gap: 28px;
	margin-bottom: 34px;
	flex-wrap: wrap;
}

.cag-dob-field {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cag-dob-field input {
	width: 70px;
	background: transparent;
	border: none;
	color: #ffffff;
	font-family: inherit;
	font-size: 26px;
	text-align: center;
	padding: 4px 0;
	outline: none;
}

.cag-dob-year input {
	width: 100px;
}

.cag-dob-field input::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

.cag-underline {
	display: block;
	width: 100%;
	border-bottom: 1px solid #ffffff;
	margin-top: 2px;
}

.cag-enter-btn,
a.cag-btn {
	display: inline-block;
	border: none;
	color: #1a1a1a;
	font-family: inherit;
	font-weight: 700;
	letter-spacing: 1.5px;
	font-size: 15px;
	text-transform: uppercase;
	padding: 16px 48px;
	cursor: pointer;
	text-decoration: none;
	border-radius: 2px;
	transition: opacity 0.15s ease;
}

.cag-enter-btn:hover,
a.cag-btn:hover {
	opacity: 0.9;
}

.cag-warning-bar {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 520px;
	margin: 34px auto 0;
	background: #ffffff;
	color: #111111;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.5px;
	padding: 12px 16px;
	box-sizing: border-box;
	text-transform: uppercase;
}

@media (max-width: 480px) {
	.cag-heading { font-size: 30px; }
	.cag-intro, .cag-question { font-size: 16px; }
	.cag-dob-row { gap: 16px; }
	.cag-dob-field input { width: 50px; font-size: 20px; }
	.cag-dob-year input { width: 80px; }
	.cag-warning-bar { font-size: 12px; margin-top: 20px; }
}
