/*----------------------------

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.gif'), auto !important; }

:root {
  --bg:          #0b1a1e;
  --contentbg:   #14282d;
  --text:        #ece7d8;
  --text-soft:   #9db3af;
  --gold:        #cfa447;
  --gold-bright: #e0bd6f;
  --gold-pale:   #eeda9e;
  --teal:        #3f7c82;
  --teal-pale:   #a9cbcd;
  --lilacpink:   #e4cff3;
  --iceblue:     #9ad8e1;
  --vinegreen:   #7ab673;
}

::selection      { background-color: #5f7a78; text-shadow: none; }
::-moz-selection { background-color: #5f7a78; text-shadow: none; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
  background-image:
    url("images/bg-x2.png"),
    url("images/bg-x.png"),
    url("images/bg.png");
  background-repeat:
    repeat-x,
    repeat-x,
    repeat;
  background-position:
    bottom center,
    top center,
    top left;
  background-size:
    auto min(242px, calc(100vw * 242 / 1120)),
    auto min(600px, 50vw),
    auto;
  background-color: var(--bg);
  background-attachment:
    scroll,
    scroll,
    scroll;
}

b {
  font-family: "Karla", sans-serif;
  text-transform: uppercase;
  color: var(--iceblue);
}

i { color: var(--lilacpink); }

u { color: var(--vinegreen); }



/*----------------------------
 >>>> LAYOUT
----------------------------*/
header, main, footer { position: relative; }

main {
  flex: 1 0 auto;
  width: 100%;
}

header {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 1200 / 600;
  margin: 0 auto 1em;
  background: url('images/banner.png') no-repeat top center / contain;
  position: relative;
  isolation: isolate;
  container-type: inline-size;
}

.banner {
  position: absolute;
  left: 5%;
  top: 75%;
  width: 20%;
  height: 16.5%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-link {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  background: rgba(20, 40, 45, 0.94);
  border: 5px solid rgba(20, 40, 45, 0.7);
  border-radius: 5px;
  transition: border-color 0.4s ease;
}

.banner-link:hover {
  border-color: var(--teal);
}

.banner-btn-mobile { display: none; }

@media (max-width: 800px) {
  .banner-btn-full { display: none; }
  .banner-btn-mobile { display: block; }
}

.layout {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 1120px;
  width: min(calc(100% - 2rem), 1200px);
  margin: 0 auto;
}


/*----------------------------
 >>>> NAVIGATION
----------------------------*/
nav {
  flex: 0 0 clamp(150px, 15vw, 190px);
  min-width: 0;
  transform: translateY(calc(-1 * min(120px, 10vw)));
  position: relative;
  align-self: flex-start;
  margin-top: clamp(1rem, 3vw, 2em);
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  width: clamp(150px, 15vw, 190px);
  position: relative;
  z-index: 1;
  text-align: right;
}

nav li + li { border-top: 1px solid rgba(169, 203, 205, 0.065); }

.nav-sprig {
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  width: auto;
  height: auto;
  z-index: 2;
  pointer-events: none;
  opacity: 0.42;
  filter: drop-shadow(0 4px 9px rgba(0, 0, 0, 0.3));
  transition:
    opacity 0.45s ease,
    filter 0.45s ease;
}

nav:hover .nav-sprig {
  opacity: 0.64;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 7px rgba(207, 164, 71, 0.1));
}

nav a {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 0.18em;
  position: relative;
  padding: 0.8rem 1rem 0.75rem;
  background: transparent;
  text-decoration: none;
  transition:
    background 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

nav a::before {
  content: "";
  position: absolute;
  right: 0;
  left: auto;
  top: 50%;
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, var(--lilacpink), var(--gold-bright));
  transform: translateY(-50%);
  transition:
    height 0.45s ease,
    opacity 0.45s ease;
}

nav .nav-label {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: var(--text);
  opacity: 0.8;
  text-shadow: 0 0 0 transparent;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    text-shadow 0.4s ease;
}

nav .nav-num {
  font-family: "Karla", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #78918d;
  transition:
    color 0.35s ease,
    letter-spacing 0.35s ease;
}

