<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  background-color: #630101
}

h1 {
  font-size: 80px;
  margin-top: 10vh /* Adjust to push it below the navbar */
}

.fire-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.fire-particle {
  position: absolute;
  bottom: 100%;
  width: 5px;
  height: 10px;
  background: orange;
  border-radius: 50%;
  opacity: 0.8;
  /* Add a subtle glow */
  box-shadow: 0 0 8px rgba(255, 69, 0, 0.8);
  animation: fall linear infinite;
}

/* The animation uses custom properties to set different angles and horizontal shifts */
@keyframes fall {
  0% {
    transform: translate(0, 0) rotate(var(--rotateStart, 0deg));
    opacity: 1;
  }
  100% {
    transform: translate(var(--moveX, 0px), 100vh) rotate(var(--rotateEnd, 360deg));
    opacity: 0;
  }
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #35070d;
  position: fixed;
  width: 40%;
  top: 0;
  left: 28%;
  z-index: 9999;
  border-bottom-left-radius: 17px;
  border-bottom-right-radius: 17px;
  font-family: 'notitle';
}

.navbar .logo {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  color: white;
}

.navbar .logo i {
  margin-right: 8px;
  margin-left: 8px;
}

.navbar {
  display: flex;
  align-items: center;
  margin-right: 65px; 
}

.navbar a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  display: flex;
  align-items: center;
  font-size: 26px;
  transition: all 0.2s ease-in-out;
}

.navbar a i {
  margin-right: 8px;
}

.navbar a:hover {
  color: #ff9bcb;
}

#searchBar-rizz {
  width: calc(70vw - 67.5px);
  padding: 10px 10px;
  display: block;
  font-size: 18px;
  height: 10%;
  z-index: 9998;
  top: 0;
  color: #ffffff;
  background-color: #040a35;
  border: 2px solid #050c42;
  border-radius: 8px;
  font-family: notitle;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#searchBar-rizz::placeholder {
  color: #bbbbbb;
  font-family: notitle;
  font-size: 16px;
  position: relative;
}

#searchBar-rizz:focus {
  outline: none;
  border-color: white;
  box-shadow: 0 0 10px white, 0 0 20px white;
  position: relative;
}

#uv-form{
  padding: 3px;
  height: 0;
  top: .2%;
}

.quicklink-button {
  width: 90px;
  height: 110px;
  border-radius: 10px;
  background-color: #35040a;
  color: white;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2px;
  padding: 8px;
  border: none;
  cursor: pointer;
  text-transform: capitalize;
  position: relative;
  transition: background-color 0.3s ease;
  font-family: 'notitle';
}

.quicklink-button:hover {
  background-color: #42050c;
}

.quicklink-button img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 5px;
  font-family: 'notitle';
}

.quicklink-button p {
  margin: 0;
  font-size: 12px;
  text-align: center;
  font-family: 'notitle';
}

.quicklink-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -10px;
  gap: 8px;
  font-family: 'notitle';
}

.section {
  padding: 20px;
  margin: 20px auto;
  max-width: 800px;
  background-color: #300410;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  position: relative;
  z-index: 9998;
}

#searchBar {
  width: 40vw;
  max-width: 400px;
  padding: 12px 20px;
  margin: 20px auto;
  display: block;
  font-size: 18px;
  z-index: 9998;
  color: #ffffff;
  background-color: #250307;
  border: 2px solid #490714;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  font-family: notitle;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#searchBar::placeholder {
  color: #bbbbbb;
  font-family: notitle;
  font-size: 16px;
  position: relative;
}

#searchBar:focus {
  outline: none;
  border-color: #490714;
  box-shadow: 0 0 10px #490714, 0 0 20px #490714;
  position: relative;
}

.form__input {
  width: 90vw;
  max-width: 900px; 
  padding: 14px 22px; 
  margin: 10px auto;
  display: block;
  font-size: 20px;
  color: #ffffff;
  background-color: #250307;
  border: 2px solid #490714;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  font-family: notitle;
  text-align: center;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.form__input::placeholder {
  color: #bbbbbb;
  font-family: notitle;
  font-size: 18px;
}

.form__input:focus {
  outline: none;
  border-color: #490714;
  box-shadow: 0 0 10px #490714, 0 0 20px #490714;
}

p {
 font-weight: bold;
}

.form__input::placeholder {
    text-align: center;
    font-family: 'Be Vietnam Pro', sans-serif;
}

.notification {
  /* existing stylesâ€¦ */
  font-family: 'Pixelify Sans', sans-serif;
}
</pre></body></html>