body {
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  margin: 0;
  padding: 0;
}

section {
  position: relative;
  padding: 40px 20px;
}

.button-primary {
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background: linear-gradient(135deg, hsl(212, 95%, 25%), hsl(212, 85%, 45%));
  color: hsl(0, 0%, 100%);
  box-shadow: 0 10px 30px -5px hsla(212, 95%, 25%, 0.15);
}
.button-primary:hover {
  box-shadow: 0 20px 40px -10px hsla(212, 95%, 25%, 0.2);
  transform: translateY(-2px);
}
.button-primary:active {
  box-shadow: 0 4px 20px -2px hsla(212, 95%, 25%, 0.1);
  transform: translateY(0);
}

.button-secondary {
  border: none;
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background: linear-gradient(135deg, hsl(160, 85%, 35%), hsl(160, 75%, 55%));
  color: hsl(0, 0%, 100%);
  box-shadow: 0 10px 30px -5px hsla(212, 95%, 25%, 0.15);
}
.button-secondary:hover {
  box-shadow: 0 20px 40px -10px hsla(212, 95%, 25%, 0.2);
  transform: translateY(-2px);
}
.button-secondary:active {
  box-shadow: 0 4px 20px -2px hsla(212, 95%, 25%, 0.1);
  transform: translateY(0);
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}
.section-heading .title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  text-align: center;
}

.hero-section {
  overflow: hidden;
  height: 99.9vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-section .xvp-top {
  width: 100%;
  position: absolute;
  z-index: 0;
}
.hero-section .xvp-top::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, hsl(212, 95%, 25%) 0%, hsl(160, 85%, 35%) 100%);
  z-index: 1;
  opacity: 0.85;
}
.hero-section .banner-content {
  position: relative;
  z-index: 2;
  color: hsl(0, 0%, 100%);
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  text-align: center;
}
.hero-section .banner-content h1 {
  font-size: 4.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  text-shadow: 0 0 30px hsla(212, 85%, 45%, 0.3);
}
.hero-section .banner-content h1 span {
  font-size: 4rem;
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  background-image: linear-gradient(135deg, hsl(0, 0%, 100%), hsl(212, 100%, 50%));
}
.hero-section .banner-content p {
  font-size: 1.5rem;
  max-width: 80%;
  text-shadow: 0 0 30px hsla(212, 85%, 45%, 0.3);
}
.hero-section .card-wrapper {
  margin-top: 40px;
}
.hero-section .card-wrapper .card-top {
  padding: 20px;
  max-width: calc(100% - 3rem);
  margin: 0 auto;
  text-align: center;
  border-radius: 10px;
}
.hero-section .card-wrapper .card-top .font-count {
  margin-bottom: 0;
  font-weight: 700;
}/*# sourceMappingURL=style.css.map */