nav a:hover {
  background: linear-gradient(to left, rgba(207, 164, 71, 0.15), rgba(146, 133, 208, 0.035) 55%, transparent);
  transform: translateX(-3px);
  box-shadow: inset -1px 0 0 rgba(224, 189, 111, 0.12);
}

nav a:hover::before { height: 100%; }

nav a:hover .nav-label {
  transform: translateX(-3px);
  opacity: 1;
  text-shadow: 0 0 9px rgba(207, 164, 71, 0.45);
}

nav a:hover .nav-num {
  color: var(--gold);
  letter-spacing: 0.17em;
}

nav a:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.nav-heading {
  display: block;
  position: relative;
  z-index: 3;
  width: clamp(168px, 16vw, 205px);
  box-sizing: border-box;
  margin: 0 0 0 calc(clamp(150px, 15vw, 190px) - clamp(168px, 16vw, 205px));
  padding: 0.65rem 2rem;
  font-family: "Karla", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: var(--teal-pale);
  text-shadow: 1px 2px 0 var(--bg), 0 0 8px rgba(169, 203, 205, 0.12);
  background: linear-gradient(90deg, transparent 0%, rgba(11, 26, 30, 0.8) 13%, rgba(20, 40, 45, 0.96) 50%, rgba(11, 26, 30, 0.8) 87%, transparent 100%);
  border-top: 1px solid rgba(224, 189, 111, 0.34);
  border-bottom: 1px solid rgba(169, 203, 205, 0.16);
  transition: color 0.35s ease;
}

.nav-heading::before,
.nav-heading::after {
  content: "\25BD";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 0.65rem;
  text-shadow: 0 0 7px rgba(207, 164, 71, 0.45);
  transition: transform 0.35s ease;
}

.nav-heading::before { left: 0.55rem; }

.nav-heading::after { right: 0.55rem; }

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.nav-toggle:focus-visible ~ .nav-heading {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.nav-menu { display: contents; }

@media (max-width: 800px) {
  .layout {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-inline: 0;
    padding-inline: 0;
  }

  nav {
    order: -1;
    position: static;
    flex: 1 1 100%;
    width: 100%;
    transform: none;
    margin-top: 2.5rem;
    margin-bottom: 0;
  }

  .nav-heading {
    width: 70%;
    margin: 0 auto;
    cursor: pointer;
  }

  .nav-heading:hover {
    color: var(--gold-pale);
  }

  .nav-toggle:checked ~ .nav-heading::before,
  .nav-toggle:checked ~ .nav-heading::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .nav-menu {
    display: grid;
    grid-template-rows: 0fr;
    width: min(calc(100% - 1.25rem), 720px);
    margin-inline: auto;
    transition: grid-template-rows 0.4s ease;
  }

  .nav-toggle:checked ~ .nav-menu {
    grid-template-rows: 1fr;
  }

  nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3em;
    width: 100%;
    padding: 0.45rem;
    overflow: hidden;
    min-height: 0;
  }

  nav li + li { border-top: 0; }

  nav a {
    flex-direction: row;
    align-items: center;
    text-align: center;
    gap: 0.5em;
    padding: 0.5em 0.8em;
  }

  nav a:hover, nav a:hover .nav-label { transform: translateX(0); }

  .nav-sprig { display: none; }
}


/*----------------------------
 >>>> FOOTER
----------------------------*/
footer {
  --footer-w: 1120;
  --footer-h: 242;
  width: min(100%, calc(var(--footer-w) * 1px));
  aspect-ratio: var(--footer-w) / var(--footer-h);
  position: relative;
  isolation: isolate;
  overflow: visible;
  z-index: 10;
  margin: 0 auto;
  background: center bottom / contain no-repeat url("images/footer.png");
  display: flex;
  align-items: flex-start;
  justify-content: center;
  container-type: inline-size;
}

.copyright {
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  z-index: 3;
  width: min(86%, 780px);
  box-sizing: border-box;
  margin: 0;
  padding: 0.65rem clamp(1.5rem, 4cqw, 3.5rem);
  font-family: "Karla", sans-serif;
  font-size: clamp(0.58rem, 0.52rem + 0.18cqw, 0.7rem);
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  text-align: center;
  text-shadow: 1px 2px 0 var(--bg);
  background: linear-gradient(90deg, transparent 0%, rgba(11, 26, 30, 0.86) 16%, rgba(20, 40, 45, 0.93) 50%, rgba(11, 26, 30, 0.86) 84%, transparent 100%);
  border-top: 1px solid rgba(224, 189, 111, 0.32);
  border-bottom: 1px solid rgba(169, 203, 205, 0.16);
}

