@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&display=swap');

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

body {
  background-color: #F5F5F5;
  background-image:
    linear-gradient(rgba(0,0,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  color: #111111;
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 480px;
  padding: 32px 16px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.video-wrapper {
  width: 100%;
  max-width: 340px;
  height: 604px;
  margin: 0 auto;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #888888;
  font-size: 16px;
  font-weight: 600;
  padding: 16px;
}

.headline {
  color: #111111;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  padding: 0 24px;
  margin-bottom: 40px;
}

.cta-button {
  display: block;
  width: calc(100% - 48px);
  background-color: #22c55e;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 18px 20px;
  border-radius: 10px;
  margin: 24px 24px 0;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.cta-button:hover {
  background-color: #1ca34f;
}

.secure-text {
  color: #444444;
  font-size: 13px;
  margin-top: 16px;
}

@media (min-width: 480px) {
  .headline {
    font-size: 28px;
  }
}
