.btn {
  color: white;
  background-color: #fb3fdd!important;
  font-family: 'Fredoka';
  font-weight: 500;
}
.btn:hover, .btn:active, .btn:focus, .btn:active:focus {
  color: white;
  background-color: #f900d0!important;
}
.btn:disabled {
  color: white;
}

.sign-up-link {
  color: white;
  font-family: 'Fredoka';
  font-weight: 500;
  font-size: 1.0em;
}
.sign-up-link:hover, .sign-up-link:active, .sign-up-link:focus, .sign-up-link:active:focus {
  color: #f900d0;
}

h1, h2, h3, h4 {
  color: #fff;
  margin-top: 1em;
  margin-top: 0.5em;
  letter-spacing: 0.1em;
  font-weight: 500;
}
h2 {
  font-size: min(7.0vw, 4rem);
}
h3 {
  font-size: min(5.0vw, 2.6rem);
  margin-top: 1.4em;
}
strong {
  font-weight: 500;
  color: #555;
}

.header-pink {
  color: #ff33ff;
  text-shadow: #ff33ff 0px 0px 10px;
}
.header-green {
  color: #33ff77;
  text-shadow: #33ff77 0px 0px 10px;
}
.header-blue {
  color: #33ddff;
  text-shadow: #33ddff 0px 0px 10px;
}
.header-yellow {
  color: #ffdd33;
  text-shadow: #ffdd33 0px 0px 10px;
}
.header-white {
  color: #ffffff;
  text-shadow: #ffffff 0px 0px 10px;
}

.faq-header {
  font-size: min(3.6vw, 2.6rem);
  font-family: 'Fredoka';
  font-weight: 500;
  opacity: 1.0;
  margin-top: 0;
  letter-spacing: 0.1em;
  color: #ffffff;
  text-shadow: #ffffff 0px 0px 10px;
}

ul {
  list-style: none;
  font-size: min(4vw, 2rem);
}
ul li::before {
  content: "\25CF";
  font-weight: 600;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  text-shadow: currentColor 0px 0px 10px;
}

.pink-bullets li::before {
  color: #ff33ff;
}
.green-bullets li::before {
  color: #33ff77;
}
.blue-bullets li::before {
  color: #33ddff;
}
.yellow-bullets li::before {
  color: #ffdd33;
}

.link {
  color: #ff99ff;
  font-weight: 500;
  font-size: 1.0em;
}
.link:hover, .link:active, .link:focus, .link:active:focus {
  color: #ff00ff;
}

.bp {
  font-weight: 600;
  display: inline-block;
  color: #ffdd33;
  text-shadow: #ffdd33 0px 0px 10px;
}

.emoji-hug {
  display: inline-block;
  animation: rock 6s infinite ease-in-out;
}
@keyframes rock {
  0%, 20%, 100% {
    transform: rotate(0deg);
  }
  5% {
    transform: rotate(-10deg);
  }
  15% {
    transform: rotate(10deg);
  }
}

.emoji-shake {
  display: inline-block;
  animation: shake 8s infinite ease-in-out;
}
@keyframes shake {
  0%, 20%, 100% {
    transform: translateX(0);
  }
  4% {
    transform: translateX(-5px);
  }
  8% {
    transform: translateX(5px);
  }
  12% {
    transform: translateX(-5px);
  }
  16% {
    transform: translateX(5px);
  }
}

.emoji-sparkle {
  display: inline-block;
  animation: shimmer 8s infinite ease-in-out;
}
@keyframes shimmer {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  2%, 12%, 22% {
    opacity: 0.5;
    transform: scale(1.1);
  }
  7%, 17%, 27% {
    opacity: 1;
    transform: scale(1);
  }
  28%, 100% {
    opacity: 1;
    transform: scale(1);
  }
}

.emoji-bubble {
  display: inline-block;
  animation: bounce 6s infinite ease-in-out;
}
@keyframes bounce {
  0%, 20%, 100% {
    transform: translateY(0);
  }
  5%, 15% {
    transform: translateY(-20px);
  }
  10% {
    transform: translateY(0);
  }
  20%, 100% {
    transform: translateY(0);
  }
}

.emoji-pulse {
  display: inline-block;
  animation: pulse 8s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  5% {
    transform: scale(1.2);
  }
  10% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}


.display-text {
  font-size: min(4vw, 2rem);
}
.display-text-header {
  font-size: min(5vw, 2.2rem);
  font-weight: 500;
}