.copyright::before,
.copyright::after {
  content: "\25BD";
  position: absolute;
  top: 50%;
  transform: translateY(-52%);
  color: var(--gold);
  font-size: 0.68rem;
  text-shadow: 0 0 8px rgba(207, 164, 71, 0.45);
}

.copyright::before { left: clamp(0.45rem, 2cqw, 1.25rem); }

.copyright::after { right: clamp(0.45rem, 2cqw, 1.25rem); }

.copyright a {
  color: var(--gold-bright);
  text-decoration: none;
  text-underline-offset: 3px;
  transition:
    color 0.35s ease,
    text-shadow 0.35s ease,
    text-decoration 0.35s ease;
}

.copyright a:hover {
  color: var(--lilacpink);
  text-decoration: underline;
  text-decoration-color: var(--gold-pale);
  text-shadow: 0 0 8px var(--bg);
}


/*----------------------------
 >>>> CONTENT
----------------------------*/
.content {
  font-family: "Spectral", serif;
  font-size: clamp(1rem, 1.1rem, 1.2rem);
  color: var(--text);
  line-height: 1.5;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
  text-align: justify;
}

.content-panel {
  flex: 1 1 0;
  position: relative;
  z-index: 0;
  min-width: 0;
  box-sizing: border-box;
  isolation: isolate;
  padding-inline: clamp(1.5rem, 4vw, 3.25rem);
  padding-block: clamp(2rem, 4vw, 3.5rem);
  background: linear-gradient(to bottom, transparent, rgba(20, 40, 45, 0) 0%, rgba(20, 40, 45, 0.7) 25%, rgba(20, 40, 45, 0.86) 50%, rgba(20, 40, 45, 0.72) 75%, rgba(20, 40, 45, 0) 100%, transparent);
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  border-image: linear-gradient(to bottom, transparent 0%, rgba(224, 189, 111, 0.2) 18%, rgba(169, 203, 205, 0.14) 76%, transparent 100%) 1;
  container-type: inline-size;
}

.content-panel > * {
  position: relative;
  z-index: 1;
}

.content-panel > :first-child { margin-top: 0; }

.content-panel > :last-child { margin-bottom: 0; }

@media (max-width: 800px) {
  .content-panel {
    width: 90%;
    margin-inline: auto;
    padding-inline: clamp(1.15rem, 5vw, 2rem);
  }
}

.content-panel a {
  position: relative;
  display: inline-block;
  width: fit-content;
  padding: 0;
  background: none;
  border-radius: 0;
  color: var(--gold-pale);
  font-family: "Karla", serif;
  font-size: .9em;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  text-decoration: none;
  text-shadow: 1px 1px 0 rgba(11, 26, 30, 0.72);
  -webkit-text-stroke: 0;
  transition:
    color 0.35s ease,
    font-style 0.35s ease,
    text-shadow 0.35s ease;
}

.content-panel a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.05em;
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, var(--lilacpink), var(--teal-pale));
  transition: width 0.4s ease;
}

.content-panel a:hover {
  background: none;
  color: var(--teal);
  text-shadow: 2px 2px 10px var(--bg);
}

.content-panel a:hover::after {
  width: 100%;
  background: linear-gradient(to right, var(--gold-bright), var(--vinegreen));
}

.content-panel li {
  list-style: none;
  position: relative;
  padding-left: 2rem;
}

.content-panel li::before {
  left: 0;
  top: 0.2em;
  content: "\25BD";
  position: absolute;
  color: var(--gold);
  font-size: 0.85rem;
  text-shadow: 0 0 8px rgba(207, 164, 71, 0.45);
}

.etc {
  background: rgba(28, 58, 65, 0.65);
  border: 1px solid rgba(169, 203, 205, 0.13);
  width: 80%;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  margin: 2em auto;
	}

.content-panel .etc a {
  color: var(--vinegreen);
}

.content-panel .etc a::after {
  background: none;
	}

