/*---------------------------- 

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 {
  --paper-top-h: clamp(180px, 26vw, 300px);
  --paper-bottom-h: clamp(80px, 16vw, 135px);
}

::selection      { background-color: #870d0d; color: #fff; }
::-moz-selection { background-color: #870d0d; color: #fff; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  background-image: url("images/bg.jpg");
  background-repeat: repeat;
  background-position: top center;
  background-attachment: fixed;
  background-size: auto;
}

@font-face {
  font-family: 'JS';
  src: url('images/JemberSketch.ttf');
}

@font-face {
  font-family: 'Timegoing';
  src: url('images/Timegoing.ttf');
}


b { 
  font-family: "Chelsea Market", system-ui;
  color: #a061ff;
  text-decoration: none;
}

i { 
  font-family: 'Oswald', sans-serif;
  color: #29cfbe; }

u { color: #e9c581; }

.req { color: red; }



/*---------------------------- 
 >>>> LAYOUT
----------------------------*/
header, main, footer { position: relative; }

main { flex: 1; }

header {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 1200 / 800;
  margin: 0 auto;
  background: url('images/banner.png') no-repeat top center / contain;
  z-index: 10; 
}

.layout {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 1200px;
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
}

.content-panel {
  flex: 1 1 0;
  position: relative;
  min-width: 0;
}

.nav-panel {
  flex: 0 0 clamp(140px, 18vw, 200px);
  max-width: clamp(160px, 20vw, 240px);
  border-right: 1px dashed #fff;
  padding-right: clamp(0.75rem, 2vw, 2rem);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  box-sizing: border-box;
}

@media (max-width: 800px) {
  .layout {
    flex-direction: column;
    align-items: stretch;
  }

  .content-panel {
    width: 100%;
  }

  .nav-panel {
    flex: 0 0 auto;
    max-width: 100%;
    border-right: none;
    border-bottom: 1px dashed #fff;
    padding-right: 0;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    margin-bottom: 1rem;
  }
}

footer {
  --footer-w: 1200;
  --footer-h: 223;
  left: auto; bottom: auto; top: 0; transform: none;
  width: min(100%, 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;
  z-index: 10;
  margin-top: 3em;
}

.copyright {
  font-family: 'Noto Sans', sans-serif;
  font-size: clamp(0.65rem, 0.6rem + 0.1vw, 0.8rem);
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  width: 800px;
  max-width: 800px;
  padding: clamp(4px, 0.4vw + 2px, 10px);
  background: #000;
}

.copyright a {
  left: 50%;
  bottom: 88%;
  transform: translateX(-50%);
  width: 90vw;
  max-width: none;
  font-family: "Oswald", sans-serif;
  font-size: inherit;
  color: #f91362;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: clamp(0.5px, 0.2vw, 1.5px);
  text-decoration: none;
}

.copyright a:hover {
  color: #29cfbe;
}

.copyright b {
  color: #e9c581;
}

@media (max-width: 800px) {
  footer {
  margin-top: 6em;
  }
  
  .copyright {
    left: 0;
    right: 0;
    bottom: 100%;
    transform: none;
    width: 90%;
    padding: clamp(8px, 2.5vw, 14px);
    line-height: 1.3;
    background: #000;
    z-index: 999;
  }

  .copyright a {
    letter-spacing: 1px;
  }
}



/*---------------------------- 
 >>>> NAVIGATION
----------------------------*/
nav {
  font-family: "Timegoing", sans-serif;  
  font-weight: bold;
  line-height: 2.25;
  display: flex;
  flex-direction: column;
  align-items: center;    
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;  
}

nav li {
  position: relative;
}

nav a {
  display: inline-block;
  text-decoration: none;
  color: #29cfbe;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: clamp(1.4rem, 3vw, 3rem);
  transition: all 0.4s ease;
}

nav li:nth-child(odd) a {
  color: #29cfbe;
  transform: rotate(3deg);
}

nav li:nth-child(even) a {
  color: #f91362;
  transform: rotate(-3deg);
}

nav a:hover {
  color: white;
  text-shadow: 
    5px 5px 0px #29cfbe,
   -5px -5px 0px #f91362;
}

nav li:nth-child(odd) a:hover,
nav li:nth-child(even) a:hover {
  color: white;
  transform: rotate(0deg);
  transition: transform .25s ease;
}

nav .sub {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  color: #870d0d;
  font-family: "Oswald", sans-serif;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  pointer-events: none;
  background: #000;
  padding: 0 .25rem;
  width: 100%;
  margin-top: 0.5em;
}

@media (max-width: 800px) {
  nav {
    width: 100%;
    align-items: center;
    padding-bottom: 2em;
  }

  nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
  }

  nav li {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-inline: clamp(0.25rem, 1vw, 0.75rem);
    position: relative;
  }

  nav a {
    font-size: clamp(2rem, 4vw, 2.25rem);
    letter-spacing: 0.12em;
    line-height: 1.1;
  }

  nav .sub {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    display: block;
    font-size: 0.55rem;
    width: auto;
    background: transparent;
    padding: 0;
    pointer-events: none;
    text-align: center;
  }
}



