body {
  font-family: sans-serif;
  margin: 0;
  background: radial-gradient(
    circle,
    #36534a,
    #200671,
    #36534a,
    #200671,
    #36534a,
    #200671
  );
  animation: BCC 25s alternate infinite;
  background-size: 200% 200%;
  color: #c9d1d9;
}
abbr {
  text-decoration: none;
}
@keyframes BCC {
  0% {
    background-position: 0% 0%;
  }
  25% {
    background-position: 25% 25%;
  }
  50% {
    background-position: 50% 50%;
  }
  75% {
    background-position: 75% 75%;
  }
  100% {
    background-position: 100% 100%;
  }
}
/* HEADER */
.header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background-color: transparent;
  border-bottom: 1px solid #30363d;
}
.logo {
  color: #c9d1d9;
  margin: 0;
  font-size: 1.5rem;
}

.nav {
  margin-left: auto;
  display: flex;
  gap: 20px;
}

.nav a {
  color: #c9d1d9;
  text-decoration: none;
  transition: 0.3s;
}

.nav a:hover {
  color: #00ff99;
}

/* HERO */
.hero-title {
  text-align: center;
}
.hero-subtitle {
  text-align: center;
}
.hero-title {
  color: #00ff99;
  font-size: 50px;
  margin: 10px 0;
}
.main {
  display: flex;
  justify-content: center;
  border: 4px solid rgb(0, 234, 255);
  margin-left: 10%;
  margin-right: 10%;
  border-radius: 30px 10px 30px 10px;
  background-color: rgb(1, 53, 102);
  margin-bottom: 10px;
  transition: 1s ease;
}
.main:hover {
  border-color: #0f172a;
}
.hero-subtitle {
  color: #c9d1d9;
  font-size: 25px;
  margin: 10px 0;
}

.hero-desc {
  color: #c9d1d9;
  max-width: 500px;
  margin-left: 10px;
  font-size: x-large;
  margin-top: 7%;
}

.hero-image {
  width: 500px;
  max-width: 100%;
  border-radius: 10px;
  margin-top: 10px;
  filter: drop-shadow(0 0 10px #ffffff);
  border: #0000ff 2px solid;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .main {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-desc {
    text-align: center;
  }
  .hero-image {
    margin: 0 auto;
    margin-top: 10px;
  }
}

/* BUTTONS */
.container2 {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-link {
  text-decoration: none;
  color: inherit;
}

.buttons {
  border: #00ff99 solid 1px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  background-color: #00ff99;
  padding: 0 10px;
}

.buttons h3 {
  margin-right: 10px;
}

.buttons img {
  margin: 10px;
}

.buttons2 {
  border: transparent solid 1px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.buttons2 h3 {
  margin-right: 10px;
  color: #c9d1d9;
}

/* SECTIONS */
.divider {
  color: transparent;
}

.text5 {
  display: flex;
  justify-content: center;
}

.section-title {
  color: #c9d1d9;
}

.features-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 10px;
}

.feature-card {
  border: #30363d 4px solid;
  width: fit-content;
  border-radius: 10px;
  transition: 1s ease;
  text-align: center;
  padding: 10px;
  background: rgba(20, 20, 30, 0.45);
  backdrop-filter: blur(18px);
  border: 4px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}
.feature-card:hover {
  border-color: rgba(96, 165, 250, 0.9);
}

.feature-icon {
  text-align: center;
}

.feature-card h2 {
  color: #c9d1d9;
  margin: 10px;
}

.feature-text {
  color: #c9d1d9;
  margin: 5px 10px 15px;
}

/* USAGE */
.forborder {
  margin: 20px auto 10px;
  border-radius: 10px;
  transition: 1s ease;
  width: fit-content;
  max-width: calc(100% - 40px);
  background: rgba(20, 20, 30, 0.45);
  backdrop-filter: blur(18px);
  border: 4px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.forborder:hover {
  border-color: rgba(96, 165, 250, 0.9);
}

.usage {
  color: #c9d1d9;
  text-align: center;
  padding: 10px;
}

.usage-text {
  color: #c9d1d9;
  margin: 8px 10px;
}

.mshcodes {
  border: #f2f2f2 2px solid;
  margin: 10px;
  border-radius: 10px;
  background-color: #4b4242;
  padding: 10px;
}

.mshcodes p {
  margin: 4px 0;
}

/* UPDATES */
.srr img {
  animation: infinite linear 2s rotate;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.srr {
  border: 4px solid #0f766e;
  border-radius: 10px;
  background-color: #5c2424;
  transition: 1s ease;
}
.stable {
  border: 4px solid #0f766e;
  border-radius: 10px;
  margin-left: 5%;
  background-color: #00a8fc;
  transition: 1s ease;
}
.stable:hover {
  border-color: #312e81;
  filter: brightness(1.1);
}
.srr:hover {
  border-color: #312e81;
  filter: brightness(1.1);
}
.updates-section {
  text-align: center;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.updates-title,
.updates-or {
  color: #c9d1d9;
}

.updates-text {
  color: #c9d1d9;
  margin: 8px 0;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 30px 20px;
}

.footer-brand,
.footer-copy {
  color: #c9d1d9;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.footer-nav a {
  color: #c9d1d9;
  text-decoration: none;
  transition: 1s ease;
}

.footer-nav a:hover {
  color: #00ff99;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-image {
    width: 180px;
  }

  .section-title {
    font-size: 23px;
  }

  .features-grid {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 320px) {
  .forborder {
    margin-left: auto;
    margin-right: auto;
  }
  .updates-section {
    display: flex;
    flex-direction: column;
  }
  .stable {
    text-align: center;
    margin-top: 2%;
    margin-left: 0%;
  }
}