.content-panel .etc a:hover {
  color: var(--teal-pale);
}

.content-panel .etc a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.05em;
  width: 100%;
  height: 1px;
  background: linear-gradient(to left, var(--lilacpink), var(--teal-pale));
  transition: width 0.4s ease;
}

.divicon {
  display: inline-block;
  vertical-align: middle;
  height: 1.5em;
  width: auto;
  aspect-ratio: 57 / 69;
  background: url("images/divicon.png") no-repeat center / contain;
  margin-inline: 5px;
}

.code-a {
  font-family: "Courier New", monospace;
  background: url('images/bg-x2.png') repeat-x bottom;
  color: var(--gold-bright);
  text-align: center;
  line-height: 1.2;
  padding-block: clamp(8px, 1.2vw, 12px);
  padding-inline: clamp(14px, 6vw, 48px);
  border-radius: 15px;
  max-width: min(92vw, 800px);
  margin: 1em auto 2em;
  width: fit-content;
  text-shadow: none;
  overflow-wrap: anywhere;
}

.code-b, .aff { 
  border: 3px solid var(--teal);
  transition: 0.3s ease; 
}

.code-b:hover, .aff:hover { border: 3px solid var(--gold-bright); }


/*----------------------------
 >>>> HEADERS
----------------------------*/
h1 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(1.75rem, 1.25rem + 2vw, 2.5rem);
  line-height: 1;
  color: var(--gold-bright);
  text-shadow: 1px 1px 0 var(--bg);
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  width: min(466px, 100%);
  margin-inline: auto;
  aspect-ratio: 466 / 121;
  box-sizing: border-box;
  padding-left: clamp(0.35rem, 1.4vw, 0.85rem);
  background: none;
  margin-top: 4rem;
  margin-bottom: 2rem;
}

h1::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("images/h1b.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  transform: translate(20px, 30px);
  pointer-events: none;
  opacity: 0.7;
}

h1 span {
  font-family: "MonteCarlo", cursive;
  font-size: clamp(3.75rem, 3rem + 3vw, 5rem);
  font-weight: 400;
  color: var(--gold);
}

h1:first-of-type { margin-top: 0; }

@media (max-width: 620px) {
  h1 {
    min-height: 121px;
    aspect-ratio: auto;
  }

  h1::before {
    background-size: 90% 90%;
    transform: translate(12px, 8px);
  }
}

h2 {
  font-family: "Fraunces", sans-serif;
  font-weight: 500;
  color: #ded2f1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.2;
  margin-inline: 3rem;
  margin-top: 3rem;
  gap: 0.3em;
}

h2::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin-right: clamp(0.25rem, 1vw, 0.4em);
  width: 75px;
  height: 50px;
  background-image: url("images/h1a.png");
  flex-shrink: 0;
}

h2::after {
  content: "";
  --s: 10px;
  --b: 2px;
  --m: 1.6;
  background: linear-gradient(to right, var(--iceblue), var(--lilacpink));
  --R: calc(var(--s)*sqrt(var(--m)*var(--m) + 1) + var(--b)/2);
  height: calc(2*var(--R));
  width: 100%;
  --_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;
  opacity: 1;
  flex: 1 1 140px;
  max-width: 420px;
  min-width: 120px;
}

h2:first-of-type { margin-top: 0; }

h3.fl-newsfeed-title {
  font-family: "Fraunces", sans-serif;
  font-weight: 500;
  font-style: italic;
  color: var(--vinegreen);
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.fl-newsfeed-item {
  position: relative;
  padding-left: 2rem;
}

.fl-newsfeed-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--teal);
}

.fl-newsfeed-item::after {
  content: "\25BD";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  line-height: 2;
  color: var(--gold);
  background: var(--contentbg);
}

.fl-newsfeed-date {
  font-family: "Karla", sans-serif;
}