/*---------------------------- 
 >>>> CONTENT
----------------------------*/
.content-container {
  background: url("images/bg2.png");
  position: relative;
}

.content-container::before {
  content: "";
  position: absolute;
  top: 0;
  height: var(--paper-top-h);
  margin-top: calc(-1 * var(--paper-top-h));
  background-image: url('images/paper.png');
  background-repeat: repeat;
  background-position: center;
	width: 100%;
  z-index: 1;
}

.content-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: var(--paper-bottom-h);
  bottom: calc(-1 * var(--paper-bottom-h));
  background-image: url('images/paper2.png');
  background-repeat: repeat;
  background-position: center;
	width: 100%;
  z-index: 1;
}

.content {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1em;
  color: #c3bfbb;
  letter-spacing: .5px;
  line-height: 1.5;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
  text-align: justify;
}

.content-panel a {
  font-family: "Special Elite", system-ui;
  font-weight: bold;
  color: #f91362; 
  padding: 3px;
  text-decoration: none;
}

.content-panel a:hover {
  color: #fff;
  background: #870d0d;
}

.content-panel li {
  list-style: none;
  position: relative;
  padding-left: 2rem;
}

.content-panel li::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0.2em;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 350 350"><path d="M322.6 187.4c-30.5-2.9-64.5 1.9-91.3-16.3-28-22.4-40.1-60.3-41.2-95.2-.6-16 2.2-31.9 2.7-47.8-2.8-12.7-20-7.5-18.1 4.7-6.2 61.9-16.1 138.9-88.8 154.5-9 1.8-36.4-1.9-49.6-3.4-5.2-.6-14 .7-13.7 7.4.2 4.8 5.9 7.8 12.8 8.8s23.5 2.5 36.3 4.3 32.6 10.3 47.9 17.7c30.7 13.2 50.2 51.9 49.5 85.8.8 7.1-4.3 17.9 5.2 20.7 12.9 3.1 11.8-12.4 14.5-20.6 3-10.9 6.1-21.7 9.5-32.4 8.6-34.3 36.5-60.2 70.4-69 22-5.8 45.5-3.2 51.7-4.2 7.9-.9 9.7-12.2 2.2-15zm-141.7 86.2c-8.1-25.5-28.1-53.6-51.6-64.9-8-4.2-16.4-7.6-24.9-10.9 40.6-13.4 63.4-42.2 73.7-81.8 9.6 35.6 32.5 71.9 70.5 80.6-33.6 13.3-58.9 42-67.7 77z" fill="%23E9C581"></path></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.etc {
  background-color: #a061ff;
  width: 80%;
  text-align: center;
  padding: 10px;
  border-radius: 30px;
  margin: 0 auto 2em auto;
  box-shadow: 5px 5px #000;
	}

.etc a {
  font-family: "Special Elite", system-ui;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}

.etc a:hover {
  color: #252525;
  background-color: #a061ff;
}

