/*---------------------------- 

Nebuluna.com [Dreamlit Cosmos Network] (c) Star.

DO NOT use, copy, redistribute, modify, steal, 
or plagiarize any content from this website --
graphics, written content, code, or otherwise.

----------------------------*/







* { cursor: url('images/default.cur'), auto !important; }

:root{
  --design-w: 1200;
  --design-h: 600;

  --L-x: -120;
  --L-y: 425;
  --L-w: 300;
  --L-h: 48;

  --R-x: 1050;
  --R-y: 425;
  --R-w: 300;
  --R-h: 48;

  --L-left: calc(var(--L-x) / var(--design-w) * 100%);
  --L-top:  calc(var(--L-y) / var(--design-h) * 100%);
  --L-wpct: calc(var(--L-w) / var(--design-w) * 100%);
  --L-hpct: calc(var(--L-h) / var(--design-h) * 100%);

  --R-left: calc(var(--R-x) / var(--design-w) * 100%);
  --R-top:  calc(var(--R-y) / var(--design-h) * 100%);
  --R-wpct: calc(var(--R-w) / var(--design-w) * 100%);
  --R-hpct: calc(var(--R-h) / var(--design-h) * 100%);

  --footer-w: 1200;
  --footer-h: 240;
}

::selection      { color: #9f69cf; background-color: #e2eec2; }
::-moz-selection { color: #9f69cf; background-color: #e2eec2; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}


body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #90dbe2 url(images/bg.png) repeat-x top center;
  scroll-behavior: smooth;
}


b { color: #fff; text-shadow: 2px 2px 0 #9f69cf, -2px -2px 0 #fc09b3, 0 0 1em #9f69cf; }

i { color: #9f69cf; background-color: #e2eec2; padding: 2px; }

u { color: #90dbe2; }

s { color: #fc09b3; }

.req { color: red; }

li {
  list-style-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 16 16'%3E%3Cpath fill='%2390dbe2' d='M7.53 1.282a.5.5 0 0 1 .94 0l.478 1.306a7.5 7.5 0 0 0 4.464 4.464l1.305.478a.5.5 0 0 1 0 .94l-1.305.478a7.5 7.5 0 0 0-4.464 4.464l-.478 1.305a.5.5 0 0 1-.94 0l-.478-1.305a7.5 7.5 0 0 0-4.464-4.464L1.282 8.47a.5.5 0 0 1 0-.94l1.306-.478a7.5 7.5 0 0 0 4.464-4.464Z'/%3E%3C/svg%3E");
}



/*---------------------------- 
 >>>> LAYOUT 
----------------------------*/
header {
  width: min(100%, 1200px);
  aspect-ratio: 1200 / 600;
  margin-inline: auto;
  position: relative;
  background: url("images/banner.png") no-repeat top center;
  background-size: cover;
}

.etc {
  background-color: #9f69cf;
  width: 80%;
  text-align: center;
  padding: 10px;
  border-radius: 30px;
  margin: 1em auto 2em auto;
	}

.etc a {
  margin-inline: 10px;
}

.divicon {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M7.53 1.282a.5.5 0 0 1 .94 0l.478 1.306a7.5 7.5 0 0 0 4.464 4.464l1.305.478a.5.5 0 0 1 0 .94l-1.305.478a7.5 7.5 0 0 0-4.464 4.464l-.478 1.305a.5.5 0 0 1-.94 0l-.478-1.305a7.5 7.5 0 0 0-4.464-4.464L1.282 8.47a.5.5 0 0 1 0-.94l1.306-.478a7.5 7.5 0 0 0 4.464-4.464Z' stroke-width='0.5' stroke='%23fff'/%3E%3C/svg%3E");
}



/*---------------------------- 
 >>>> NAVIGATION
----------------------------*/
nav {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  position: absolute;
  align-items: center;
  white-space: nowrap;
  gap: 1em;
}

.nav-left {
  left: var(--L-left);
  top: var(--L-top);
  width: var(--L-wpct);
  height: var(--L-hpct);
}

.nav-right {
  left: var(--R-left);
  top: var(--R-top);
  width: var(--R-wpct);
  height: var(--R-hpct);
}

nav a:link,
nav a:visited,
nav a:active {
  font-family: "Bungee Inline", sans-serif;
  font-weight: 800;
  color: #fff;
  letter-spacing: .06em;
  text-decoration: none;
  line-height: 1;
  display: grid;
  justify-content: center;
  align-content: center;
  height: 150%;
  padding: 0;
  text-shadow: 3px 3px 0 #9f69cf;
  transition: 0.12s ease-in-out;
  font-size: clamp(1rem, 1rem + 0.8vw, 1.5em);
}

nav a:hover, nav a:focus { 
  transform: translateY(-5px); 
  text-shadow: -3px -3px 0 #90dbe2;
}

.nav-dropdown { display: none; }

@media (max-width: 1200px) {
  body { background-repeat: no-repeat; }}

@media (max-width: 1000px) {
  nav { display: none; }

  .nav-dropdown {
    display: block;
    position: static;
    width: min(1000px, 80%);
    margin: clamp(.5rem, 2vw, 1rem) auto;
    font-family: "Bungee Inline", sans-serif;
    letter-spacing: .06em;
    padding-bottom: 1em;
  }

  .nav-dropdown > summary {
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(135deg,#f281b1 0%, #fc09b3 100%);
    padding: .75rem 1rem;
    text-shadow: 3px 3px 0 #9f69cf;
    box-shadow: 0 4px 0 #9f69cf;
    user-select: none;
  }

  .nav-dropdown > summary::-webkit-details-marker { display: none; }

  .nav-dropdown a:is(:link,:visited) {
    font-family: 'Dosis', sans-serif;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    background: #9f69cf;
    display: block;
    padding: .8rem 1rem;
  }
    
  .nav-dropdown a:is(:hover,:focus) { 
    color: #9f69cf; 
    background: #e2eec2; 
  }
}



/*---------------------------- 
 >>>> CONTENT
----------------------------*/
.content {
  font: 1.2em 'Quicksand', sans-serif;
  color: #fff;
  line-height: 1.5;
  width: clamp(320px, 92vw, 1000px);
  margin:  0 auto;
  margin-top: 1em;
  padding-block: clamp(1.5rem, 3vw, 2.5em) 3em;
  padding-inline: clamp(1.5rem, 3vw, 2.5em);
  background-color: #f281b1;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fc09b3' fill-opacity='0.15'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  border: 1px solid #fff;
  border-radius: 30px;
  text-shadow: 1px 1px #9f69cf;
  box-shadow: 8px 8px 0 #9f69cf;
  position: relative;
  overflow: visible;
}

.content::after {
  content: "";
  position: absolute;
  right: .5em;
  bottom: 0;
  transform: translateY(40%);
  width: clamp(320px, 90%, 519px);
  aspect-ratio: 700 / 200;
  background: url("images/signatures.png") no-repeat right / contain;
}

.content a { 
  color: #fff;
  font-weight: bold;
  background: linear-gradient(0deg, #e2eec2 , #90dbe2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-decoration-style: wavy;
  text-decoration-color: #e2eec2;
  text-shadow: -1px -1px 0 #e2eec2;
  transition: 0.12s ease-in-out;
}

.content a:hover {
  text-shadow: none;
  text-decoration-color: #fc09b3;
}

.code-a {
  font-family: "Courier New", monospace;
  background-color: #9f69cf;
  color: #e2eec2;
  text-align: center;
  line-height: 1.2;
  padding-block: clamp(8px, 1.2vw, 12px);
  padding-inline: clamp(14px, 6vw, 48px);
  border-radius: clamp(12px, 6vw, 30px);
  max-width: min(92vw, 800px); 
  margin: 1em auto 2em;
  width: fit-content;
  overflow-wrap: anywhere;
}

.code-b, .aff {
  border: 3px solid;
  border-image-slice: 1;
  border-width: 5px;
  border-image-source: linear-gradient(45deg, #e2eec2 , #90dbe2 100%);
}

.code-b:hover, .aff:hover {
  border: 3px solid;
  border-image-slice: 1;
  border-width: 5px;
  border-image-source: linear-gradient(135deg,#f281b1 0%, #fc09b3 100%);
}



/*---------------------------- 
 >>>> HEADERS 
----------------------------*/
h1 {
  font-family: "Bungee Inline", sans-serif;
  letter-spacing: .075em;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: .25em auto .30em auto;
  color: #fff;
  display: inline-flex;
  gap: clamp(5px, 1.2vw, 12px);
  text-shadow: 5px 5px 0 #90dbe2;
}

h1::before {
    content: "";
    width: clamp(32px, 6vw, 64px);
    aspect-ratio: 1 / 1;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 64 64'%3E%3Cpath fill='%2375ecd9' d='M22 0c0 16.9-9.1 32-22 32c12.9 0 22 15.1 22 32c0-16.9 9.1-32 22-32c-12.9 0-22-15.1-22-32' stroke-width='2' stroke='%23fff'/%3E%3Cpath fill='%23e2eec2' d='M53 0c0 8.4-4.6 16-11 16c6.4 0 11 7.6 11 16c0-8.4 4.6-16 11-16c-6.4 0-11-7.6-11-16' stroke-width='2' stroke='%23fff'/%3E%3Cpath fill='%23fc09b3' d='M48 32c0 8.4-4.6 16-11 16c6.4 0 11 7.6 11 16c0-8.4 4.6-16 11-16c-6.4 0-11-7.6-11-16' stroke-width='2' stroke='%23fff'/%3E%3C/svg%3E") no-repeat center / contain;
    flex: 0 0 auto;
}

h1::after {
    content: "";
    width: clamp(22px, 6vw, 50px);
    aspect-ratio: 1 / 1;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='M7.2 14.8a2 2 0 0 1 2 2'/%3E%3Ccircle cx='18.5' cy='8.5' r='3.5'/%3E%3Ccircle cx='7.5' cy='16.5' r='5.5'/%3E%3Ccircle cx='7.5' cy='4.5' r='2.5'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
    flex: 0 0 auto;
}

h2 {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(1rem, 1rem + 0.6vw, 1.35em);
  letter-spacing: .075em;
  text-transform: uppercase;
  color: #fc09b3;
  display: flex;
  gap: clamp(5px, 1.2vw, 12px);
  background: linear-gradient(45deg, #e2eec2 , #90dbe2 100%);
  text-shadow: 2px 2px 0 #fff;
  border-radius: 15px;
  margin-block: 1.5em .5em;
  margin-inline: auto;
}

h2::before {
    content: "";
    width: clamp(22px, 6vw, 44px);
    aspect-ratio: 1 / 1;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='.75em' height='1em' viewBox='0 0 512 512'%3E%3Cpath fill='%23fc09b3' d='M123.885 20.447c-10.348.467-21.337 3.146-32.194 5.366l62.492 65.628l-21.645.188c-29.376.187-75.695 6.154-103.555 22.303l31.756 51.576l-40.625 21.098v56.577l46.54 26.32l-46.54 40.076v32.268c28.217-1.233 60.63.636 89.135-8.907l31.902-10.658l-21.828 25.586c-18.76 22-29.782 55.133-50.736 87.713c31.91-2.394 63.352-7.65 96.8-25.81l16.026-8.683l-9.746 77.124c26.333-12.19 52.103-28.923 71.178-49.055c22.683-23.94 35.713-50.49 33.36-72.71l-.074-.75c-18.488-12.687-32.26-31.173-39.236-54.18c-8.414-27.753-5.867-62.33 6.643-101.145c-26.406-4.04-46.536-14.637-57.307-30.11c-12.33-17.716-14.222-39.26-7.738-57.018s22.29-32.165 43.437-33.4c20.558-1.195 44.48 10.033 69.972 36.102c11.368 4.11 21.73 8.034 31.14 11.94c2.434-21.395-1.46-38.033-10.408-52.9c-8.41-13.975-23.217-26.43-41.1-38.582l4.27 42.888l-16.425-10.985C222.37 43.57 168.973 18.49 123.885 20.597l.002-.225zm100.387 77.997c-.436.008-.866 0-1.29 0h-.002c-13.54.785-22.545 9.105-26.937 21.135c-4.393 12.03-3.243 27.353 5.51 39.93c8.755 12.576 25.128 23.158 53.548 24.784l12.595.69l-4.344 11.827c-14.837 40.46-16.242 73.928-8.577 99.212c7.66 25.267 24.04 42.795 47.305 52.56h.037l108.59 38.474c5.65-11.9 11.672-23.813 17.988-35.71a40.6 40.6 0 0 1-16.32 3.41c-22.52 0-40.78-18.262-40.78-40.782c0-22.518 18.26-40.78 40.78-40.78c20.66 0 37.697 15.373 40.373 35.3c10.666-18.062 21.885-36 33.48-53.683l-103.224-52.377l-4.746-5.732c-3.93-13.556-11.515-23.32-26.39-33.324c-14.876-10.002-37.034-19.57-67.784-30.623l-2.08-.767l-1.53-1.607c-23.283-24.532-42.7-32.278-56.202-32.024zm119.04 89.93c8.272 0 14.657 6.387 14.657 14.657c0 8.274-6.387 14.688-14.658 14.688c-8.27 0-14.687-6.414-14.687-14.687c0-8.27 6.416-14.655 14.687-14.655z'/%3E%3C/svg%3E") no-repeat center / contain;
    flex: 0 0 auto;
    padding-left: 1em;
}

h2:first-of-type {
  margin-top: 0;
}

hr {
  --s: 15px; /* size of the wave */
  --b: 5px; /* thickness of the line */
  --m: 0.9; /* curvature of the wave [0 2] */
  
  background: linear-gradient(135deg,#9f69cf 0%, #fc09b3 100%);
  --R: calc(var(--s)*sqrt(var(--m)*var(--m) + 1) + var(--b)/2);
  height: calc(2*var(--R));
  width: 75%;
  --_g: #0000 calc(99% - var(--b)), #000 calc(101% - var(--b)) 99%, #0000 101%;
  mask:
    radial-gradient(var(--R) at left 50% bottom calc(-1*var(--m)*var(--s)), var(--_g)) 
     calc(50% - 2*var(--s)) calc(50% - var(--s)/2 - var(--b)/2)/calc(4*var(--s)) calc(var(--s) + var(--b)) repeat-x,
    radial-gradient(var(--R) at left 50% top calc(-1*var(--m)*var(--s)),var(--_g)) 
     50% calc(50% + var(--s)/2 + var(--b)/2)/calc(4*var(--s)) calc(var(--s) + var(--b)) repeat-x;
}



/*---------------------------- 
 >>>> FOOTER
----------------------------*/
footer {
  left: auto; bottom: auto; top: 0; transform: none;
  width: min(100vw, var(--footer-w)*1px);
  aspect-ratio: var(--footer-w) / var(--footer-h);
  background: center / contain no-repeat url("images/footer.png");
  position: relative;
  margin: 0 auto;
  margin-top: auto;
}

footer b {
  color: #fff;
}

.copyright {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(0.8rem, .1em, 1rem);
  color: #fff;
  text-align: justify;
  line-height: 1.35;
  position: absolute;
  left: 77%;
  top: 25%;
  transform: translateX(-50%);
  width: 300px;
  max-width: 300px;
  padding: 10px;
  background: #9f69cf;
  border-radius: 15px;
  border: 1px solid #fff;
  box-shadow: 5px 5px 0 #f281b1;
}

.copyright a { 
  color: #fff;
  background: linear-gradient(0deg, #e2eec2 , #90dbe2 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration-color: #fc09b3;
  font-weight: bold;
  display: inline-block;
  text-decoration-style: wavy;
  transition: 0.12s ease-in-out;
}

.copyright a:hover {
  text-shadow: none;
  text-decoration-color: #e2eec2;
}

@media (max-width: 1000px){
  footer{
    width: 90vw;
    aspect-ratio: var(--footer-w) / var(--footer-h);
    background-position: center bottom;
    background-size: contain;
    padding-top: clamp(160px, 18vw, 240px);
  }

  .copyright{
    width: 90vw;
    max-width: none;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 12px;
    padding: 8px 12px;
    box-sizing: border-box;
  }
}



/*---------------------------- 
 >>>> QUICK NAVIGATION
----------------------------*/
.quicknav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 5em 0 0 0;
}

.quicknavlink a:is(:link,:visited,:active) {
  font: 1em "Quicksand", sans-serif;
	color: #fc09b3;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 10px;
  margin: 10px;
  width: 100px;
  line-height: 1;
  display: inline-flex;
  gap: clamp(0.25em, 0.4vw, 0.4em);
  justify-content: center;
  align-content: center;
  border-radius: 10px;
  background-color: rgb(255 255 255);
  box-shadow: 3px 3px 0 #fc09b3;
  transition: 0.12s ease-in-out;
}

.quicknavlink a:hover {
  color: #9f69cf;
  box-shadow: -3px -3px 0 #9f69cf;
}

.arrow-left {
  display: inline-flex;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none'%3E%3Cpath d='M24 0v24H0V0zM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.019-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='%2390dbe2' d='M3.283 10.94a1.5 1.5 0 0 0 0 2.12l5.656 5.658a1.5 1.5 0 1 0 2.122-2.122L7.965 13.5H19.5a1.5 1.5 0 0 0 0-3H7.965l3.096-3.096a1.5 1.5 0 1 0-2.122-2.121z'/%3E%3C/g%3E%3C/svg%3E");
}

.arrow-up {
  display: inline-flex;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none'%3E%3Cpath d='M24 0v24H0V0zM12.593 23.258l-.011.002l-.071.035l-.02.004l-.014-.004l-.071-.035q-.016-.005-.024.005l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.017-.018m.265-.113l-.013.002l-.185.093l-.01.01l-.003.011l.018.43l.005.012l.008.007l.201.093q.019.005.029-.008l.004-.014l-.034-.614q-.005-.019-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.004-.011l.017-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='%2390dbe2' d='M13.06 3.283a1.5 1.5 0 0 0-2.12 0L5.281 8.939a1.5 1.5 0 0 0 2.122 2.122L10.5 7.965V19.5a1.5 1.5 0 0 0 3 0V7.965l3.096 3.096a1.5 1.5 0 1 0 2.122-2.122z'/%3E%3C/g%3E%3C/svg%3E");
}

.refresh {
  display: inline-flex;
  width: 1em;
  height: 1em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='none'%3E%3Cpath d='m12.594 23.258l-.012.002l-.071.035l-.02.004l-.014-.004l-.071-.036q-.016-.004-.024.006l-.004.01l-.017.428l.005.02l.01.013l.104.074l.015.004l.012-.004l.104-.074l.012-.016l.004-.017l-.017-.427q-.004-.016-.016-.018m.264-.113l-.014.002l-.184.093l-.01.01l-.003.011l.018.43l.005.012l.008.008l.201.092q.019.005.029-.008l.004-.014l-.034-.614q-.005-.019-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014l-.034.614q.001.018.017.024l.015-.002l.201-.093l.01-.008l.003-.011l.018-.43l-.003-.012l-.01-.01z'/%3E%3Cpath fill='%2390dbe2' d='M20 9.5a1.5 1.5 0 0 1 1.5 1.5a8.5 8.5 0 0 1-8.5 8.5h-2.382a1.5 1.5 0 0 1-2.179 2.06l-2.494-2.494a1.5 1.5 0 0 1-.445-1.052v-.028c.003-.371.142-.71.368-.97l.071-.077l2.5-2.5a1.5 1.5 0 0 1 2.18 2.061H13a5.5 5.5 0 0 0 5.5-5.5A1.5 1.5 0 0 1 20 9.5m-4.44-7.06l2.5 2.5a1.5 1.5 0 0 1 0 2.12l-2.5 2.5a1.5 1.5 0 0 1-2.178-2.06H11A5.5 5.5 0 0 0 5.5 13a1.5 1.5 0 1 1-3 0A8.5 8.5 0 0 1 11 4.5h2.382a1.5 1.5 0 0 1 2.179-2.06Z'/%3E%3C/g%3E%3C/svg%3E");
}



/*---------------------------- 
 >>>> FORMS
----------------------------*/
.form-style {
  font-weight: 700;
  text-shadow: 2px 2px 0 #9f69cf;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="reset"]), textarea, select {
  font: 1em 'Quicksand', sans-serif;
  color: #fc09b3;
  letter-spacing: 1px;
  border: 2px solid #fc09b3;
  padding: .5em;
  width: 100%;
  box-sizing: border-box;
  border-radius: 15px;
  background-color: #fff;
  cursor: url('images/text.cur'), auto !important;
}

button, #captcha input[type="button"] {
  cursor: url('images/link.cur'), auto !important;
}



/*---------------------------- 
 >>>> STATS
----------------------------*/
blockquote {
  color: #fff;
  background-color: #9f69cf;
  width: 80%;
  margin: 1.25rem auto;
  font-size: clamp(.8rem, .74rem + .3vw, 1rem);
  line-height: 1.45;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  padding-left: 3em;
  border-left: 5px solid #90dbe2;
  position: relative;
  overflow: visible;
}

blockquote::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 5em;
  height: 5em;
  left: calc(-2.5em - 2px);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 100 100'%3E%3Cpath fill='%23fff' d='M88.466 16.936a3.36 3.36 0 0 0-3.34-3.036H14.781v.009a3.356 3.356 0 0 0-3.247 3.027H11.5v56.342h.068a3.37 3.37 0 0 0 3.214 2.694v.009h11.564v6.744a3.373 3.373 0 0 0 6.173 1.882l8.627-8.627h43.98a3.37 3.37 0 0 0 3.306-2.703h.068V16.936zM28.399 50.662c-3.055 0-5.787-2.405-5.787-6.632c0-4.878 2.667-9.234 6.699-12.095l.014.012a.7.7 0 0 1 .324-.085a.7.7 0 0 1 .43.156l.008-.007l2.703 1.706l-.016.015c.192.131.325.34.325.59a.72.72 0 0 1-.39.633l.002.002l-.046.028l-.012.007c-2.065 1.124-4.26 3.726-4.839 6.046c.26-.13.78-.195 1.301-.195c2.471 0 4.421 1.885 4.421 4.681c.001 2.797-2.341 5.138-5.137 5.138m13.233 0c-3.055 0-5.787-2.405-5.787-6.632c0-4.878 2.667-9.234 6.699-12.095l.014.012a.7.7 0 0 1 .324-.085a.7.7 0 0 1 .43.156l.008-.007l2.703 1.706l-.016.015c.192.131.325.34.325.59a.72.72 0 0 1-.39.633l.002.002l-.046.028l-.012.007c-2.065 1.124-4.26 3.726-4.839 6.046c.26-.13.78-.195 1.301-.195c2.471 0 4.421 1.885 4.421 4.681s-2.341 5.138-5.137 5.138m15.824 7.187l-.014-.012a.7.7 0 0 1-.324.085a.7.7 0 0 1-.43-.156l-.008.007l-2.703-1.706l.016-.015a.71.71 0 0 1-.325-.59c0-.277.161-.511.39-.633l-.002-.002l.046-.028l.012-.007c2.065-1.124 4.26-3.726 4.839-6.046c-.26.13-.78.195-1.301.195c-2.471 0-4.421-1.885-4.421-4.681s2.342-5.137 5.138-5.137c3.055 0 5.787 2.405 5.787 6.632c-.001 4.877-2.668 9.233-6.7 12.094m13.233 0l-.014-.012a.7.7 0 0 1-.324.085a.7.7 0 0 1-.43-.156l-.008.007l-2.703-1.706l.016-.015a.71.71 0 0 1-.325-.59c0-.277.161-.511.39-.633l-.002-.002l.046-.028l.012-.007c2.065-1.124 4.26-3.726 4.839-6.046c-.26.13-.78.195-1.301.195c-2.471 0-4.421-1.885-4.421-4.681s2.342-5.137 5.138-5.137c3.055 0 5.787 2.405 5.787 6.632c-.001 4.877-2.668 9.233-6.7 12.094' stroke-width='2.5' stroke='%23fff'/%3E%3C/svg%3E") center / contain no-repeat;
}

blockquote p {
  display: inline;
}

cite {
  font-style: normal;
  width: fit-content;
  margin-left: auto;
  margin-top: 1rem;
  line-height: 1.5;
  position: relative;
  display: block;
}

.stats {
  color: #000;
  width: min(60vw, 500px);
  margin: 1.25rem auto;
  font-size: clamp(.8rem, .74rem + .3vw, 1rem);
  line-height: 1.45;
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border: 2px solid #fff;
  border-radius: clamp(12px, 2vw, 15px);
  background: url("images/stats.png") center right / cover no-repeat;
  text-shadow: none;
}

@media (max-width: 700px) {
  .stats {
    color: #fff;
    background: 
      linear-gradient(rgba(60, 13, 100, 0.55), rgba(60, 13, 100, 0.55)),
      url("images/stats.png") center right / cover no-repeat;
  }
}


/*---------------------------- 
 >>>> FANS LIST
----------------------------*/
.member-card {
  color: #fff;
  border-left: 5px solid #90dbe2;
  padding:1em;
  background: #9f69cf;
  line-height: 1;
}

.member-card b {
  text-transform: uppercase;
}



/*---------------------------- 
 >>>> GLOBAL LINK CURSOR
----------------------------*/
a, a * { cursor: url('images/link.cur'), auto !important; }