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

:root {
  --primary-color: #3b82f6; /* Brighter blue for dark mode */
  --primary-dark: #2563eb; /* Slightly darker blue */
  --accent-color: #10b981; /* Brighter emerald for dark mode */
  --accent-dark: #059669; /* Darker emerald */
  --text-primary: #f8fafc; /* Light text for dark backgrounds */
  --text-secondary: #cbd5e1; /* Muted light text */
  --text-light: #94a3b8; /* Even more muted light text */
  --background-primary: #0f172a; /* Very dark blue-gray background */
  --background-secondary: #1e293b; /* Slightly lighter dark background */
  --background-tertiary: #334155; /* Medium dark background */
  --border-color: #334155; /* Dark border color */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.3);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.4), 0 2px 4px -2px rgb(0 0 0 / 0.3);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.5),
    0 4px 6px -4px rgb(0 0 0 / 0.4);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.6),
    0 8px 10px -6px rgb(0 0 0 / 0.5);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Helvetica Neue", Arial, sans-serif;
  background: var(--background-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 24px;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.375rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 64px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 400;
}

/* Header */
header {
  padding: 24px 0;
  border-bottom: none;
  position: sticky;
  top: 0;
  background: transparent;
  backdrop-filter: blur(10px);
  z-index: 100;
  transition: all 0.3s ease;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after {
  width: 100%;
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.btn {
  padding: 14px 32px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: #ffffff;
  text-decoration: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 140px;
  height: 48px;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--accent-color) 100%
  );
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  height: 48px;
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--background-primary);
  transform: translateY(-2px);
}

/* Hero Button - Larger and more appealing */
.btn-hero {
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  min-width: 180px;
  height: 60px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.btn-hero:hover {
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    var(--primary-color) 100%
  );
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}

.btn-hero:hover::before {
  left: 100%;
}

