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

body {
	font-family: Arial, sans-serif;
	background-color: #ffffff;
	color: #333333;
	text-align: center;
	line-height: 1.6;
}

.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 24px 16px;
}

.header {
	margin-bottom: 16px;
	color: #666666;
}

.header p {
	font-size: 14px;
	line-height: 1.5;
}

.header .title {
	display: block;
	font-weight: 600;
	color: #1f2937;
	margin-bottom: 4px;
}

.header .meta {
	font-size: 12px;
	color: #6b7280;
}

.divider {
	border-top: 1px solid #e5e7eb;
	margin: 24px auto;
	width: 75%;
}

.main-title {
	max-width: 640px;
	font-size: 32px;
	font-weight: normal;
	line-height: 1.3;
	margin: 24px auto;
	padding: 0 8px;
}

.highlight {
	color: #ef4444;
	font-weight: bold;
	background-color: #fef2f2;
	padding: 4px 8px;
	border-radius: 6px;
	display: inline-block;
	margin-top: 4px;
}

.emphasis {
	font-weight: bold;
	color: #1f2937;
}

.video-container {
	margin: 32px auto;
	width: 100%;
	max-width: 640px;
	padding: 0 8px;
}

.video-wrapper {
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
}

.video-image {
	width: 100%;
	height: auto;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.play-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.play-button {
	width: 64px;
	height: 64px;
	background-color: #ef4444;
	border-radius: 50%;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
}

.video-wrapper:hover .play-button {
	transform: scale(1.1);
}

.play-icon {
	width: 24px;
	height: 24px;
	fill: white;
	margin-left: 4px;
}

.cta-button {
	display: block;
	width: 100%;
	max-width: 640px;
	margin: 24px auto;
	background-color: #ef4444;
	color: white;
	font-size: 18px;
	font-weight: bold;
	padding: 16px 24px;
	border-radius: 12px;
	text-decoration: none;
	box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
	transition: all 0.3s ease;
	border: 2px solid #ef4444;
}

.cta-button:hover {
	background-color: #dc2626;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
}

.description {
	max-width: 640px;
	margin: 32px auto;
	text-align: left;
	padding: 0 16px;
	color: #374151;
}

.description p {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 20px;
}

.description .highlight-text {
	color: #ef4444;
	font-weight: bold;
	background-color: #fef2f2;
	padding: 2px 6px;
	border-radius: 4px;
}

.description .success-number {
	font-weight: bold;
	color: #059669;
}

.description .warning {
	font-weight: bold;
	color: #dc2626;
}

.call-to-action-text {
	text-align: center;
	padding: 16px 24px;
	border-radius: 8px;
}

.call-to-action-text p {
	font-size: 16px;
	font-weight: 500;
	color: #1f2937;
}

.footer {
	font-size: 14px;
	color: #6b7280;
	margin-top: 48px;
	padding: 16px 24px;
	border-top: 1px solid #e5e7eb;
	background-color: #f9fafb;
	border-radius: 12px 12px 0 0;
}

.footer p {
	margin-bottom: 16px;
	font-weight: 500;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px 16px;
	margin-bottom: 24px;
	font-size: 12px;
}

.footer-links a {
	color: #3b82f6;
	text-decoration: none;
	padding: 4px 8px;
}

.footer-links a:hover {
	text-decoration: underline;
	color: #1d4ed8;
}

.footer-links .separator {
	color: #d1d5db;
}

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

.disclaimer p {
	margin-bottom: 12px;
}

.disclaimer strong {
	font-weight: 600;
}

body {
	position: relative !important;
}

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.442);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.overlay a {
	color: black !important;
	text-decoration: none !important;
	text-align: center !important;
}

.message {
	width: 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 40px;
	border-radius: 30px;
}

.bg-white {
	background-color: white;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}

.message-link {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.message-link h3 {
	font-family: Avenir, Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
	font-size: 34px !important;
	font-weight: bold;
	margin: 0 0 30px 0;
	text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
}

.message-link img {
	width: 300px;
}

.message-loader {
	width: 148px;
	height: 148px;
	background-image: url('../img/loading.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;

	animation: spin 2s linear infinite;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.hidden {
	display: none;
}

.invisible {
	opacity: 0;
	visibility: hidden;
	/* transition: opacity 0.3s ease, visibility 0.3s ease; */
}

.visible {
	opacity: 1;
	visibility: visible;
	/* transition: opacity 0.3s ease, visibility 0.3s ease; */
}

@media (max-width: 425px) {
	.container {
		padding-top: 19px;
	}

	.divider {
		margin: 19px auto;
	}

	.main-title {
		margin-top: 19px;
	}
}
