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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  min-height: 100vh;
  background: #000000;
  color: #ffffff;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 6px solid rgba(255, 255, 255, 0.1);
  border-top: 6px solid #ff0000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.main-content {
  display: none;
}

.header {
  padding: 2rem;
  text-align: center;
}

.logo {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.video-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 2rem;
}

.loop-video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.cta-section {
  padding: 3rem 2rem;
  text-align: center;
}

.cta-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .cta-text {
    font-size: 1.5rem;
  }
}

.cta-button {
  display: inline-block;
  padding: 10px;
  min-width: 300px;
  background-color: #ff0000;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background-color: #cc0000;
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .cta-button {
    font-size: 1.5rem;
  }
}

.encode-sans-condensed-thin {
  font-family: "Encode Sans Condensed", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.encode-sans-condensed-extralight {
  font-family: "Encode Sans Condensed", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.encode-sans-condensed-light {
  font-family: "Encode Sans Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.encode-sans-condensed-regular {
  font-family: "Encode Sans Condensed", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.encode-sans-condensed-medium {
  font-family: "Encode Sans Condensed", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.encode-sans-condensed-semibold {
  font-family: "Encode Sans Condensed", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.encode-sans-condensed-bold {
  font-family: "Encode Sans Condensed", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.encode-sans-condensed-extrabold {
  font-family: "Encode Sans Condensed", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.encode-sans-condensed-black {
  font-family: "Encode Sans Condensed", sans-serif;
  font-weight: 900;
  font-style: normal;
}

/*# sourceMappingURL=main.css.map */
