body {
  font-family: "Share Tech Mono", monospace;
  font-size: 18px;
  font-weight: 300;
  background: url('https://www.transparenttextures.com/patterns/stardust.png'), #000;
  background-size: cover;
}
.container {
  width: 800px;
  margin: 30px auto;
  background: white;
  padding: 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
}
.container .heading {

  border-radius: 10px;
}
h1 {
  font-family: 'Star Wars', sans-serif;
  color: #FFE81F; /* Star Wars yellow */
  text-align: center;
  font-size: 75px;
  margin: 0%;
}
h2 {
  font-family: "Share Tech Mono", monospace;
  color: #FFE81F; /* Star Wars yellow */
  text-align: center;
  font-size: 44px;
  margin: 0%;
  padding: 10px;
}
.joke-button {
  font-family: "Share Tech Mono", monospace;
  font-size: 24px;
  font-weight: 350;
  border-radius: 8px;
  padding: 10px;
  display: block; 
  margin: 20px auto; 
}
.joke-button:hover {
  background-color: rgb(0, 0, 0);
  color: white;
}
.joke {
  font-family: "Share Tech Mono", monospace;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border: 2px solid #FFE81F;
  border-radius: 12px;
  font-size: 24px;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 232, 31, 0.8);
}
.custom-joke, #joke-button, #another-joke {
  display: none;
  font-family: "Share Tech Mono", monospace;
}

#joke {
  padding: 50px;
  margin-top: 30px;
  border-top: 1px solid #ccc;
  font-family: "Share Tech Mono", monospace;
}

.topic-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 20px auto;
}

.topic-selector {
  width: 70%;
  height: 30px;
  padding: 12px;
  border: 2px solid #e6d116; /* Star Wars yellow */
  border-radius: 10px;
  font-size: 18px;
  background-color: black;
  color: #e6d116;
  text-align: center;
  font-family: "Share Tech Mono", monospace;
  box-shadow: 0 0 10px #ffe81f, 0 0 20px #ffef70 inset;
}

.topic-submit {
  padding: 14px 30px;
  font-size: 18px;
  background-color: #000;
  color: #e6d116;
  border: 2px solid #e6d116;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Share Tech Mono", monospace;
  box-shadow: 0 0 12px #e6d116, 0 0 24px #e6d116 inset;
  transition: all 0.3s ease;
}

.topic-submit:hover {
  background-color: #e6d116;
  color: #000;
  box-shadow: 0 0 18px #e6d116, 0 0 36px #e6d116 inset;
}

.hint {
  text-align: center;
  font-style: italic;
  color: #999;
  margin-top: 10px;
  font-size: 14px;
  font-family: "Share Tech Mono", monospace;
}
#start-again {
  display: none;
  margin: 20px auto;
  padding: 12px 28px;
  background-color: black;
  color: #e6d116;
  border: 2px solid #e6d116;
  border-radius: 12px;
  font-size: 14px;
  font-family: "Share Tech Mono", monospace;
  cursor: pointer;
  box-shadow: 0 0 10px #e6d116, 0 0 20px #e6d116 inset;
  transition: all 0.3s ease-in-out;
}

#start-again:hover {
  background-color: #e6d116;
  color: black;
  box-shadow: 0 0 18px #e6d116, 0 0 36px #e6d116 inset;
}
/* Lightsaber loader wrapper */
#lightsaber-loader {
  display: none;
  justify-content: center;
  margin-top: 30px;
}

.lightsaber {
  width: 200px;
  height: 6px;
  background: #000;
  position: relative;
  overflow: hidden;
  border: 2px solid #333;
  border-radius: 10px;
}

.lightsaber::before {
  content: "";
  position: absolute;
  left: -50%;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, transparent, #00f0ff, transparent);
  animation: ignite 1.2s linear infinite;
}

@keyframes ignite {
  0% {
    left: -50%;
  }
  100% {
    left: 100%;
  }
}
footer {
  padding: 5px 0 0 0;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

footer a {
  color: #e6d116; /* Star Wars yellow */
  text-decoration: none;
  font-weight: bold;
}