.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='%23f91362' d='M15.854 12.854L11 8l4.854-4.854a.503.503 0 0 0 0-.707L13.561.146a.5.5 0 0 0-.707 0L8 5L3.146.146a.5.5 0 0 0-.707 0L.146 2.439a.5.5 0 0 0 0 .707L5 8L.146 12.854a.5.5 0 0 0 0 .707l2.293 2.293a.5.5 0 0 0 .707 0L8 11l4.854 4.854a.5.5 0 0 0 .707 0l2.293-2.293a.5.5 0 0 0 0-.707'/%3E%3C/svg%3E");
}

.code-a {
  font-family: "Courier New", monospace;
  background-color: #a061ff;
  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 dashed #494949; }

.code-b:hover, .aff:hover { border: 3px solid #cf0000; }



/*----------------------------
 >>>> HEADERS
----------------------------*/
h1 {
  font-family: "JS", sans-serif;
  font-weight: normal;
  font-size: clamp(3.4rem, 4vw + 1.4rem, 5rem);
  color: #fff;
  letter-spacing: clamp(0.08em, 0.1em + 0.3vw, 0.15em);
  margin: 0 0 .25rem 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.35em;
  margin-inline: auto;
  width: fit-content;
  white-space: normal;
  text-align: center;
  text-shadow:
    -5px -2px 0 #29cfbe,
    -6px -2px 0 #29cfbe,
    5px 0 0 #cf0000,
    6px 0 0 #cf0000,
    0 5px 0 #f91362;
  -webkit-text-stroke: 1px #a061ff;
}

h1::after {
  content: "";
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  background-image: url("images/h1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  position: relative;
}

.fancy {
  position: relative;
  white-space: nowrap;
  display: inline-block;
  z-index: 2;
  margin-bottom: .5em;
}

.fancy::after {
  --deco-height: 0.35em;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--deco-height) * -0.1);
  height: var(--deco-height);
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M-17 30.5C-1 22 72-4 54 13 37.9 28.2-2.5 57.5 16 55.5s72-29 104-40' stroke='%23f91362' stroke-width='10'/%3E%3Cpath d='M-10 38C10 30 80 10 60 24 42 37 -5 58 12 58c17 0 70-25 100-34' stroke='%234e0388' stroke-width='6'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23000' d='M0 0h100v64H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-size: auto 100%;
  background-repeat: round;
  pointer-events: none;
  z-index: 1;
}

h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  margin-inline: auto;
  margin-block: 1.5rem;
  margin-top: 2em;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #e9c581;
  line-height: 1.1;
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2.5rem);
  letter-spacing: clamp(0.04em, 0.03em + 0.05vw, 0.08em);
  width: min(100%, 900px);
}

h2::before {
  content: "";
  display: inline-block;
  width: 1.75em;
  height: 1.75em;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 440 440"><path d="M172.5 414.9c-7.6-6.2 0-16.8.8-24.7 18.7-73.4 24.5-97.4 48.6-167.6-26.1.2-68.7-2.6-83-2.3s-28.7-2.1-21.9-16.4c21.2-47.2 45-91 71.1-135.3 7.8-13.6 14.7-27.8 23-41.1 3.5-5.6 13.6-6.5 17.8 3.2 4.2 9.6-1.3 30.1-1.2 39.8-3.4 25.7-15.6 58.6-19.9 84.1 27.7 2.8 55.5.8 83.5 2.4 11.3.8 29.4-2.4 32.8 7 3.5 9.4-10.3 25.4-16.5 35.2-18.9 26.6-35.3 53.9-52.4 81.8-25.1 40.5-43.9 80.1-65 123.2-2.7 7.2-9.2 16.5-17.7 10.7zm56.2-208.2c18.8-.9 12.1 16.3 7.9 27.3-12 35.2-20.6 61.8-30 97.7 27.8-55.7 61.1-109 97.4-159.3-25.9-.3-68.1-.5-91.1-1s-30.1 1.8-21-27c6.4-25 16.2-60.3 19.9-85.9-26.5 48.5-53.3 92.9-74.8 143.9 33-1.7 60 3.9 91.7 4.3z" fill="%23A061FF"></path></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  position: relative;
}

