body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  display: flex;
  flex-direction: column;
  background-color: rgb(33, 37, 41);

  min-height: 100vh;
}

h1,
h2,
h3,
.navbar-brand,
.gradient-text {
  font-family: "Audiowide";
  font-weight: normal;
  letter-spacing: 1px;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

.conta {
  max-width: 1500px;
  margin: 0 auto;
  padding: 20px 20px;
  position: relative;
  z-index: 0;
}

.font0 {
  font-size: 80px;
  line-height: 1em;
  font-weight: normal;
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
}

.font1 {
  font-size: 16px;
  line-height: 1.4em;
  font-weight: normal;
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
}

.font2 {
  font-size: 68px;
  line-height: 1.1em;
  font-weight: normal;
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
}

.font3 {
  font-size: 40px;
  line-height: 1.2em;
  font-weight: normal;
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
}

.font4 {
  font-size: 40px;
  line-height: 1.3em;
  font-weight: bold;
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
}

.font5 {
  font-size: 24px;
  line-height: 1.3em;
  font-weight: normal;
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
}

.font6 {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: normal;
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
}

.font7 {
  font-size: 20px;
  line-height: 1.3em;
  font-weight: normal;
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
}

.font8 {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: normal;
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
}

.font9 {
  font-size: 14px;
  line-height: 1.3em;
  font-weight: normal;
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
}

.font10 {
  font-size: 12px;
  line-height: 1.4em;
  font-weight: normal;
  font-style: normal;
  font-family: "Space Grotesk", sans-serif;
}

.gradient-bg {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
}

.gradient-text {
  background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
  background-clip: text;
  color: transparent;
}

.stars {
  background: black;
  background-image: radial-gradient(white 1px, transparent 1px);
  background-size: 30px 30px;
  animation: twinkle 5s infinite alternate;
}

.shooting-stars::before,
.shooting-stars::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8);
  animation: shootingStar 10s linear infinite;
}

.shooting-stars::after {
  top: 30%;
  left: 80%;
  animation-delay: 3s;
  animation-duration: 15s;
}

@keyframes shootingStar {
  0% {
    transform: translateX(0) translateY(0) scale(0.3);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateX(-500px) translateY(300px) scale(1.5);
    opacity: 0;
  }
}

.cosmic-text {
  background: linear-gradient(90deg, #ff6b00, #ff00a8, #00d4ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
  animation: textGlow 3s ease-in-out infinite alternate;
}

.cosmic-subtitle {
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
  animation: subtitleGlow 4s ease-in-out infinite alternate;
}

.cosmic-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  border: none;
  z-index: 1;
}

.cosmic-btn .btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  transition: transform 0.6s;
  z-index: -1;
}

.cosmic-btn:hover .btn-glow {
  transform: translateX(100%);
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.bounce-animation {
  animation: bounce 2s infinite;
}

.planet {
  position: absolute;
  border-radius: 50%;
  filter: drop-shadow(0 0 10px currentColor);
}

.planet-1 {
  width: 100px;
  height: 100px;
  top: 15%;
  left: 10%;
  background: radial-gradient(circle at 30% 30%, #ff6b00, #ff0062);
  animation: float 15s ease-in-out infinite;
}

.planet-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 15%;
  background: radial-gradient(circle at 30% 30%, #00d4ff, #0059ff);
  animation: float 12s ease-in-out infinite reverse;
}

.planet-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 20%;
  background: radial-gradient(circle at 30% 30%, #a200ff, #ff00a8);
  animation: float 18s ease-in-out infinite;
  animation-delay: 2s;
}
.toggle-btn {
  background: none;
  border: none;
  color: #0d6efd;
  cursor: pointer;
  text-decoration: underline;
  font-size: 0.9rem;
  padding: 0;
}

.clamped-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}


@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(0, 212, 255, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
  }
}
@media (max-width: 576px) {
  .cosmic-btn-responsive {
    font-size: 1rem;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

.nebula {
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(94, 44, 237, 0.15) 0%,
      rgba(12, 5, 32, 0) 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 102, 0, 0.1) 0%,
      rgba(12, 5, 32, 0) 50%
    );
  animation: rotateNebula 180s linear infinite;
}

.shooting-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.activeInd {
  height: 2px;
  width: 0%;
  transition: width 0.3s ease;
}

.hero-section {
  background: linear-gradient(
    135deg,
    rgba(12, 5, 32, 0.9) 0%,
    rgba(36, 18, 95, 0.8) 50%,
    rgba(8, 3, 20, 0.9) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
}

.search-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1464802686167-b939a6910659?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80")
      no-repeat center center/cover;
  min-height: 300px;
  margin-top: 70px;
}

.loadMoreBtn {
  display: none;
}
.media-card {
  position: relative;
}

.dropdownWrapper {
  position: static;
}

.dropdown-menu {
  position: absolute;
  z-index: 9999;
}

.heroSection {
  margin-top: 50px;
  margin-bottom: 50px;
}

.card-img-top {
  height: 220px;
  background: #111;
}

.spinner {
  height: 100vh;
}

#mediaContainer {
  min-height: 500px;
  background: #111;
  margin-top: 10px;
}

.ActionSection {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://images.unsplash.com/photo-1454789548928-9efd52dc4031?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80")
      no-repeat center center/cover;
  margin-top: 90px;
}
