  
  
  body {
  margin: 0;
  background-color: #1f1d24;
  background-image: url("/pattern2.png");
  background-repeat: repeat;
  background-size: 100px 100px;
  animation: patternDrift 100s linear infinite;
  overflow-x: hidden;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.7;
  font-family: 'Special Elite', monospace;
}

@keyframes patternDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 200px 200px;
  }
}

  .upbanner {
    position: sticky;
    top: 0;
    background: #c9b21a;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 30px;
    letter-spacing: 1px;
    z-index: 10;
  }
  
  .askpanel {
  font-family: 'Special Elite', monospace;
  color: #ffffff;
  padding: 10px 18px;
  font-size: 16px;
  max-width: 720px;
  margin: 40px auto;
  background: #2b2a33;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  overflow: hidden;
  text-align: justify;
  text-shadow: 0 1px 1px rgba(0,0,0,0.5);
  }
  
  .askcontent {
    padding: 20px;
  }
  
  .menutabs {
  max-width: 720px;
  margin: 30px auto 0 auto;
  display: flex;
  gap: 10px;
  padding-right: 20px;
  margin-bottom: -40px;
  }
  
  .tab {
  background: #3a3944;
  color: #fff;
  border: none;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  opacity: 0.7;
}

  .tab:hover {
  opacity: 1;
}
  .tabcontent {
  display: none;
}

.tabcontent.active {
  display: block;
}

.tab.active {
  opacity: 1;
  background: #2b2a33;
}



  
  .input {
  width: 100%;
  background: #1f1d24;
  color: #fff;
  border: 1px solid #555;
  border-radius: 6px;
  padding: 10px;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 10px;
  }
  
  .textarea {
  width: 100%;
  background: #1f1d24;
  color: #fff;
  border: 1px solid #555;
  border-radius: 6px;
  padding: 10px;
  font-family: inherit;
  font-size: 14px;
}


  
.askbox {
  background: #1f1d24;
  padding: 0px 40px 60px;
  margin: 30px auto;
  width: 500px;
  height: 400px;
  border-radius: 12px;
  outline: 1.7px solid #dbb50b;
  overflow: hidden;
}

.askbox iframe {
  width: 100%;
  height: auto;
  min-height: 700px;
  border-radius: 8px;
  border: none;
  display: block;
}

  .ask {
  max-width: 720px;
  margin: 40px auto;
  padding: 24px;
  background: rgba(0,0,0,.4);
  border-radius: 12px;
  outline: 1.7px solid #dbb50b;
}

  .ask + .ask {
  margin-top: 60px;
}

  .asked {
    color: #fff;
  }

  .askheader {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.15);
  margin-bottom: 18px;
  border-bottom-style: dashed;
}

  .avatar {
  width: 70px;
  height: 64px;
  border-radius: 8px;
  image-rendering: auto; 
}

  .ask-main {
  display: flex;
  flex-direction: column;
}
  
  .username {
  font-size: 16px;
  color: #fff;
}

  .date {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

  .ask-q {
  font-style: italic;
  color: #fff;
  margin-bottom: 20px;
  }
  
  .ask-a {
  padding-top: 10px;
  color: #e3e3e3;
  line-height: 1.6;
  padding-left: 42px;
  }
  
  .answer-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  opacity: .85;
}

  .answer-header img {
  width: 70px;
  height: 64px;
  border-radius: 8px;
}
  .answer-header span {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}

.ask-divider {
  margin: 24px 0 18px;
  height: 1px;
  width: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,.20),
    transparent
  );
}

.askform input,
.askform textarea {
  width: 100%;
  background: #1f1d24;
  color: #fff;
  border: 1px solid #555;
  border-radius: 6px;
  padding: 10px;
  font-family: inherit;
  font-size: 14px;
  margin-bottom: 10px;
}




  .green {
    color: #95de7e;
  }
  
  
  .footer {
  text-align: center;
  font-size: 13px;
  margin: 40px 0;
  color: black;
  }
  
  