/* Hero Section */
.hero {
  padding: 140px 0 120px;
  text-align: center;
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero .container {
  position: relative;
  padding: 0 40px;
}

h1 {
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 32px;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .subtitle {
  font-size: 1.375rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.01em;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-highlight {
  color: var(--primary-color);
  font-weight: 800;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 64px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Demo Video Section */
.demo-video-section {
  padding: 120px 0;
  background: var(--background-secondary);
  background-image: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    );
}

.video-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--background-tertiary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.video-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6);
}

.video-container iframe {
  width: 100%;
  height: 560px;
  border: none;
  display: block;
  border-radius: 20px;
}

/* Features Section */
.features-section {
  padding: 120px 0;
  background: var(--background-primary);
  background-image: radial-gradient(
    circle at 70% 20%,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 50%
  );
  position: relative;
}

.features-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 20%,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.feature-item {
  text-align: center;
  padding: 48px 32px;
  background: var(--background-primary);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.feature-item:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 24px;
  line-height: 1;
  display: block;
  filter: grayscale(1);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.feature-item:hover .feature-icon {
  filter: grayscale(0);
  transform: scale(1.1);
}

.feature-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.feature-item:hover h3 {
  color: var(--primary-color);
}

.feature-item p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* How It Works Section */
.how-it-works {
  padding: 120px 0;
  background: var(--background-secondary);
  background-image: radial-gradient(
    circle at 30% 80%,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 50%
  );
  position: relative;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 80%,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 48px;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}

.step-item {
  text-align: center;
  position: relative;
  padding: 40px 24px;
  background: var(--background-primary);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.step-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.step-item:hover .step-number {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.step-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.step-item:hover h3 {
  color: var(--primary-color);
}

.step-item p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Use Cases Section */
.use-cases {
  padding: 120px 0;
  background: var(--background-primary);
  background-image: radial-gradient(
    circle at 80% 30%,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 50%
  );
  position: relative;
}

.use-cases::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 80% 30%,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 64px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.use-case-item {
  background: var(--background-primary);
  padding: 48px 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.use-case-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.use-case-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.use-case-item:hover::before {
  transform: scaleX(1);
}

.use-case-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.use-case-item:hover h3 {
  color: var(--primary-color);
}

.use-case-item p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.use-case-benefits {
  list-style: none;
  padding: 0;
}

.use-case-benefits li {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
  font-weight: 500;
}

.use-case-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 800;
  font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
  padding: 120px 0;
  background: var(--background-secondary);
  background-image: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 50%
  );
  position: relative;
}

.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.pricing-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: var(--background-primary);
  padding: 64px 48px;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  margin-top: 64px;
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}

.pricing-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.pricing-description {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
}

/* FAQ Section */
.faq {
  padding: 120px 0;
  background: var(--background-primary);
  background-image: radial-gradient(
    circle at 20% 70%,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 50%
  );
  position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 70%,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.faq-grid {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}

.faq-item {
  margin-bottom: 20px;
  background: var(--background-primary);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  padding: 32px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-question {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
  color: var(--primary-color);
}

.faq-answer {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Bottom CTA */
.bottom-cta {
  padding: 120px 0;
  text-align: center;
  background: var(--background-secondary);
  background-image: radial-gradient(
      circle at 50% 30%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 60%
    );
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.bottom-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 50% 30%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.bottom-cta .container {
  position: relative;
  z-index: 1;
}

.bottom-cta h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.bottom-cta p {
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.5;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.01em;
}

/* Footer */
footer {
  padding: 40px 0;
  background: var(--background-primary);
  border-top: 1px solid var(--border-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-copyright {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 4px 8px;
  border-radius: 6px;
}

.footer-links a:hover {
  color: var(--primary-color);
  background: var(--background-tertiary);
}

.footer-links .separator {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Responsive */

/* Tablet styles */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  h1 {
    font-size: 3.5rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .hero {
    padding: 100px 0 80px;
  }

  .video-container iframe {
    height: 400px;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  /* Header mobile */
  header {
    padding: 16px 0;
  }

  .nav-links {
    display: none;
  }

  .logo {
    font-size: 1.5rem;
  }

  /* Hero mobile */
  h1 {
    font-size: 2.75rem;
    margin-bottom: 24px;
    line-height: 1.15;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .section-subtitle {
    font-size: 1.125rem;
    margin-bottom: 48px;
  }

  .hero {
    padding: 80px 0 60px;
    min-height: 80vh;
  }

  .hero .subtitle {
    font-size: 1.125rem;
    margin-bottom: 32px;
  }

  /* Button adjustments */
  .btn {
    padding: 12px 24px;
    min-width: 120px;
    height: 44px;
    font-size: 15px;
  }

  .btn-hero {
    padding: 16px 32px;
    font-size: 16px;
    min-width: 160px;
    height: 52px;
    border-radius: 14px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
  }

  /* Sections mobile */
  .features-section,
  .how-it-works,
  .use-cases,
  .pricing,
  .faq,
  .demo-video-section {
    padding: 80px 0;
  }

  .features-grid,
  .steps-grid,
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
  }

  .feature-item,
  .use-case-item,
  .step-item {
    padding: 32px 24px;
  }

  .pricing-content {
    padding: 40px 24px;
    margin-top: 48px;
  }

  .faq-item {
    padding: 24px 20px;
  }

  /* Icons and text mobile */
  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .feature-item h3,
  .step-item h3,
  .use-case-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
  }

  .feature-item p,
  .step-item p,
  .use-case-item p {
    font-size: 1rem;
  }

  .faq-question {
    font-size: 1.125rem;
  }

  .faq-answer {
    font-size: 1rem;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  /* Video mobile */
  .video-container {
    margin: 0 -20px;
    border-radius: 16px;
  }

  .video-container iframe {
    height: 220px;
    border-radius: 16px;
  }

  /* Bottom CTA mobile */
  .bottom-cta {
    padding: 80px 0;
    min-height: 50vh;
  }

  .bottom-cta h2 {
    font-size: 2.25rem;
    margin-bottom: 20px;
    line-height: 1.2;
  }

  .bottom-cta p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    line-height: 1.5;
    letter-spacing: -0.01em;
  }

  /* Footer mobile */
  footer {
    padding: 32px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding: 0 20px;
  }

  .footer-copyright,
  .footer-links {
    font-size: 0.75rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  h1 {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .features-section,
  .how-it-works,
  .use-cases,
  .pricing,
  .faq,
  .demo-video-section {
    padding: 60px 0;
  }

  .feature-item,
  .use-case-item,
  .step-item {
    padding: 24px 16px;
  }

  .bottom-cta h2 {
    font-size: 1.875rem;
  }

  .bottom-cta p {
    font-size: 1rem;
  }

  .btn-hero {
    padding: 14px 28px;
    font-size: 15px;
    min-width: 140px;
    height: 48px;
    border-radius: 12px;
  }

  .video-container iframe {
    height: 180px;
  }
}
