.rv-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(255, 255, 255, 0.95);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999999;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.rv-popup-content {
	background: #fff;
	max-width: 600px;
	width: 90%;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	padding: 40px;
	box-sizing: border-box;
	border: 1px solid #eaeaea;
}

.rv-logo {
	max-height: 60px;
	margin-bottom: 20px;
	display: block;
}

.rv-popup-header h2 {
	font-size: 32px;
	font-weight: 800;
	color: #1a1a24;
	margin: 0 0 15px 0;
}

.rv-popup-header p {
	font-size: 16px;
	color: #666;
	line-height: 1.5;
	margin: 0 0 30px 0;
}

.rv-checkbox-label {
	display: flex;
	align-items: flex-start;
	padding: 15px 20px;
	border: 1px solid #ddd;
	border-radius: 8px;
	margin-bottom: 15px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.rv-checkbox-label:hover {
	border-color: #bbb;
}

.rv-checkbox {
	margin-top: 4px;
	margin-right: 15px;
	width: 18px;
	height: 18px;
	accent-color: #1a1a24;
}

.rv-checkbox-label span {
	font-size: 15px;
	color: #333;
	line-height: 1.4;
}

.rv-enter-btn {
	width: 100%;
	padding: 18px;
	background-color: #c9d2de;
	color: #556272;
	border: none;
	border-radius: 30px;
	font-size: 18px;
	font-weight: 700;
	cursor: not-allowed;
	transition: all 0.3s ease;
	margin-top: 10px;
	margin-bottom: 20px;
}

.rv-enter-btn.active {
	background-color: #1a1a24;
	color: #fff;
	cursor: pointer;
}

.rv-disclaimer {
	font-size: 12px;
	color: #888;
	line-height: 1.5;
	text-align: left;
}

.rv-popup-footer {
	text-align: center;
	margin-top: 30px;
	padding-top: 20px;
	border-top: 1px solid #eee;
}

.rv-popup-footer p {
	margin: 0;
	color: #666;
	font-size: 14px;
}

.rv-exit-link {
	color: #556272;
	font-weight: bold;
	text-decoration: none;
}