/*---------------------------- 

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: 20;
  --L-y: 425;
  --L-w: 300;
  --L-h: 48;

  --R-x: 880;
  --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: #560fb9; background-color: #c1ddff; }
::-moz-selection { color: #560fb9; background-color: #c1ddff; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #d7b1ff url(images/bg.png) repeat-x top center;
  scroll-behavior: smooth;
}

@font-face {
  font-family: "Ethnocentric";
  src: url("Ethnocentric.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

b { color: #ff59d5; }

i { color: #35e7f3; }

u { color: #dcbaff; }

.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='%23ff59d5' 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 
----------------------------*/
main { flex: 1; }

header {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 1200 / 600;
  margin-inline: auto;
  position: relative;
  background: url('images/banner.png') no-repeat top center / contain;
}

.etc {
  background-color: #B766FF;
  text-align: center;
  padding-block: 10px;
  padding-inline: 2em;
  border-radius: 30px;
  margin: 1em auto 2em auto;
  width: 80%;
	}

.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: 1.125em "Ethnocentric", system-ui, sans-serif;
  color: #fff;
  letter-spacing: .06em;
  font-weight: 800;
  text-decoration: none;
  line-height: 1;
  display: grid;
  justify-content: center;
  align-content: center;
  height: 150%;
  padding: 0;
  text-shadow: 3px 3px 0 #7638ca;
  transition: 0.12s ease-in-out;
}

nav a:hover, nav a:focus { 
  transform: translateY(-5px); 
  text-shadow: 0 0 .5em #e692f4;
}

.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: "Ethnocentric", system-ui, sans-serif;
    letter-spacing: .06em;
  }

  .nav-dropdown > summary {
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(180deg,rgba(113, 205, 255) 0%, rgba(183, 102, 255) 100%);
    padding: .75rem 1rem;
    border: 2px solid #fff;
    border-radius: 15px;
    text-shadow: 3px 3px 0 #7638ca;
    box-shadow: 0 4px 0 #560fb9;
    user-select: none;
  }

  .nav-dropdown > summary::-webkit-details-marker { display: none; }

  .nav-dropdown a:is(:link,:visited) {
    font-family: 'Exo 2', sans-serif;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    background: #B766FF;
    display: block;
    padding: .8rem 1rem;
  }
    
  .nav-dropdown a:is(:hover,:focus) { 
    color: #fff; 
    background: #35e7f3; 
  }
}



/*---------------------------- 
 >>>> CONTENT
----------------------------*/
.content {
  font: 1.2em 'Exo 2', sans-serif;
  color: #fff;
  line-height: 1.5;
  width: clamp(320px, 92vw, 1000px);
  margin:  0 auto;
  padding-block: clamp(1.5rem, 3vw, 2.5em) 3em;
  padding-inline: clamp(1.5rem, 3vw, 2.5em);
  background-color: #7638ca;
  background-image: url("data:image/svg+xml,%3Csvg width='84' height='84' viewBox='0 0 84 84' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e692f4' fill-opacity='0.11'%3E%3Cpath d='M84 23c-4.417 0-8-3.584-8-7.998V8h-7.002C64.58 8 61 4.42 61 0H23c0 4.417-3.584 8-7.998 8H8v7.002C8 19.42 4.42 23 0 23v38c4.417 0 8 3.584 8 7.998V76h7.002C19.42 76 23 79.58 23 84h38c0-4.417 3.584-8 7.998-8H76v-7.002C76 64.58 79.58 61 84 61V23zM59.05 83H43V66.95c5.054-.5 9-4.764 9-9.948V52h5.002c5.18 0 9.446-3.947 9.95-9H83v16.05c-5.054.5-9 4.764-9 9.948V74h-5.002c-5.18 0-9.446 3.947-9.95 9zm-34.1 0H41V66.95c-5.053-.502-9-4.768-9-9.948V52h-5.002c-5.184 0-9.447-3.946-9.95-9H1v16.05c5.053.502 9 4.768 9 9.948V74h5.002c5.184 0 9.447 3.946 9.95 9zm0-82H41v16.05c-5.054.5-9 4.764-9 9.948V32h-5.002c-5.18 0-9.446 3.947-9.95 9H1V24.95c5.054-.5 9-4.764 9-9.948V10h5.002c5.18 0 9.446-3.947 9.95-9zm34.1 0H43v16.05c5.053.502 9 4.768 9 9.948V32h5.002c5.184 0 9.447 3.946 9.95 9H83V24.95c-5.053-.502-9-4.768-9-9.948V10h-5.002c-5.184 0-9.447-3.946-9.95-9zM50 50v7.002C50 61.42 46.42 65 42 65c-4.417 0-8-3.584-8-7.998V50h-7.002C22.58 50 19 46.42 19 42c0-4.417 3.584-8 7.998-8H34v-7.002C34 22.58 37.58 19 42 19c4.417 0 8 3.584 8 7.998V34h7.002C61.42 34 65 37.58 65 42c0 4.417-3.584 8-7.998 8H50z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  border: 1px solid #ff00ff;
  border-radius: 30px;
  box-shadow: 8px 8px 0 #e692f4;
  position: relative;
  overflow: visible;
}

.content::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
  width: clamp(420px, 70%, 520px);
  aspect-ratio: 1000 / 200;
  background: url("images/signatures.png") no-repeat right / contain;
}

