.docker-background {
  background: radial-gradient(circle, rgba(29, 98, 237, 0.3137254902), rgba(0, 8, 77, 0.1254901961));
}

.telegram-background {
  background: radial-gradient(circle, rgba(61, 132, 243, 0.3137254902), rgba(33, 103, 209, 0.1254901961));
}

.clickhouse-background {
  background: radial-gradient(circle, rgba(131, 133, 1, 0.3137254902), rgba(33, 33, 33, 0.1882352941));
}

.dark .clickhouse-background {
  background: radial-gradient(circle, rgba(251, 255, 70, 0.2509803922), rgba(33, 33, 33, 0.1882352941));
}

.py-background {
  background-image: linear-gradient(135deg, rgba(48, 105, 152, 0.2509803922) 40%, rgba(255, 212, 59, 0.2509803922) 100%);
}

.feature-card-icon {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 40%;
  opacity: 0.5;
  z-index: 0;
}

.feature-card-logo {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 45%;
  opacity: 0.5;
  z-index: 0;
}

.badge-list > * {
  margin: 4px;
}

.domain-container {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: bold;
  color: #ffffff;
  text-align: left;
  position: relative;
  white-space: nowrap;
  padding: 0 1rem;
}
.domain-container .tld-wrapper {
  display: ruby;
  position: relative;
  margin-left: 0.2em;
  width: clamp(5rem, 25vw, 10rem);
  height: 100%;
}
.domain-container .tld-wrapper .tld {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.domain-container .tld-wrapper .tld.com {
  text-shadow: 0.2em -0.2em 32px #ff7e5f, -0.2em 0.2em 32px #feb47b;
}
.domain-container .tld-wrapper .tld.ai {
  text-shadow: 0.2em -0.2em 32px #6a11cb, -0.2em 0.2em 32px #2575fc;
}
.domain-container .tld-wrapper .tld.dev {
  text-shadow: 0.2em -0.2em 32px #f7971e, -0.2em 0.2em 32px #ffd200;
}
.domain-container .tld-wrapper .tld.io {
  text-shadow: 0.2em -0.2em 32px #00c6ff, -0.2em 0.2em 32px #0072ff;
}
.domain-container .tld-wrapper .tld.active {
  transform: translateY(0);
  opacity: 1;
  z-index: 1;
}
.domain-container .tld-wrapper .tld.out {
  transform: translateY(-100%);
  opacity: 0;
  z-index: 0;
}