::-webkit-scrollbar {
  display: none;
}
html,
body {
  scrollbar-width: none;
}
body {
  -ms-overflow-style: none;
}
body {
  background: url("https://i.imgur.com/z4guq1U.jpeg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  font-family: Arial;
  text-align: center;
  padding: 20px;
  margin: 0;
}
@media (max-width: 600px) {
  body {
    background: url("https://i.imgur.com/tdiVvNP.jpeg") no-repeat center center;
    background-size: cover;
    background-attachment: scroll;
    min-height: 100vh;
  }
}
.container {
  max-width: 500px;
  margin: auto;
}
.inputBox {
  position: relative;
  margin: 18px 0;
}
.inputBox input {
  width: 100%;
  padding: 12px;
  background: #333;
  border: 2px solid #c800ff;
  color: #00fbff;
  border-radius: 8px;
  outline: none;
}
.inputBox span {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #00fbff;
  transition: 0.3s;
}
.inputBox input:focus ~ span,
.inputBox input:not(:placeholder-shown) ~ span {
  top: -8px;
  font-size: 12px;
}
.checkboxBox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  cursor: pointer;
}
.checkboxBox span {
  color: #00fbff;
}
.checkboxBox input {
  width: auto;
}
.checkboxBox input:checked ~ span {
  color: #c800ff;
  text-shadow: 0 0 5px #c800ff;
}
.checkboxBox label {
  cursor: pointer;
  color: #00fbff;
  font-size: 14px;
}
select {
  width: 100%;
  padding: 12px;
  background: #333;
  border: 2px solid #c800ff;
  color: #00fbff;
  border-radius: 8px;
}
button {
  background: #333;
  color: #00fbff;
  border: 2px solid #00fbff;
  font-weight: bold;
  margin-top: 10px;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
}
button:hover {
  background: #00fbff;
  color: black;
  border-color: #00fbff;
}
textarea {
  width: 100%;
  height: 300px;
  margin-top: 15px;
  background: #333;
  border: 2px solid #c800ff;
  color: #00fff7;
  padding: 10px;
  border-radius: 8px;
}
label {
  margin-top: 20px;
  font-size: 16px;
  color: #00fbff;
}
h1 {
  color: #00fbff;
}
p {
  color: #00fbff;
}
.about-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #333;
  color: #00fbff;
  border: 2px solid #00fbff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1000;
}
.about-btn:hover {
  background: #00fbff;
  color: #333;
}
.about-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000cc;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
.about-panel.active {
  opacity: 1;
  pointer-events: all;
}
.about-content {
  background: #1f1f1f;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  width: 90%;
  max-width: 300px;
  border: 2px solid #00fbff;
}
.about-content h2 {
  color: #d000ff;
}
.about-content h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #d000ff;
  text-align: center;
}
.about-content hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 15px 0;
}
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.links a {
  text-decoration: none;
  color: #00fbff;
  background: #333;
  width: auto;
  height: auto;
  margin: auto;
  align-items: center;
  justify-content: center;
  display: flex;
  font-size: 18px;
  transition: 0.3s;
  position: relative;
}
.links a::after {
  content: attr(title);
  position: absolute;
  bottom: 75px;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: #111;
  color: #00fbff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
  border: 1px solid #00fbff;
}
.links a:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.links a:hover {
  background: #00fbff;
  color: #111;
  transform: scale(1.08);
}
.version-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 20px;
}
.version-group input {
  width: 60px;
  padding: 10px;
  text-align: center;
  font-size: 16px;
  background: #333;
  border: 2px solid #c800ff;
  color: #00fbff;
  border-radius: 10px;
  outline: none;
  transition: 0.2s;
}
.version-group input:focus {
  border-color: #00fbff;
  box-shadow: 0 0 8px #00fbff;
}
.version-group input {
  appearance: auto;
}
.version-group span {
  color: #00fbff;
  font-weight: bold;
  font-size: 18px;
}
#scriptsContainer,
#scriptNameContainer,
#dependencyInput,
#subpackInputs {
  display: none;
}
.footer {
  background: linear-gradient(180deg, #00000000);
  padding: 30px 20px;
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
  border-top: 1px solid #00000000;
  margin-top: 40px;
}

.footer p {
  margin: 10px 0;
  font-size: 16px;
}

.footer a {
  color: #a855f7;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: #00000000;
}