hr {
  --line-thickness: 2px;
  --triangle-space: 1.5rem;
  border: 0;
  width: min(100%, 534px);
  height: 2rem;
  margin: 2em auto;
  position: relative;
  overflow: visible;
  background:
    linear-gradient(to right, transparent, #255358, #a9cbcd, #e0bd6f) left center / calc(50% - var(--triangle-space)) var(--line-thickness) no-repeat,
    linear-gradient(to left, transparent, #255358, #a9cbcd, #e0bd6f)
    right center / calc(50% - var(--triangle-space)) var(--line-thickness) no-repeat;
}

hr::after {
  content: "\25BD";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -52%);
  font-family: "Spectral", serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  background-image: linear-gradient( to bottom, #e0bd6f, #a9cbcd);

  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}


/*----------------------------
 >>>> QUICK NAVIGATION
----------------------------*/
.quicknav {
  position: relative;
  z-index: 20;
  width: fit-content;
  max-width: calc(100% - 2rem);
  box-sizing: border-box;
  margin: 4rem auto 0;
  padding: 0.42rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  background: rgba(20, 40, 45, 0.94);
  border-radius: 5px;
}

.quicknavlink a:is(:link, :visited, :active) {
  position: relative;
  overflow: hidden;
  min-width: 84px;
  width: auto;
  box-sizing: border-box;
  padding: 0.72rem 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.48em;
  font-family: "Karla", sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--teal-pale);
  background: var(--bg);
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
  transition:
    color 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.quicknavlink a::before {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(to right, var(--lilacpink), var(--gold-bright));
  transition: left 0.4s ease, right 0.4s ease;
}

.quicknavlink a:hover {
  color: var(--vinegreen);
  background: rgba(207, 164, 71, 0.12);
  border-color: rgba(207, 164, 71, 0.48);
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.2),
    0 0 13px rgba(207, 164, 71, 0.1);
}

.quicknavlink a:hover::before {
  left: 0;
  right: 0;
}

.quicknavlink a:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

.quicknav .arrow-left,
.quicknav .arrow-up,
.quicknav .refresh {
  display: inline-flex;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  opacity: 0.76;
  filter: drop-shadow(0 0 4px rgba(224, 189, 111, 0.2));
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    filter 0.35s ease;
}

.quicknavlink a:hover .arrow-left,
.quicknavlink a:hover .arrow-up,
.quicknavlink a:hover .refresh {
  opacity: 1;
  filter: drop-shadow(0 0 5px rgba(224, 189, 111, 0.42));
}

.arrow-left {
  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='%23ffe9a1' 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 {
  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='%23ffe9a1' 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 {
  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='%23ffe9a1' 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");
}

@media (max-width: 800px) {
  .quicknav {
    max-width: calc(100% - 1rem);
    margin: clamp(3rem, 10vw, 5rem) auto clamp(2.25rem, 7vw, 3.5rem);
    padding: 0.35rem;
    gap: 0.35rem;
  }

  .quicknavlink a:is(:link, :visited, :active) {
    min-width: 0;
    padding: 0.66rem 0.82rem;
    font-size: 0.67rem;
  }
}

@media (max-width: 420px) {
  .quicknav { width: calc(100% - 1rem); }

  .quicknavlink a:is(:link, :visited, :active) {
    flex: 1 1 0;
    padding-inline: 0.45rem;
  }
}


/*----------------------------
 >>>> FORMS
----------------------------*/
.fl-form-fields {
  position: relative;
  background: rgba(28, 58, 65, 0.65);
  border: 1px solid rgba(169, 203, 205, 0.13);
  border-bottom: none;
  padding: 2rem;
  margin: 3.5rem auto 0;
  margin-bottom: 0 !important;
  text-align: left;
  border-radius: 5px 5px 0;
}

.fl-form-fields::before {
  content: "";
  position: absolute;
  top: calc(-1.8rem - 5px);
  left: 0;
  width: 260px;
  aspect-ratio: 304 / 99;
  background: url("images/form.png") no-repeat center / contain;
  opacity: 0.85;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.fl-form-fields + .fl-form-actions {
  margin-top: 0 !important;
  border-top: none;
}

.fl-embed--contact .fl-form-fields,
.fl-embed--affiliate-apply .fl-form-fields {
  margin-top: 7rem;
}

@media (max-width: 700px) {
  #wrap-upd-email,
  #wrap-upd-password {
    grid-column: 1 / -1 !important;
  }

  .fl-form-signin .fl-form-actions,
  .fl-form-reset .fl-form-actions,
  .fl-form-update .fl-form-actions {
    grid-template-columns: 1fr !important;
  }

  .fl-form-signin .fl-form-actions .fl-submit,
  .fl-form-signin .fl-form-actions .fl-btn-secondary,
  .fl-form-reset .fl-form-actions .fl-submit,
  .fl-form-reset .fl-form-actions .fl-btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-self: center;
  }
}

.fl-form-codes-submit {
  position: relative;
  box-sizing: border-box;
  width: min(85%, 1000px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  row-gap: 1rem;
  column-gap: 2rem;
  text-align: left;
  background: rgba(28, 58, 65, 0.65);
  border: 1px solid rgba(169, 203, 205, 0.13);
  border-radius: 5px;
  padding: 2rem;
  margin: 7rem auto 3.5rem;
}

.fl-form-codes-submit .fl-field {
  margin-bottom: 0;
}

.fl-form-codes-submit::before,
.fl-form-codes-submit::after {
  content: "";
  position: absolute;
  width: 260px;
  aspect-ratio: 304 / 99;
  background: url("images/form.png") no-repeat center / contain;
  opacity: 0.85;
  pointer-events: none;
  z-index: 2;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.fl-form-codes-submit::before {
  top: calc(-1.8rem - 5px);
  left: 0;
}

.fl-form-codes-submit::after {
  bottom: calc(-1.8rem - 5px);
  right: 0;
  transform: rotate(180deg);
}

#wrap-sub-name { grid-column: 1; }
#wrap-sub-email { grid-column: 2; }
#wrap-sub-url { grid-column: 1; }
#wrap-code-image { grid-column: 2; }
#wrap-captcha { grid-column: 1 / -1; }

.fl-form-codes-submit .fl-form-actions {
  grid-column: 1 / -1;
  position: relative;
  background: none;
  border: none;
  padding: 1.5rem 0 0;
  margin: 0;
}

@media (max-width: 700px) {
  .fl-form-codes-submit {
    grid-template-columns: 1fr;
  }

  #wrap-sub-name,
  #wrap-sub-email,
  #wrap-sub-url,
  #wrap-code-image {
    grid-column: 1;
  }
}

.fl-embed--affiliate-apply h2 {
  margin-bottom: 3rem;
}

.fl-hint,
.fl-form-intro {
  font-family: "Karla", sans-serif;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0 0 1em;
}

.fl-lost-password {
  font-family: "Karla", sans-serif;
  text-align: center;
  margin: 1em 0 0;
}

.fl-form-fields { margin-bottom: 0.25em; }

.fl-field { margin-bottom: 1.35em; }

.fl-label {
  display: block;
  margin-bottom: 0.5em;
  font-family: "Karla", sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--iceblue);
}

.fl-field-hint {
  display: block;
  margin: 0.5em 0 0;
  font-family: "Karla", sans-serif;
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-soft);
}

.fl-input,
.fl-select,
.fl-textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 0.7em 0.9em;
  font-family: "Karla", serif;
  font-size: 0.95rem;
  color: var(--lilacpink);
  background: rgba(11, 26, 30, 0.55);
  border: 1px solid rgba(224, 189, 111, 0.3);
  border-radius: 6px;
  cursor: url('images/text.gif'), auto !important;
  transition:
    border-color 0.35s ease,
    box-shadow 0.35s ease,
    background-color 0.35s ease;
}