h2::after {
  content: "";
  flex: 1;
  height: clamp(2px, 0.35vw, 3px);
  background-color: #A061FF;
  opacity: 1;
  margin-left: 0.5em;
  transform: translateY(50%);
  box-shadow:
    -5px -2px 0 #29cfbe,
    -6px -2px 0 #29cfbe,
    5px 0 0 #cf0000,
    6px 0 0 #cf0000,
    0 5px 0 #f91362;
}

h2:first-of-type {
  margin-top: 0;
}


hr {
  width: 100%;
  border: none;
  margin-block: clamp(1.5rem, 4vw, 2rem);

  height: clamp(48px, 12vw, 104px);
  background-image: url("images/hr.png");
  background-repeat: repeat-x;
  background-size: contain;
  background-position: center;
}

summary::marker,
summary::-webkit-details-marker {
  content: "";
}

/*---------------------------- 
 >>>> QUICK NAVIGATION
----------------------------*/
.quicknav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 1vw, 1.5rem);
  margin: clamp(2rem, 4vw, 3em) 0 0 0;
  padding-inline: 1rem;
}

.quicknavlink a:is(:link, :visited, :active) {
  text-decoration: none;
  letter-spacing: clamp(0.03em, 0.02em + 0.4vw, 0.06em);
  padding: clamp(6px, 1vw + 4px, 12px);
  width: clamp(90px, 22vw, 140px);
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: clamp(10px, 3vw, 18px);
  color: #cf0000;
  text-transform: uppercase;
  background-color: #c3bfbb;
  gap: clamp(0.25em, 0.4vw, 0.4em);
  font-size: clamp(0.75rem, 0.6rem + 0.6vw, 1rem);
  transition: all 0.4s ease;
}

.quicknavlink a:hover {
  color: #fff;
  background-color: #f91362;
  transform: rotate(3deg);
}

.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='%23252525' 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='%23252525' 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='%23252525' 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-family: "Special Elite", system-ui;
  color: #e9c581;
}

input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="reset"]), textarea, select {
  font-family: 'Noto Sans', sans-serif;
  color: #fff;
  letter-spacing: 1px;
  border: 2px solid #494949;
  padding: 1em;
  width: 100%;
  box-sizing: border-box;
  border-radius: 10px;
  background-color: #252525;
  cursor: url('images/text.cur'), auto !important;
}

button, #captcha input[type="button"] {
  cursor: url('images/link.cur'), auto !important;
}