.content a:not(.aff),
.copyright a {
  color: #35e7f3;
  background-image: linear-gradient(180deg, #35e7f3 30%, #ff59d5 70%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-decoration: none;
  text-shadow: -1px -1px 0 #fff, 0 0 .25em #ff59d5;
  border-bottom: 1px dashed #fff;
  transition: 0.12s ease-in-out;
}

.content a:hover, .copyright a:hover {
  text-shadow: none;
}

.code-a {
  font-family: "Courier New", monospace;
  background-color: #B766FF;
  color: #fff;
  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, #35e7f3 30%, #e692f4 70%);
}

.code-b:hover, .aff:hover {
  border: 3px solid;
  border-image-slice: 1;
  border-width: 5px;
  border-image-source: linear-gradient(225deg, #35e7f3 30%, #e692f4 70%);
}



/*---------------------------- 
 >>>> HEADERS 
----------------------------*/
h1 {
  font-family: "Ethnocentric", system-ui, sans-serif;
  letter-spacing: .075em;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: .25em auto .30em auto;
  color: #35e7f3;
  background-image: linear-gradient(45deg, #35e7f3 30%, #e692f4 70%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-flex;
  gap: clamp(5px, 1.2vw, 12px);
}

h1::before {
    content: "";
    width: clamp(32px, 6vw, 64px);
    aspect-ratio: 1 / 1;
    background: url("images/h1.png") no-repeat center / contain;
    flex: 0 0 auto;
}

h1::after {
    content: "";
    width: clamp(32px, 6vw, 50px);
    aspect-ratio: 1 / 1;
    background: url("images/h-stars.png") no-repeat center / contain;
    flex: 0 0 auto;
}

h2 {
  font-family: "Exo 2", sans-serif;
  letter-spacing: .075em;
  text-transform: uppercase;
  color: #ff59d5;
  display: flex;
  gap: clamp(5px, 1.2vw, 12px);
  margin-block: 1.5em .5em;
  margin-inline: auto;
}

h2::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2em' height='2em' viewBox='0 0 24 24'%3E%3Cpath fill='%2335e7f3' d='M7.195 2.845a.75.75 0 0 0-1.467 0c-.232 1.096-.55 1.835-.99 2.361c-.429.516-1.029.893-1.95 1.166a.75.75 0 0 0 0 1.438c.885.262 1.48.617 1.916 1.125c.444.516.782 1.26 1.024 2.402a.75.75 0 0 0 1.467 0c.242-1.143.58-1.886 1.024-2.402c.436-.508 1.03-.863 1.917-1.125a.75.75 0 0 0 0-1.438c-.886-.262-1.481-.617-1.917-1.125c-.444-.516-.782-1.26-1.024-2.402m8.303 3.251a.75.75 0 0 0-1.458 0c-.554 2.292-1.141 3.674-1.972 4.638c-.82.952-1.947 1.576-3.77 2.192a.75.75 0 0 0 0 1.421c1.904.643 3.046 1.322 3.852 2.292c.819.986 1.362 2.355 1.89 4.537a.75.75 0 0 0 1.458 0c.554-2.291 1.142-3.673 1.972-4.637c.82-.952 1.947-1.576 3.77-2.192a.75.75 0 0 0 0-1.421c-1.907-.644-3.047-1.32-3.852-2.29c-.818-.984-1.36-2.352-1.89-4.54'/%3E%3C/svg%3E");
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
}

h2:first-of-type {
  margin-top: 0;
}

hr {
  --a: 90deg; /* control the angle */
  --s: 25px; /* size of the zig-zag */
  --b: 5px;  /* control the thickness */
  
  background: linear-gradient(90deg, #35e7f3 30%, #ff59d5 70%);
  height: calc(var(--b) + var(--s)/(2*tan(var(--a)/2)));
  --_g:var(--s) repeat-x conic-gradient(from calc(var(--a)/-2) at bottom,
    #0000,#000 1deg calc(var(--a) - 1deg),#0000 var(--a));
  mask: 50% calc(-1*var(--b))/var(--_g) exclude,50%/var(--_g);
  width: 75%;
  margin-block: 1.5em;
}



/*---------------------------- 
 >>>> 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;
}

footer b {
  color: #35e7f3;
}

.copyright {
  position: absolute;
  left: 77%;
  top: 25%;
  transform: translateX(-50%);
  width: 300px;
  max-width: 300px;
  font-family: 'Exo 2', sans-serif;
  font-size: clamp(0.8rem, .1em, 1rem);
  color: #fff;
  background: #B766FF;
  line-height: 1.35;
  border-radius: 15px;
  padding: 10px;
  text-align: justify;
  border: 1px solid #fff;
}

@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 "Exo 2", sans-serif;
	color: #7638ca;
  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/.7);
  box-shadow: 0 0 .25em #35e7f3;
  transition: 0.12s ease-in-out;
}

.quicknavlink a:hover {
  color: #ff59d5;
  box-shadow: 0 0 .25em #ff59d5;
}

.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='%2335e7f3' 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='%2335e7f3' 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='%2335e7f3' 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-container {
  font: .9em 'Exo 2', serif;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="reset"]), textarea, select {
  font: 1em 'Exo 2', sans-serif;
  color: #7625bb;
  letter-spacing: 1px;
  border: 2px solid #7625bb;
  padding: .5em;
  width: 100%;
  box-sizing: border-box;
  background-color: #d7b1ff;
  cursor: url('images/text.cur'), auto !important;
}

#captcha input[type="button"], button {
  cursor: url('images/link.cur'), auto !important;
}



/*---------------------------- 
 >>>> STATS
----------------------------*/
blockquote {
  color: #fff;
  background-color: #d7b1ff;
  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 #ff59d5;
  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;
}

.stats {
  color: #fff;
  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 top / cover no-repeat;
}

@media (max-width: 700px){
.stats {
    background: 
      linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
      url("images/stats.png") center right / cover no-repeat;
  }
}



/*---------------------------- 
 >>>> FANS LIST
----------------------------*/
.member-card {
  border: 1px solid #ff59d5;
  padding:1em;
  border-radius:6px;
  background:#B766FF;
  line-height: 1;
}

.member-card b {
  color: #35e7f3;
  text-shadow: 1px 1px 0 #560fb9;
}



/*---------------------------- 
 >>>> GLOBAL LINK CURSOR
----------------------------*/
a, a * { cursor: url('images/link.cur'), auto !important; }