:root {
  --primary-color: #007bff;
  --dark-color: #212529;
}

body {
  font-family: Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: black;
  color: white;
  display: flex;
}

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 500px;
  display: flex;
  align-items: center;
}

.feature-card {
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}

.feature-icon {
  font-size: 2.5rem;
}

.pricing-card {
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
}

.price .amount {
  font-size: 2.5rem;
  font-weight: bold;
}

.testimonial-card {
  transition: transform 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.stars {
  font-size: 1.2rem;
}

.cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

footer a:hover {
  text-decoration: underline;
}

.video-container {
  height: 300px;
  width: 300px;
  overflow: hidden;
  position: relative;
}

.video-container video {
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/* Just styling the content of the div, the *magic* in the previous rules */
.video-container .caption {
  z-index: 1;
  position: relative;
  text-align: center;
  color: #dc0000;
  padding: 10px;
}