.fl-input::placeholder,
.fl-textarea::placeholder {
  color: var(--text-soft);
  opacity: 0.65;
}

.fl-input:hover,
.fl-select:hover,
.fl-textarea:hover {
  border-color: rgba(224, 189, 111, 0.5);
}

.fl-input:focus,
.fl-select:focus,
.fl-textarea:focus {
  outline: none;
  border-color: var(--gold-bright);
  background: rgba(20, 40, 45, 0.7);
  box-shadow: 0 0 0 3px rgba(207, 164, 71, 0.14), 0 0 14px rgba(207, 164, 71, 0.12);
}

.fl-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.4em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23cfa447' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85em center;
  background-size: 0.7em auto;
  cursor: url('images/link.gif'), auto !important;
}

.fl-select option {
  color: var(--text);
  background: var(--contentbg);
}

.fl-checkbox,
.fl-radio {
  width: auto;
  margin: 0 0.5em 0 0;
  accent-color: var(--gold);
  cursor: url('images/link.gif'), auto !important;
}

.fl-check-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: "Karla", sans-serif;
  font-size: 0.85rem;
  color: var(--text);
  cursor: url('images/link.gif'), auto !important;
}

.fl-fieldset {
  margin: 0 0 1em;
  padding: 1em 1.2em;
  border: 1px solid rgba(224, 189, 111, 0.28);
  border-radius: 6px;
}

