:root {
	--bg: #ffffff;
	--text: #111111;
	--danger: #d90d0d;
	--danger-dark: #b10b0b;
	--shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	min-height: 100vh;
	background: var(--bg);
	color: var(--text);
	font-family: "Montserrat", sans-serif;
}

img {
	display: block;
	max-width: 100%;
}

.page {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 32px 16px 56px;
}

.vsl-wrapper {
	width: min(100%, 960px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.vsl-headline {
	width: min(100%, 860px);
	margin-top: 92px;
	padding: 18px 24px 22px;
	text-align: center;
	line-height: 1.15;
	border-radius: 8px;
}

.vsl-headline p {
	margin: 0;
}

.headline-kicker {
	font-size: clamp(1.8rem, 4vw, 3rem);
	font-weight: 800;
	letter-spacing: 0.01em;
}

.headline-highlight {
	display: inline-block;
	margin-top: 6px;
	padding: 2px 10px 4px;
	background: #ff1717;
	color: #ffffff;
	font-size: clamp(2rem, 4.3vw, 3.2rem);
	font-weight: 800;
	line-height: 1;
}

.headline-subtitle {
	margin-top: 10px;
	font-size: clamp(1.6rem, 3vw, 2.3rem);
	font-weight: 700;
	letter-spacing: 0.01em;
}

.headline-accent {
	color: #ff1717;
}

.viewer-banner {
    position: absolute;
    top: 0;
	width: 100%;
	padding: 18px 24px;
	/* border-radius: 18px; */
	background: linear-gradient(180deg, #ef1d1d 0%, var(--danger) 100%);
	color: #ffffff;
	text-align: center;
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
	text-transform: uppercase;
    white-space: nowrap;
	letter-spacing: 0.04em;
	line-height: normal;
	font-weight: 800;
	font-size: 1rem;
}

#viewer-count {
	font-size: 1.5rem;
}

.video-frame {
	width: min(100%, 860px);
	aspect-ratio: 16 / 9;
	border-radius: 24px;
	overflow: hidden;
	background: #000000;
}

#youtube-player,
	vturb-smartplayer,
#youtube-player iframe {
	width: 100%;
	height: 100%;
}

vturb-smartplayer {
	display: block;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: min(100%, 420px);
	padding: 18px 28px;
	border-radius: 10px;
	background: linear-gradient(180deg, #ef1d1d 0%, var(--danger-dark) 100%);
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.25;
	box-shadow: 0 16px 40px rgba(217, 13, 13, 0.28);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button.is-locked {
	cursor: not-allowed;
	background: linear-gradient(180deg, #a3aab5 0%, #6b7280 100%);
	box-shadow: 0 16px 40px rgba(55, 65, 81, 0.24);
}

.cta-button[aria-disabled="true"] {
	pointer-events: none;
}

.cta-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 44px rgba(217, 13, 13, 0.36);
}

.cta-button.is-locked:hover {
	transform: none;
	box-shadow: 0 16px 40px rgba(55, 65, 81, 0.24);
}

.media-strip {
	width: min(100%, 860px);
	display: grid;
}

.media-strip h1 {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7b91;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.media-strip img {
	width: 100%;
}

@keyframes pulse-white {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    animation: pulse-white 2s infinite;
}

@media (max-width: 640px) {
	.page {
		align-items: flex-start;
	}

	.vsl-wrapper {
		gap: 20px;
	}

	.vsl-headline {
		margin-top: 78px;
		padding: 16px 14px 20px;
	}

	.headline-kicker {
		font-size: clamp(1.35rem, 7vw, 1.9rem);
	}

	.headline-highlight {
		font-size: clamp(1.45rem, 7.8vw, 2.1rem);
		padding-inline: 8px;
	}

	.headline-subtitle {
		font-size: clamp(1.15rem, 5.7vw, 1.6rem);
	}

	.viewer-banner {
		padding: 16px 18px;
	}

	.media-strip {
		grid-template-columns: 1fr;
	}

	.cta-button {
		width: 100%;
	}
}

.esconder {
	display: none;
}