.accordion {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232dffff' width='32' height='32'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232dffff' width='32' height='32'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button::after {
  content: var(--bs-accordion-btn-icon);
  display: inline-block;
  width: 32px; /* Set the icon size */
  height: 32px; /* Set the icon size */
  background-size: cover;
}

.responsive-bg-container {
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
  /*background-size: 100% 100%;*/
  width: 100%;
  height: 200px; /* Default height for mobile */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
  opacity: 1.0;
  border-radius: 20px;
  border-width: 4px;
  border-style: solid;
  border-color: #6f0091;
}

@media (min-width: 768px) {
  .responsive-bg-container {
    height: 620px; /* Fixed height for desktop */
  }
}

.responsive-bg-container .row {
  width: 100%;
  justify-content: center; /* Center horizontally within the container */
}

/* MOBILE */
@media (max-width: 767px) {
  .container-search-result {
    max-width: 600px;
    background: #00000033 !important;
    border-radius: 20px;
    padding: 0.4em 0.1em;
    margin: 0.5em 0;
  }
  .container-search-result-item-profile-image {
    background: -webkit-linear-gradient(left top, fuchsia 0%, blue 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 2px;
    margin: 0.2em 0.2em;
  }
}
/* DESKTOP */
@media (min-width: 768px) {
  .container-search-result {
    max-width: 1200px;
    background: #00000033 !important;
    /*border: 1px solid #00ffff !important;*/
    border-radius: 20px;
    padding: 0.4em 0.1em;
    margin: 0.5em 0;
  }
  .container-search-result-item-profile-image {
    background: -webkit-linear-gradient(left top, fuchsia 0%, blue 100%);
    width: 108px;
    height: 108px;
    border-radius: 50%;
    padding: 4px;
    margin: 1em 2em;
  }
}





.container-search-options {
  border: 2px solid #dddddd;
  border-radius: 10px;
  background-color: #00000055;
  padding: 0px;
  box-shadow: 0 8px 6px -6px black;
  padding: 10px;
}

/* MOBILE */
@media (max-width: 767px) {

  .container-search-term {
    max-width: 375px;
  }

  .input-search-term {
    font-size: 1.4em !important;
    background: #00000055 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 8px 6px -6px black !important;
    border-radius: 20px;
  }

  .input-search-term::placeholder {
    color: #dddddd !important;
    font-style: italic !important;
  }
  .input-search-term:focus::placeholder {
    color: #aaaaaa !important;
  }

  .input-search-term:focus {
    background: #00000099 !important;
    border: 2px solid #ffffff !important;
  }
  
  .container-search-result {
    max-width: 800px;
    background: #00000033 !important;
    border: 1px solid #00ffff !important;
    border-radius: 20px;
    padding: 0.4em 0.1em;
    margin: 0.5em 0;
  }

  .container-search-result-item-profile-image {
    background: -webkit-linear-gradient(left top, fuchsia 0%, blue 100%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 2px;
    margin: 0;
  }

  .search-result-item-profile-image {
    background: none;
    width: 66px;
    height: 66px;
    border-radius: 50%;
  }

  .search-result-item-at {
    color: #ddd;
    font-weight: 600;
  }

  .search-result-username {
    color: #00ffff;
    font-family: 'Fredoka';
    font-weight: 500;
    font-size: 1.0em;
  }
  .search-result-item-body {
    color: #eeeeee;
    font-family: 'Fredoka';
    font-weight: 400;
    font-size: 0.7em;
  }

  .search-result-theme {
    color: #ffffff;
    background: #00000033 !important;
    border: 1px solid #00ffff;
    margin: 0.4em 0.4em 0 0;
    font-size: 0.8em;
    font-weight: 400;
  }

  .search-result-theme-more {
    color: #ffffff;
    font-size: 0.5em;
    font-weight: 400;
    font-style: italic;
  }

  .search-term-highlight {
    background-color: #00cccc;
    color: #ffffff;
  }

  .search-no-results {
    color: #eeeeee;
    font-weight: 500;
    font-size: 1.2em;
    font-style: italic;
  }

}

/* DESKTOP */
@media (min-width: 768px) {
  .container-search-term {
    max-width: 800px;
  }

  .input-search-term {
    font-size: 2em !important;
    background: #00000055 !important;
    color: #ffffff !important;
    border: 2px solid #ffffff !important;
    box-shadow: 0 8px 6px -6px black !important;
    border-radius: 20px;
  }

  .input-search-term::placeholder {
    color: #dddddd !important;
    font-style: italic !important;
  }
  .input-search-term:focus::placeholder {
    color: #aaaaaa !important;
  }


  .input-search-term:focus {
    background: #00000099 !important;
    border: 2px solid #ffffff !important;
  }

  .container-search-result {
    max-width: 800px;
    background: #00000033 !important;
    border: 1px solid #00ffff !important;
    border-radius: 20px;
    padding: 0.4em 0.1em;
    margin: 0.5em 0;
    transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
  }
  .container-search-result:hover {
    background: #00000044 !important;
    box-shadow: 0 4px 8px rgba(0, 255, 255, 0.4), 0 6px 20px rgba(0, 255, 255, 0.3);
  }

  .container-search-result-item-profile-image {
    background: -webkit-linear-gradient(left top, fuchsia 0%, blue 100%);
    width: 108px;
    height: 108px;
    border-radius: 50%;
    padding: 4px;
  }

  .search-result-item-profile-image {
    background: none;
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }

  .search-result-item-at {
    color: #ddd;
    font-weight: 600;
  }

  .search-result-username {
    color: #00ffff;
    font-family: 'Fredoka';
    font-weight: 500;
    font-size: 2.0em;
  }
  a:hover .search-result-username {
    color: #00cccc;
  }

  .search-result-item-body {
    color: #eeeeee;
    font-family: 'Fredoka';
    font-weight: 400;
    font-size: 1.2em;
  }

  .search-result-theme {
    color: #ffffff;
    background: #00000033 !important;
    border: 1px solid #00ffff;
    margin: 0.4em 0.4em 0 0;
    font-size: 1.2em;
    font-weight: 400;
  }
  a:hover .search-result-theme {
    color: #00cccc;
    background: #00000044 !important;
    border: 1px solid #00cccc;
  }

  .search-result-theme-more {
    color: #ffffff;
    font-size: 0.8em;
    font-weight: 400;
    font-style: italic;
  }

  .search-term-highlight {
    background-color: #00cccc;
    color: #ffffff;
  }

  .search-no-results {
    color: #eeeeee;
    font-weight: 500;
    font-size: 1.2em;
    font-style: italic;
  }

}

.theme-hr {
  border: none;
  height: 1px;
  opacity: 0.5;
  width: 100%;
  background-image: linear-gradient(90deg, blue, fuchsia);
  display: block;
}