@font-face {
    font-family: "Montserrat";
    src:url("montserrat_reg.ttf") format("woff");
}	

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
}
  
  body {
	background: #0b0b0d;
	font-family: Arial, sans-serif;
	color: #fff;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
  }
  
  .noise {
	position: fixed;
	inset: 0;
	opacity: .03;
	pointer-events: none;
	background-image:
	  radial-gradient(circle at 20% 20%, #fff 1px, transparent 1px),
	  radial-gradient(circle at 80% 80%, #fff 1px, transparent 1px);
	background-size: 30px 30px;
  }
  
  .app {
	width: 1100px;
	height: 700px;
	background: #111216;
	border: 1px solid rgba(255,255,255,.05);
	border-radius: 24px;
	display: flex;
	overflow: hidden;
	position: relative;
	box-shadow: 0 40px 100px rgba(0,0,0,.6);
  }
  
  .left-side {
	width: 52%;
	position: relative;
	padding: 30px;
	background: #0f1014;
	border-right: 1px solid rgba(255,255,255,.05);
  }
  
  .top-status {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	letter-spacing: 2px;
	opacity: .8;
	margin-bottom: 20px;
  }
  
  .live-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #fff;
	animation: pulse 1.5s infinite;
  }
  
  .video-frame {
	position: relative;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
  }
  
  video {
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  .video-shadow {
	position: absolute;
	inset: 0;
	background:
	  linear-gradient(
		to top,
		rgba(0,0,0,.8),
		rgba(0,0,0,.15)
	  );
  }
  
  .floating-card {
	position: absolute;
	bottom: 30px;
	left: 30px;
	background: rgba(255,255,255,.08);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255,255,255,.08);
	padding: 14px 18px;
	border-radius: 14px;
	font-size: 14px;
  }
  
  .right-side {
	width: 48%;
	padding: 50px;
	display: flex;
	flex-direction: column;
	justify-content: center;
  }
  
  .progress-wrap {
	height: 6px;
	background: rgba(255,255,255,.06);
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 40px;
  }
  
  .progress-bar {
	width: 0%;
	height: 100%;
	background: #fff;
	transition: .3s;
  }
  
  .step {
	display: none;
  }
  
  .step.active {
	display: block;
	animation: fade .35s ease;
  }
  
  h2 {
	font-size: 36px;
	line-height: 1.2;
	margin-bottom: 14px;
  }
  
  p {
	font-size: 18px;
	opacity: .7;
	margin-bottom: 30px;
  }
  
  .answers {
	display: flex;
	flex-direction: column;
	gap: 14px;
  }
  
  a {
	text-decoration: none;
	color: #fff;
  }
  
  .next {
	padding: 18px;
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 14px;
	background: rgba(255,255,255,.03);
	transition: .2s;
	font-size: 18px;
  }
  
  .next:hover {
	transform: translateX(6px);
	background: rgba(255,255,255,.06);
  }
  
  .cta {
	display: block;
	text-align: center;
	padding: 20px;
	border-radius: 14px;
	background: #fff;
	color: #111;
	font-weight: 700;
	margin-top: 10px;
	transition: .2s;
  }
  
  .cta:hover {
	transform: scale(1.02);
  }
  
  @keyframes fade {
	from {
	  opacity: 0;
	  transform: translateY(14px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }
  
  @keyframes pulse {
	0% { opacity: .4; }
	50% { opacity: 1; }
	100% { opacity: .4; }
  }

  /* MOBILE */

@media (max-width: 900px) {

	body {
	  display: block;
	  min-height: 100vh;
	  padding: 20px 12px;
	  overflow-x: hidden;
	}
  
	.app {
	  width: 100%;
	  max-width: 480px;
	  height: auto;
	  min-height: auto;
	  margin: 0 auto;
	  display: flex;
	  flex-direction: column;
	  border-radius: 20px;
	}
  
	/* VIDEO BLOCK TOP */
	.left-side {
	  width: 100%;
	  padding: 14px;
	  border-right: none;
	  border-bottom: 1px solid rgba(255,255,255,.05);
	}
  
	.top-status {
	  margin-bottom: 12px;
	  font-size: 12px;
	  letter-spacing: 1px;
	}
  
	.video-frame {
	  height: 420px;
	  border-radius: 18px;
	}
  
	video {
	  width: 100%;
	  height: 100%;
	  object-fit: cover;
	}
  
	.floating-card {
	  left: 16px;
	  bottom: 16px;
	  padding: 12px 14px;
	  font-size: 13px;
	  border-radius: 12px;
	}
  
	/* CONTENT BLOCK BOTTOM */
	.right-side {
	  width: 100%;
	  padding: 24px 18px 28px;
	  display: block;
	}
  
	.progress-wrap {
	  margin-bottom: 28px;
	}
  
	h2 {
	  font-size: 28px;
	  line-height: 1.2;
	  margin-bottom: 10px;
	}
  
	p {
	  font-size: 14px;
	  margin-bottom: 22px;
	}
  
	.answers {
	  gap: 12px;
	}
  
	.next {
	  padding: 16px;
	  font-size: 14px;
	  border-radius: 12px;
	}
  
	.cta {
	  padding: 18px;
	  font-size: 15px;
	  border-radius: 12px;
	}
  }
  
  
  /* EXTRA SMALL DEVICES */
  
  @media (max-width: 480px) {
  
	body {
	  padding: 0;
	}
  
	.app {
	  max-width: 100%;
	  border-radius: 0;
	  min-height: 100vh;
	}
  
	.left-side {
	  padding: 12px;
	}
  
	.video-frame {
	  height: 360px;
	}
  
	h2 {
	  font-size: 24px;
	}
  
	.right-side {
	  padding: 20px 16px 30px;
	}
  
  }