.fl-field--danger {
  margin-top: 1.5em;
  padding: 0.9em 1.1em;
  background: rgba(224, 132, 111, 0.08);
  border: 1px solid rgba(224, 132, 111, 0.4);
  border-radius: 6px;
}

.fl-file-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1.5em 1em;
  background: rgba(11, 26, 30, 0.4);
  border: 1px dashed rgba(224, 189, 111, 0.4);
  border-radius: 6px;
  cursor: url('images/link.gif'), auto !important;
  transition:
    border-color 0.35s ease,
    background-color 0.35s ease;
}

.fl-file-zone:hover {
  border-color: var(--gold-bright);
  background: rgba(20, 40, 45, 0.55);
}

.fl-file-zone input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  opacity: 0;
}

.fl-file-prompt {
  font-family: "Karla", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--teal-pale);
}

.fl-form-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1em;
  margin-bottom: 3.5rem;
  padding: 0 2rem 1.5rem;
  background: rgba(28, 58, 65, 0.65);
  border: 1px solid rgba(169, 203, 205, 0.13);
  border-radius: 0 0 5px 5px;
  box-sizing: border-box;
}

.fl-form-actions::after {
  content: "";
  position: absolute;
  bottom: calc(-1.8rem - 5px);
  right: 0;
  width: 260px;
  aspect-ratio: 304 / 99;
  background: url("images/form.png") no-repeat center / contain;
  opacity: 0.85;
  pointer-events: none;
  z-index: 2;
  transform: rotate(180deg);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

.fl-form-actions > * {
  position: relative;
  z-index: 3;
}


/*----------------------------
 >>>> QUOTES
----------------------------*/
blockquote {
  position: relative;
  z-index: 1;
  overflow: visible;
  box-sizing: border-box;
  width: min(80%);
  margin: clamp(2rem, 4vw, 3rem) auto;
  padding:
    clamp(1.7rem, 3vw, 2.1rem)
    clamp(1.65rem, 3vw, 2.35rem)
    clamp(1.75rem, 3vw, 2.15rem)
    clamp(2rem, 4vw, 2.7rem);
  background: rgba(28, 58, 65, 0.65);
  border: 1px solid rgba(169, 203, 205, 0.13);
  border-radius: 5px;
  color: var(--text-soft);
  font-family: "Karla", sans-serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.45;
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition:
    background-color 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

blockquote:has(cite) {
  padding-bottom: clamp(3.6rem, 6vw, 4.3rem);
}

blockquote::before {
  content: "“";
  position: absolute;
  left: 0.65rem;
  top: -0.55rem;
  font-family: "Fraunces", serif;
  font-size: clamp(4.5rem, 8vw, 6.5rem);
  font-style: italic;
  line-height: 1;
  color: rgba(224, 189, 111, 0.9);
  pointer-events: none;
}

blockquote::after {
  content: "";
  position: absolute;
  top: auto;
  right: -65px;
  bottom: -5px;
  width: 130px;
  aspect-ratio: 307 / 315;
  background: url("images/bottom.png") no-repeat right bottom / contain;
  opacity: 0.46;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 6px 9px rgba(0, 0, 0, 0.22));
  transform: none;
  transition: opacity 0.5s ease;
}

blockquote:hover {
  background: rgba(28, 58, 65, 0.32);
  border-left-color: var(--gold);
}

blockquote:hover::after {
  opacity: 0.75;
}

blockquote p:first-child { margin-top: 0; }

blockquote p:last-child { margin-bottom: 0; }

blockquote i { color: var(--gold); }

.content-panel blockquote cite a {
  display: inline;
  width: auto;
  padding: 0;
  background: none;
  color: var(--vinegreen);
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  text-decoration: none;
  text-shadow: inherit;
}

.content-panel blockquote cite a::after {
  content: none;
}

@media (max-width: 800px) {
  blockquote {
    width: calc(100% - 1rem);
    padding:
      1.65rem
      1.45rem
      1.7rem
      1.75rem;
  }

  blockquote::after {
    width: 92px;
    right: -20px;
    bottom: -10px;
    opacity: 0.38;
  }
}

blockquote cite {
  position: absolute;
  left: clamp(1.45rem, 4vw, 1.85rem);
  bottom: clamp(1.35rem, 4vw, 1.8rem);
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  margin: 0;
  padding: 0.58rem 0.88rem;
  color: rgba(224, 189, 111, 0.84);
  font-family: "Karla", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  font-style: normal;
}

blockquote cite::before {
  content: "\25BD";
  color: var(--gold);
  font-size: 0.65rem;
}


/*----------------------------
 >>>> STATS
----------------------------*/
.stats {
  position: relative;
  isolation: isolate;
  overflow: visible;
  width: min(80%);
  margin-inline: auto;
  box-sizing: border-box;
  padding: 1.5rem;
  padding-right: min(1rem);
  color: var(--text-soft);
  background: var(--bg);
  border: 1px solid var(--teal);
  border-radius: 5px;
  transition: border-color 0.5s ease;
}

.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/stats.png") center / cover no-repeat;
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.stats::after {
  content: "";
  position: absolute;
  right: clamp(-4rem, -7vw, -4rem);
  bottom: clamp(-4rem, -6vw, -3rem);
  z-index: 1;
  width: min(278px, 38.61cqw);
  aspect-ratio: 278 / 356;
  background: url("images/statsart.png") center bottom / contain no-repeat;
  opacity: 0.96;
  pointer-events: none;
}

.stats > * {
  position: relative;
  z-index: 2;
}

.stats-list {
  display: grid;
  gap: 0.08rem;
  margin: 0;
  padding: 0;  
  min-width: 0;
  color: var(--text);
  font-family: "Fraunces", serif;
  font-size: 0.9rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-shadow:
    1px 2px 0 rgba(11, 26, 30, 0.82),
    0 0 7px rgba(224, 189, 111, 0.05);
  transition:
    color 0.35s ease,
    text-shadow 0.35s ease;
}

.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: baseline;
  min-width: 0;
  padding: 0.5rem;
  transition:
    background 0.35s ease,
    transform 0.35s ease;
}

