/* Shared funnel styles — Costco landing + video guide */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
}

.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #e31837;
  padding: 40px;
}

.container {
  max-width: 440px;
  margin: auto;
  padding: 20px;
}

.cta-button {
  background: #e31837;
  color: white;
  border: none;
  border-radius: 16px;
  padding: 16px 32px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
  background: #cc0000;
}

.cta-button:active {
  transform: translateY(0);
}

strong {
  color: #1a1a1a;
}
