@import url(https://fonts.googleapis.com/css2?family=Anton&display=swap);
@charset "UTF-8";
:root {
  --bs-primary-rgb: 0,0,0;
}
.gtd-title {
  font-family: "Anton", sans-serif;
  font-size: 64px;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  margin: 40px 0;
  color: white;
}
.gtd-line {
  display: block;
  color: white;
  letter-spacing: 2px;
  text-shadow: 2px 2px 0 black;
}
.gtd-degens {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 10px;
}
.gtd-degens span {
  font-size: 64px;
  text-shadow: 2px 2px 0 black;
}
.color-blue {
  color: #0099FF;
}
.color-green {
  color: #00CC33;
}
.color-yellow {
  color: #FFCC00;
}
.color-red {
  color: #FF3333;
}
.text-primary-typography h3 {
  font-size: 14px !important;
  color: #FFF !important;
}
.header-bg {
  background-image: url("/assets/img/header.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
}
.header-bg-1 {
  background-image: url("/assets/img/usd-logo.png");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
}
@media (orientation: portrait) {
  .header-bg {
    background-size: contain;
    height: 250px;
  }
}
.modal-container {
  z-index: 9999 !important;
}
.blog-card-1__img {
  mask-image: unset;
  -webkit-mask-image: unset;
  -webkit-mask-box-image: unset;
}
.blog-card-1.active {
  border: 2px solid var(--bs-indigo);
}
.loader {
  width: 8px;
  height: 40px;
  border-radius: 4px;
  display: block;
  margin: 20px auto;
  position: relative;
  background: currentColor;
  color: #000;
  box-sizing: border-box;
  animation: animloader 0.3s 0.3s linear infinite alternate;
}
.loader::after, .loader::before {
  content: "";
  width: 8px;
  height: 40px;
  border-radius: 4px;
  background: currentColor;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  box-sizing: border-box;
  animation: animloader 0.3s 0.45s linear infinite alternate;
}
.loader::before {
  left: -20px;
  animation-delay: 0s;
}
@keyframes animloader {
  0% {
    height: 48px;
  }
  100% {
    height: 4px;
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.p-terminal-command-response {
  color: rgb(0, 170, 0) !important;
}
input[type=email], input[type=text], input[type=number], input[type=password], input[type=search] {
  border: none !important;
}
.modal-container {
  pointer-events: none !important;
}
pre input {
  border: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
}
@media (max-width: 640px) {
  .sm-hidden {
    display: none;
  }
}
.swv-button-trigger {
  width: 160px !important;
  background-color: transparent !important;
}
.swv-button-trigger p {
  margin: 0 !important;
}
.custom-accordion--faq {
  --bs-accordion-bg: white;
  --bs-accordion-border-color: transparent;
  --bs-accordion-btn-color: #000;
  --bs-accordion-color: #000;
  --bs-accordion-active-color: hsl(var(--primary-10));
  --bs-accordion-btn-padding-y: 1.5rem;
  --bs-accordion-body-padding-y: 1.5rem;
}
.feature-card {
  background-color: #FFCD06;
  box-shadow: -16px 15px 0px 1px rgb(0, 0, 0);
}
.feature-card h2 {
  color: #000000 !important;
}
.text-shadow {
  text-shadow: -4px 3px 0px rgb(0, 0, 0);
}
.box-shadow {
  box-shadow: -16px 15px 0px 1px rgb(0, 0, 0);
}
.disco-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15), transparent 60%), repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.1) 0deg 10deg, transparent 10deg 20deg);
  animation: discoLights 3s linear infinite, pulse 1.5s ease-in-out infinite;
  mix-blend-mode: screen;
  z-index: 1;
}
/* Анимированные цветные пятна */
.color-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}
.blob {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: moveBlobs 10s linear infinite alternate;
}
.blob.red {
  background: red;
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}
.blob.blue {
  background: blue;
  top: 30%;
  left: 60%;
  animation-delay: 2s;
}
.blob.green {
  background: lime;
  top: 60%;
  left: 40%;
  animation-delay: 4s;
}
.blob.purple {
  background: magenta;
  top: 80%;
  left: 10%;
  animation-delay: 6s;
}
@keyframes moveBlobs {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(100px, -50px) scale(1.2);
  }
}
@keyframes discoLights {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.5;
  }
}
.feature-card {
  background-color: #FFCD06;
  box-shadow: -16px 15px 0px 1px rgb(0, 0, 0);
}
.feature-card h2 {
  color: #000000 !important;
}
.text-shadow {
  text-shadow: -4px 3px 0px rgb(0, 0, 0);
}
.box-shadow {
  box-shadow: -16px 15px 0px 1px rgb(0, 0, 0);
}
.disco-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15), transparent 60%), repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.1) 0deg 10deg, transparent 10deg 20deg);
  animation: discoLights 3s linear infinite, pulse 1.5s ease-in-out infinite;
  mix-blend-mode: screen;
  z-index: 1;
}
/* Анимированные цветные пятна */
.color-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}
.blob {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: moveBlobs 10s linear infinite alternate;
}
.blob.red {
  background: red;
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}
.blob.blue {
  background: blue;
  top: 30%;
  left: 60%;
  animation-delay: 2s;
}
.blob.green {
  background: lime;
  top: 60%;
  left: 40%;
  animation-delay: 4s;
}
.blob.purple {
  background: magenta;
  top: 80%;
  left: 10%;
  animation-delay: 6s;
}
@keyframes moveBlobs {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(100px, -50px) scale(1.2);
  }
}
@keyframes discoLights {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.5;
  }
}
.prompt-generator {
  border: 1px rgb(255, 194, 41) dashed;
  border-radius: 8px;
  padding: 32px;
  background-color: #2d1850;
}
.prompt-generator label {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: rgb(255, 194, 41);
}
.prompt-generator select, input, textarea, input[type=file] {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.5rem;
  color: #fff;
  border: 2px dashed rgb(255, 194, 41);
  border-radius: 5px;
  background-color: transparent;
  color: #fff;
  box-shadow: 0px 8px 0px 1px rgb(255, 194, 41);
}
.prompt-generator button {
  margin-top: 1.5rem;
  background-color: mediumpurple;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 8px;
}
.upload-box {
  background: #1a1a1a;
  border: 2px dashed #555;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 2rem;
  cursor: pointer;
  transition: border 0.3s ease;
  min-height: 250px;
  display: flex;
  align-items: center;
  align-content: center;
}
.upload-box:hover {
  border-color: #1e90ff;
}
.upload-box input {
  display: none;
}
.pricing-btn.active {
  background-color: #FFCD06;
  color: #000;
}