.stats:hover {
  border-color: var(--gold);
}

.stats:hover::before {
  opacity: 0.09;
}

.stats-row:hover {
  background: linear-gradient(to right, rgba(207, 164, 71, 0.15), rgba(146, 133, 208, 0.035) 55%, transparent);
  transform: translateX(-3px);
}

.stats b {
  color: var(--teal-pale);
  font-family: "Karla", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}


/*----------------------------
 >>>> FANS LIST
----------------------------*/
.members-grid {
  display: grid;
  flex-wrap: wrap;
  gap: 1em;
  justify-content: center;
  align-content: center;
}

.member-card {
  position: relative;
  z-index: 0;
  background: var(--bg);
  border: 1px solid var(--teal);
  border-radius: 5px;
  padding: 20px 14px 14px;
  text-align: center;
  transition: border-color 0.5s ease;
}

.member-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/bottom.png") no-repeat center / cover;
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.member-card .tri {
  position: absolute;
  left: 50%;
  top: -8px;
  transform: translateX(-50%);
  font-size: 0.65rem;
  color: var(--gold);
  background: var(--bg);
  padding: 0 6px;
}

.member-card:hover {
  border-color: rgba(207, 164, 71, 0.5);
}

.member-card:hover::before {
  opacity: 0.2;
}

.member-card .name, .name a {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-pale);
}

.member-card .country {
  font-family: "Karla", sans-serif;
  font-size: 0.75rem;
  color: var(--text-soft);
  margin-top: 3px;
}

.member-card .fields {
  font-family: "Karla", sans-serif;
  font-size: 0.65rem;
  color: var(--text-soft);
  opacity: 0.7;
  margin-top: 2px;
}

/*----------------------------
 >>>> GLOBAL LINK CURSOR
----------------------------*/
a, a * {
  cursor: url('images/link.gif'), auto !important;
}