/* Full screen overlay */
.age-verify-gate {
	position: fixed;
	top: 0; left: 0; width: 100%; height: 100%;
	background: #000000;
	background-image: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
	z-index: 9999999;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Main content wrapper */
.age-gate-wrapper {
	width: 90%;
	max-width: 650px;
	padding: 40px 30px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	text-align: center;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(15px); /* Glassmorphism effect */
	-webkit-backdrop-filter: blur(15px);
}

/* Logo section */
.age-gate-logo {
	margin-bottom: 25px;
}
.age-gate-logo img {
	max-width: 250px;
	height: auto;
	border-radius: 8px;
}

.age-gate-legal {
	font-size: 13px;
	line-height: 1.6;
	color: #bbb;
	margin-bottom: 20px;
}

.age-gate-title {
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 30px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Button container */
.age-gate-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
}

/* General button style */
.age-btn {
	padding: 8px 30px;
	font-size: 16px;
	font-weight: bold;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
	outline: none;
}

/* Confirm button (Red) */
.btn-confirm {
	background: #c30000;
	color: #fff;
	border: none;
}
.btn-confirm:hover { 
	background: #ff0000; 
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(195, 0, 0, 0.4);
}

/* Exit button (Outline) */
.btn-exit {
	background: transparent;
	color: #fff;
	border: 1px solid #fff;
}
.btn-exit:hover { 
	background: rgba(255, 255, 255, 0.1); 
	transform: translateY(-2px);
}

/* Responsive optimization */
@media (max-width: 600px) {
	.age-gate-buttons { flex-direction: column; align-items: center; gap: 15px; }
	.age-btn { width: 100%; max-width: 280px; }
	.age-gate-wrapper { padding: 30px 20px; }
	.age-gate-title { font-size: 18px; }
}