/* styles.css */
body {
  font-family: 'Outfit', sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
  background: linear-gradient(135deg, #f3f4f6, #ffffff);
  color: #333;
  overflow: hidden;
}

.landing-page {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-section {
  text-align: center;
  padding: 10px;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3b3b3b;
}

.hero-section .highlight {
  color: #4a90e2;
}

.hero-section .subheading {
  font-size: 1rem;
  color: #666;
  margin: 5px 0;
}

.video-container {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  width: 100%;
  height: 315px;
  border: none;
}

.cta-section {
  text-align: center;
  padding: 10px;
}

.cta-button {
  background: linear-gradient(to right, #4a90e2, #7ec9f5);
  color: white;
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.cta-note {
  font-size: 0.85rem;
  color: #888;
  margin-top: 5px;
}

/* Glass Effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 10px;
  width: 100%;
}