/*---------------------------- 
 >>>> STATS
----------------------------*/
blockquote {
  font-family: "Special Elite", system-ui;
  color: #fff;
  width: 80%;
  margin: 1.25rem auto;
  font-size: .85rem;
  line-height: 1.45;
  text-shadow: none;
  position: relative;
  overflow: visible;
  padding: 2.5rem 2.5rem 2rem;
  background-image: url("images/blockquote.png");
  background-repeat: repeat;
  filter: url(#filter_tornpaper);
}

blockquote::before {
  content: open-quote;
}

blockquote::after {
  content: close-quote;
}

blockquote::before,
blockquote::after {
  position: absolute;
  font-size: 5rem;
  color: #29cfbe;
  line-height: 1;
  font-family: inherit;
  pointer-events: none;
}

blockquote::before {
  top: 1rem;
  left: 0;
}

blockquote::after {
  bottom: -.1rem;
  right: 0;
}

cite {
  font-family: "Oswald", sans-serif;
  color: #e9c581;
  font-weight: 700;
  font-style: italic;
  text-shadow: 2px 2px 0 #870d0d;
  width: fit-content;
  margin-left: auto;
  margin-top: 1rem;
  line-height: 1.5;
  position: relative;
  padding-left: 2.25rem; 
  display: block;
}

cite::before {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 350 350"><path d="M327.7 116.4c-1.4-4.5-6.3-6.5-10.7-6.1-2.5.3-3.8.6-11 1.1-21.5 1.2-41.4-.9-88.4 1.1-13.9-40.1-22.7-82.1-33.2-89.3-6.5-4.4-14.4-3-18.8 5.7-2.6 5-7.5 16.2-9.7 21.3-8.7 20.1-17.2 44.1-24.1 64.8-78.3-.5-99.5-4.2-106.1.8-3.9 2.9-4.7 6.8-3.1 10.2 1.1 2.4 1.9 2.4 13.3 14.1 29.4 30.4 40.6 44.5 66.9 64.9-11.2 34-25.1 69.8-22.8 63.6-3.4 8.7-6.9 17.3-10.4 25.9-5.1 12.5-8 18.8-10.1 24.9-1.6 4.5 2.5 9.6 8.1 9.6 3.6 0 5.9-2.2 8.9-4.2s5.4-4.2 8-6c17.3-12.1 33.8-25.6 51.1-37.8 14-9.9 28-19.9 41.8-30.1 38.9 21.6 36.8 20.1 54 29.6 37.7 20.7 45.5 27.8 53.7 25.7 3.9-1 7-3.9 7.6-7.9.4-3-.6-6.2-1.8-10.7-12.1-44.7-20.7-61.8-38.1-94.8 14.8-11.9 58.3-47.8 69.8-62.8 2.9-3.8 6.7-8.4 5.1-13.6zm-43.5 28c-9.1 8.2-31.7 30.2-48.7 41.6-3 2-4 4.6-2 9 10 21.6 20.1 27 38.3 89.7-53.3-30.5-41-22.5-75.3-41.8-7-3.9-18-12.9-24-9.9-5.3 2.7-41.3 31.1-56.6 41.8l-28.2 19.7c7.9-19.1 13-32 24-62.6 1.7-4.8 10.8-26.9 9.8-31.9-.5-2.5-1.3-5-9-10-21.5-14-37-33.2-63.6-60.6 19 .2 37.6 1.6 85.6 1.6 6 0 11 0 13-2 4.9-4.9 3.8-18.8 16.4-51.9 4.1-10.4 7.4-18.7 13.6-32.4 4.1 10.3 13.6 42.1 16.9 52.7 1.7 5.4 6.1 27.6 8.1 29.6s4.8 2.5 10 2 32.7-1.2 43.7-1.3c14.5-.1 33.7.5 45.7 0-5.7 5.7-11.7 11.3-17.7 16.7z" fill="%23E9C581"></path></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 1rem;
}


cite a {
  font-family: "Oswald", sans-serif;
  color: #e9c581;
}

.stats-wrap {
  position: relative;
  width: 80%; 
  margin: 1.25rem auto;
}

.stats {
  font-family: "Special Elite", system-ui;
  color: #fff;
  font-size: clamp(0.9rem, 1vw + 0.2rem, 1rem);
  line-height: 1.45;
  text-shadow: none;
  padding: 1.5em;
  background-image: url("images/bg.jpg");
  background-repeat: repeat;
  filter: url(#filter_tornpaper);
  position: relative;
  overflow: visible;
  z-index: 1;
}

.stats-art {
  position: absolute;
  top: 50%;
  transform:translateY(-50%);
  right: -10%;
  width: 27%;
  height: auto;
  pointer-events: none;
  z-index: 2;
}


@media (max-width: 600px) {
  .stats-wrap {
    width: 100%;
  }

  .stats {
    padding: clamp(12px, 4vw, 18px);
  }

  .stats-art {
  width: 28%;
  top: 50%;
  transform:translateY(-50%);
    right: -2%;
  }
}



/*---------------------------- 
 >>>> FANS LIST
----------------------------*/
.members-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  align-content: center;
}

.member-card {
  font-family: "Special Elite", system-ui;
  color: #fff;
  width: 80%;
  margin: 1.25rem auto;
  font-size: 1rem;
  line-height: 1.45;
  position: relative;
  overflow: visible;
  padding: 20px;
  position: relative;
  background-image: url("images/blockquote.png");
  background-repeat: repeat;
  filter: url(#filter_tornpaper);
}



/*---------------------------- 
 >>>> GLOBAL LINK CURSOR
----------------------------*/
a, a * {
  cursor: url('images/link.cur'), auto !important;
}