body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #181818;
  color: #f1f1f1;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.tryaether {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
}
#examples {
  flex: 1;
  padding: 10px;
  font-size: 1rem;
  background-color: #2a2a2a;
  border: 1px solid #8402fd;
  color: #f1f1f1;
  border-radius: 5px;
}

select,
option,
optgroup {
  font-style: normal;
  text-decoration: none;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
b {
  font-weight: bold;
  position: relative;
  display: inline-block;
  font-size: 1.2em;
  transition: color 0.3s ease, transform 0.3s ease;
}

b:hover {
  color: #8402fd;
  animation: flipEffect 0.6s ease forwards,
    sparkleEffect 1s ease-out 0.6s forwards,
    emphasizeEffect 0.3s ease-out forwards;
}

@keyframes flipEffect {
  0% {
    transform: rotateY(0);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

@keyframes sparkleEffect {
  0% {
    text-shadow: 0 0 10px #00f, 0 0 20px #00f, 0 0 30px #00f, 0 0 40px #00f;
  }
  50% {
    text-shadow: 0 0 10px #ff0, 0 0 20px #ff0, 0 0 30px #ff0, 0 0 40px #ff0;
  }
  100% {
    text-shadow: 0 0 10px #ff00ff, 0 0 20px #ff00ff, 0 0 30px #ff00ff,
      0 0 40px #ff00ff;
  }
}

@keyframes emphasizeEffect {
  0% {
    transform: scale(1);
    text-shadow: 0 0 5px #00f, 0 0 10px #00f, 0 0 20px #ff0;
  }
  100% {
    transform: scale(1.2);
    text-shadow: 0 0 10px #00f, 0 0 20px #00f, 0 0 30px #ff0;
  }
}
b:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(132, 2, 253, 0.3), rgba(0, 0, 0, 0));
  animation: particleEffect 1s ease-out forwards;
}
@keyframes particleEffect {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(10);
    opacity: 0;
  }
}

code {
  flex: 1;
  background-color: black;
  color: #f1f1f1;
  border-radius: 5px;
  font-size: 1rem;
  white-space: pre-wrap;
  word-wrap: break-word;
  display: inline-block;
  max-width: 50%;
  text-align: left;
}

nav {
  background-color: #1e1e1e;
  padding: 20px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-logo {
  width: 40px;
  height: 40px;
  background-color: #8402fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}
.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-grow: 1;
}
nav ul li {
  margin: 0 1.5rem;
}
nav ul li a {
  color: #f1f1f1;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}
nav ul li a:hover {
  color: #8402fd;
}
.content {
  text-align: center;
  padding: 5rem 2rem;
  padding-top: 7rem;
  background-color: #1a1a1a;
}
.content h1 {
  font-size: 3.5rem;
  margin: 0;
  color: #8402fd;
}
.content p {
  font-size: 1.2rem;
  color: #ddd;
  margin-top: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.features {
  display: flex;
  justify-content: center;
  padding: 4rem 2rem;
  background-color: #222;
}
.feature {
  margin: 0 2rem;
  text-align: left;
  flex: 1;
  padding: 1.5rem;
  border-left: 2px solid #8402fd;
  border-right: 2px solid #8402fd;
  transition: transform 0.3s ease;
}
.feature:hover {
  transform: translateY(-10px);
}
.feature h3 {
  font-size: 2.2rem;
  color: #f1f1f1;
  margin-bottom: 1rem;
}
.feature p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 1rem;
}

.feature ul li {
  margin: 10px 0;
  color: #ddd;
  position: relative;
  transition: transform 0.3s ease;
}

.feature ul li::before {
  content: "> ";
  color: #8402fd;
  font-weight: bold;
  position: absolute;
  left: -20px;
  transition: transform 0.3s ease;
}

.feature ul li:hover {
  transform: rotateY(11deg);
}

.feature ul li:hover::before {
  transform: translateZ(5px);
}

.feature ul {
  list-style-type: none;
  padding-left: 0;
  font-size: 1.1rem;
}
.feature ul li {
  margin: 10px 0;
  color: #ddd;
}
.feature ul li::before {
  content: "> ";
  color: #8402fd;
  font-weight: bold;
}
.cta {
  background-color: #8402fd;
  color: white;
  text-align: center;
  padding: 3rem 1rem;
}
.cta p {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}
.cta a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 1rem;
  display: inline-block;
  transition: color 0.3s ease;
}
.cta a:hover {
  color: #f1f1f1;
}
footer {
  background-color: #181818;
  color: #f1f1f1;
  text-align: center;
  padding: 2rem 0;
}
footer {
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #1e1e1e;
  transition: transform 0.3s ease;
}
.features .feature ul li {
  font-size: 1.1rem;
  color: #555;
  margin: 10px 0;
}
@media screen and (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  nav ul li {
    margin: 1rem 0;
  }
  .features {
    flex-direction: column;
  }
  .feature {
    margin: 1rem 0;
    text-align: center;
    border-left: none;
    border-right: none;
  }
}
