/*------------------------------------------------------------------------






Nebuluna.net (c) Star, 2025.


All written, visual, and coded materials on this site are protected. 
Unauthorized copying, redistribution, or use of my work is prohibited. 

If you have questions, please ask. 

All resources and scripts used can be found in the credits section: https://nebuluna.com/domain






------------------------------------------------------------------------*/









* {
  cursor: url('images/cursor/default.cur'), auto !important;
  }

::selection      { color: #2c47e3; background-color: #e9bdff; }
::-moz-selection { color: #2c47e3; background-color: #e9bdff; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #5e78e3 url(images/bg.png) repeat-x center 62px;
  scroll-behavior: smooth;
}

main {
  flex: 1;
  width: min(100%, 800px);
  margin: auto;
  container-type: inline-size;
  background-color: #5e78e3;
}

.prevent-select {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

b, strong { 
  font-family: "Oxanium", sans-serif; 
  color: #53f1ff; 
  text-transform: uppercase; 
  text-shadow: 0 0 2px #2c47e3; }

i, em { 
  font-family: "Playfair Display", serif; 
  color: #febdfe; 
  text-shadow: 0 0 2px #ff79e4; }

u { 
  font-family: "Oxanium", sans-serif; 
  color: #b5a7ff; }

s { 
  font-family: "Playfair Display", serif; 
  color: #6482ff; }

.req { color: red; }

@font-face {
    font-family: 'Open Sans Condensed';
    src: url('images/opensans_con.ttf');
}



/*---------------------------- 
 >>>> LAYOUT 
----------------------------*/
header {
  width: min(100%, 1000px);
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  position: relative;
}

.slice {
  width: 100%;
  padding-top: calc(169 / 1000 * 100%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.slice-1 { background-image: url("images/v0_01.png"); }
.slice-2 { background-image: url("images/v0_02.png"); }
.slice-3 { background-image: url("images/v0_03.png"); }
.slice-4 { background-image: url("images/v0_04.png"); }

footer {
  width: min(100%, 1000px);
  margin: 0 auto;
  position: relative;
  background: center / cover no-repeat url("images/v0_footer.png");
  aspect-ratio: 1000 / 150;
}

footer a:is(:link, :visited, :focus) {
  color: #ff79e4;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

footer a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 80%
  );
  opacity: 0;
  pointer-events: none;
}

footer a:hover::before {
  animation: stat-shine 0.8s ease-out;
}

footer a:hover {
  color: #53f1ff;
}

.copyright {
  position: absolute;
  left: 50%;
  bottom: 15%;
  transform: translateX(-50%);
  width: min(90%, 500px);
  font: .65em 'Karla', sans-serif;
  color: #fff;
  font-weight: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: url('images/nav3.png');
  text-align: center;
  padding: 1em clamp(1.5em, 4vw, 3em);
  border-radius: 15px;
  text-shadow: 0 0 3px #00006e;
}

@media (max-width: 700px) {
  footer {
    margin-top: 1em;
  }

  .copyright {
    bottom: 30%;
    width: 80%;
  }
}

@media (max-width: 480px) {
  footer {
    margin-top: 1.5em;
  }
}



/*---------------------------- 
 >>>> CONTENT
----------------------------*/
p { text-indent: 1rem; }

.content {
  font: .85em "Domine", sans-serif;
  color: #fff;
  text-align: justify;
  padding-top: 12.5em;
  padding-bottom: 12.5em;
  padding-inline: clamp(1rem, 4vw, 4em);
  margin-inline: 20px;
  line-height: 1.7;
  letter-spacing: 0.5px;
    background:
    url("images/divtop.png") top center / auto auto no-repeat,
    url("images/divbottom.png") bottom center / auto auto no-repeat,
  linear-gradient(0deg, rgba(76, 92, 214, 0) 0%, rgba(76, 92, 214, 1) 30%, rgba(76, 92, 214, 1) 70%, rgba(76, 92, 214, 0) 100%);   
}

.content ul {
  list-style: none;
  margin: 1em 0;
}

.content li {
  position: relative;
  margin: .4em 0;
  padding-left: 1.5rem;
}

.content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 15px;
  height: 14px;
  background: url("images/bullet.png") no-repeat center / contain;
  filter: drop-shadow(0 0 4px #2c47e3);
  image-rendering: crisp-edges;
  text-shadow: none;
}

.display {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 5px;
  margin-bottom: 5px;
}

.display.text {
  flex-direction: column;
  line-height: 1;
}

blockquote {
  font: 1.25em "Oxanium", sans-serif; 
  background-image: url(images/blockquote.png);
  color: #fff;
  padding: 1em;
  margin-top: 1.5em;
  border-radius: 15px;
  border: 5px double #e9bdff;
  line-height: 1;
  text-align: center;
  cursor: url('images/cursor/text.cur'), auto !important;
  width: 80%;
}

blockquote.code {
  font: 1.25em "Oxanium", sans-serif; 
  background-image: url(images/nav3.png);
  color: #fff;
  padding: 1em;
  margin: 1.5em auto;
  border-radius: 15px;
  border: 5px double #6482ff;
  text-align: center;
  cursor: url('images/cursor/text.cur'), auto !important;
  width: 300px;
  display: flex;
  justify-content: center;
  align-content: center;
}

blockquote.code:hover { border: 5px double #ff79e4; }

.love { 
  color: #ff79e4; 
  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 24 24'%3E%3Cpath fill='%23ff79e4' fill-opacity='0' d='M12 8c0 0 0 0 0.76 -1c0.88 -1.16 2.18 -2 3.74 -2c2.49 0 4.5 2.01 4.5 4.5c0 0.93 -0.28 1.79 -0.76 2.5c-0.81 1.21 -8.24 9 -8.24 9c0 0 -7.43 -7.79 -8.24 -9c-0.48 -0.71 -0.76 -1.57 -0.76 -2.5c0 -2.49 2.01 -4.5 4.5 -4.5c1.56 0 2.87 0.84 3.74 2c0.76 1 0.76 1 0.76 1Z'%3E%3Canimate fill='freeze' attributeName='fill-opacity' begin='0.7s' dur='0.5s' values='0;1'/%3E%3C/path%3E%3Cpath fill='none' stroke='%23ff79e4' stroke-dasharray='32' stroke-dashoffset='32' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 8c0 0 0 0 -0.76 -1c-0.88 -1.16 -2.18 -2 -3.74 -2c-2.49 0 -4.5 2.01 -4.5 4.5c0 0.93 0.28 1.79 0.76 2.5c0.81 1.21 8.24 9 8.24 9M12 8c0 0 0 0 0.76 -1c0.88 -1.16 2.18 -2 3.74 -2c2.49 0 4.5 2.01 4.5 4.5c0 0.93 -0.28 1.79 -0.76 2.5c-0.81 1.21 -8.24 9 -8.24 9'%3E%3Canimate fill='freeze' attributeName='stroke-dashoffset' dur='0.7s' values='32;0'/%3E%3C/path%3E%3C/svg%3E");
  filter: drop-shadow(0 0 4px #aa10f5);
  line-height: 1;
}

.sparkle {
  color: #ff79e4;
  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='%23ff79e4' 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");
  filter: drop-shadow(0 0 4px #aa10f5);
  line-height: 1;
}



/*---------------------------- 
 >>>> TOOLTIP
----------------------------*/
#s-m-t-tooltip{
  font: .75em "Oxanium", sans-serif; 
  color:#fff;
  max-width: 400px;
  letter-spacing: .5px;
  z-index: 10;
  margin: 25px 20px 0px 20px;
	padding: 10px 13px;
  background: url('images/nav4.png');
	border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
}



/*---------------------------- 
 >>>> HEADINGS
----------------------------*/
h1 {
  font: 3em "Petit Formal Script", cursive;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 0 1em #c365cd, 0 0 .5em #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: max-content;
  margin-inline: auto;
  margin-bottom: .4em;
}

.h1div {
  background-image: linear-gradient(315deg, #0098f8 0, #0094fb 6.25%, #0090fb 12.5%, #0a8bfa 18.75%, #5285f7 25%, #7380f2 31.25%, #8d79eb 37.5%, #a273e2 43.75%, #b46cd8 50%, #c365cd 56.25%, #d05fc0 62.5%, #da59b3 68.75%, #e354a5 75%, #e95197 81.25%, #ed4f89 87.5%, #ef507b 93.75%, #ef526d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-stroke: 10px transparent;
  padding: 10px; 
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25em;
  width: max-content;
  margin-inline: auto;
}

h1::before, h1::after {
  content: url('images/sparkle.png');
}

h2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(.4rem, 1vw, .75rem);
  font-family: "Playfair Display", serif; 
  font-weight: bold;
  font-style: italic;
  font-size: clamp(1rem, 1rem + 1.2vw, 2em);
  font-variant: small-caps;
  letter-spacing: 3px;
  color: #fff;
  text-shadow: 3px 3px 0 #2c47e3;
  text-align: left;
  margin: clamp(0.5em, 2vw, 2.5em) auto 1em;
}

h2::before,
h2::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(
    90deg,
    #0098f8 0,
    #0094fb 6.25%,
    #0090fb 12.5%,
    #0a8bfa 18.75%,
    #5285f7 25%,
    #7380f2 31.25%,
    #8d79eb 37.5%,
    #a273e2 43.75%,
    #b46cd8 50%,
    #c365cd 56.25%,
    #d05fc0 62.5%,
    #da59b3 68.75%,
    #e354a5 75%,
    #e95197 81.25%,
    #ed4f89 87.5%,
    #ef507b 93.75%,
    #ef526d 100%
  );
  border-radius: 3px;
  margin-left: 5px;
}

h3 {
  font: 1.5em "Open Sans Condensed", sans-serif;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: left;  
  text-shadow: 0 0 .25em #ff79e4,  0 0 .25em #ff79e4, 0 0 5em #ff79e4,  0 0 1em #ee2cf3, 0 0 1em #ee2cf3;
}

h3 u {
  font: inherit;
  color: inherit;
  text-shadow: inherit;
}

h3:first-of-type {
  margin-top: 0;
}

hr {
    overflow: visible;
    padding: 0;
    border: none;
    border-top: thick double #ff79e4;
    text-align: center;
    margin: 4em 4em 0 4em;
}

hr:after {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2.5em' height='2.5em' viewBox='0 0 24 24'%3E%3Cpath fill='%2353f1ff' d='M10.577 8.704C11.21 7.568 11.527 7 12 7s.79.568 1.423 1.704l.164.294c.18.323.27.484.41.59c.14.107.316.147.665.226l.318.072c1.23.278 1.845.417 1.991.888c.147.47-.273.96-1.111 1.941l-.217.254c-.238.278-.357.418-.41.59c-.055.172-.037.358 0 .73l.032.338c.127 1.308.19 1.962-.193 2.253c-.383.29-.958.026-2.11-.504l-.298-.138c-.327-.15-.49-.226-.664-.226c-.173 0-.337.076-.664.226l-.298.138c-1.152.53-1.727.795-2.11.504c-.383-.29-.32-.945-.193-2.253l.032-.338c.037-.372.055-.558 0-.73c-.053-.172-.172-.312-.41-.59l-.217-.254c-.838-.98-1.258-1.47-1.111-1.941c.146-.47.76-.61 1.99-.888l.319-.072c.35-.08.524-.119.665-.225c.14-.107.23-.268.41-.59z'/%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M12 1.25a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0V2a.75.75 0 0 1 .75-.75m6.53 4.22a.75.75 0 0 1 0 1.06l-.343.343a.75.75 0 0 1-1.06-1.06l.343-.343a.75.75 0 0 1 1.06 0m-13.06 0a.75.75 0 0 1 1.06 0l.344.343a.75.75 0 0 1-1.061 1.06L5.47 6.53a.75.75 0 0 1 0-1.06M1.25 12a.75.75 0 0 1 .75-.75h2a.75.75 0 0 1 0 1.5H2a.75.75 0 0 1-.75-.75m18 0a.75.75 0 0 1 .75-.75h2a.75.75 0 0 1 0 1.5h-2a.75.75 0 0 1-.75-.75M6.873 17.127a.75.75 0 0 1 0 1.06l-.343.343a.75.75 0 0 1-1.06-1.06l.343-.343a.75.75 0 0 1 1.06 0m10.253 0a.75.75 0 0 1 1.061 0l.343.343a.75.75 0 0 1-1.06 1.06l-.343-.343a.75.75 0 0 1 0-1.06M12 19.25a.75.75 0 0 1 .75.75v2a.75.75 0 0 1-1.5 0v-2a.75.75 0 0 1 .75-.75' clip-rule='evenodd'/%3E%3C/svg%3E");
    display: inline-block;
    position: relative;
    top: -0.8em;
    font-size: 2em;
    padding: 0 0.25em;
    background: #4c5cd6;
}




/*---------------------------- 
 >>>> GLOBAL HYPERLINKS
----------------------------*/
.content a {
  font-family: "Libre Baskerville", serif;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-decoration: none;
  background-image: radial-gradient(circle at 50% -20.71%, #8fceff 0, #9dcbff 6.25%, #acc8ff 12.5%, #b9c5ff 18.75%, #c6c1ff 25%, #d3beff 31.25%, #debbff 37.5%, #e9b8f9 43.75%, #f2b5f2 50%, #fab3ea 56.25%, #ffb0e2 62.5%, #ffafd9 68.75%, #ffaecf 75%, #ffadc6 81.25%, #ffadbd 87.5%, #ffaeb4 93.75%, #ffafab 100%);
  background-repeat: no-repeat;
  background-size: 100% 10%;
	background-position-y: 100%;
  text-shadow: 0 0 3px #2c47e3, 0 0 3px #2c47e3;
  transition: background-size 0.25s ease-in;
  padding-block: 5px;
}

.content a:hover {
  background-size: 100% 100%;
  text-shadow: 0 0 .25em #fff, 0 0 .4em #aa10f5, 0 0 .4em #aa10f5;
}

.content a:has(> img),
.code,
.inspo {
  position: relative;
  overflow: hidden;
  display: inline-block;
  line-height: 0;
  border: 5px solid transparent;
  background: url('images/nav3.png');
  padding: 0;
}

.content a:has(> img)::before,
.code::before,
.inspo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 80%
  );
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.content a:has(> img):hover::before,
.code:hover::before,
.inspo:hover::before {
  animation: content-shine 0.8s ease-out;
}

@keyframes content-shine {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

.content a:has(> img):hover,
.content a:has(> img):focus-visible,
.code:hover,
.code:focus-visible,
.inspo:hover {
  background: url('images/nav2.png');
  filter: brightness(1.08);
}

.code img {
  display: block;
  max-width: 100%;
}

.inspo {
  float: left;
  margin-right: 10px;
}



/*---------------------------- 
 >>>> NAVIGATION
----------------------------*/
nav { 
  margin: 0 auto; 
  font-family: 'Libre Baskerville', serif;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 30px;
  font-size: clamp(0.5em, 0.5em + 0.4vw, 0.7em);
  background-color: #d4a4ff;
  background-image: url('images/nav.png');
  position: sticky;
  top: 0;
  left: 0; 
  right: 0;
  z-index: 1000;
  width: 100%;
}


nav::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 5px;
  background: url("images/nav3.png") center / cover no-repeat;
  z-index: -1;
}

nav > ul {  
  display: flex;
  max-width: 850px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

nav a {
  text-decoration: none;
}

nav > ul > li {
  color: #fff;
  text-align: center;
  display: block;
  position: relative;
  padding: 1rem;
  flex: 1 1 0;
  border-right: 5px double rgb(255 255 255 / .7);
  transition: background .5s ease;
}

nav > ul > li:last-child {
  border-right: none;
}

nav > ul > li > a,
nav > ul > li { 
  color: #fff; 
  display: block; 
  text-shadow:
    0 0 .25em #aa10f5,
    0 0 .25em #aa10f5,
    0 0 .25em #ee2cf3,
    0 0 .25em #ee2cf3,
    0 0 5em #aa10f5,
    0 0 1em #ee2cf3,
    0 0 1em #ee2cf3;
}

nav > ul > li:hover,
nav > ul > li:focus-within {
  background: #914fd7;
  background-image: url('images/nav2.png');
}

nav > ul > li:focus-within > a { 
  outline: none; 
}

nav li > ul {
  background: #994fff;
  background-image: url('images/nav2.png');
  list-style: none;
  display: none;
  position: absolute;
  margin: 1rem 0 0;
  padding: .25rem 0;
  left: 0; 
  right: 0;
  box-sizing: border-box;
  z-index: 10;
}

nav li:hover > ul,
nav li:focus-within > ul,
nav li > ul:hover,
nav li > ul:focus-within {
  display: block;
}

nav li > ul > li { width: 100%; }

nav li > ul > li > a { 
  font: 1em 'Karla', sans-serif;
  text-transform: uppercase;
  color: #fff; 
  display: block; 
  padding-block: 1.5em;
  padding-left: 4em;
  padding-right: 1.5em;
  border-bottom: 1px dotted #fff;
  letter-spacing: 1px;
  width: 100%;
  box-sizing: border-box;  
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: color .25s ease, text-shadow .25s ease;
  text-shadow: none;
  text-align: left;
}

nav li > ul > li > a::before {
  content: "";
  position: absolute;
  left: clamp(1.2em, 1em + 1vw, 2em);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(10px, 1.5vw, 15px);
  height: clamp(10px, 1.4vw, 14px);
  background: url("images/bullet.png") no-repeat center / contain;
  image-rendering: crisp-edges;
  text-shadow: none;
}

nav li > ul > li:hover > a::before,
nav li > ul > li > a:focus::before {
  filter: drop-shadow(0 0 2px #00006e);
  text-shadow:
    0 0 6px #00006e,
    0 0 12px #00006e;
}

nav li > ul > li:hover {
  background: url("images/nav3.png") center / cover no-repeat;
}

nav li > ul > li > a:hover,
nav li > ul > li > a:focus-visible {
  color: #ffffff;
  text-shadow:
    0 0 4px #00006e,
    0 0 10px #00006e,
    0 0 18px #00006e;
  letter-spacing: 3px;
}

nav li > ul > li > a::after {
  content: "";
  flex: 1 1 auto;
  height: 2px;
  margin-left: 0.5em;
  opacity: 0;
  background: linear-gradient(
    90deg,
    #0098f8 0,
    #0094fb 6.25%,
    #0090fb 12.5%,
    #0a8bfa 18.75%,
    #5285f7 25%,
    #7380f2 31.25%,
    #8d79eb 37.5%,
    #a273e2 43.75%,
    #b46cd8 50%,
    #c365cd 56.25%,
    #d05fc0 62.5%,
    #da59b3 68.75%,
    #e354a5 75%,
    #e95197 81.25%,
    #ed4f89 87.5%,
    #ef507b 93.75%,
    #ef526d 100%
  );
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s ease, opacity .35s ease;
}

nav li > ul > li > a:hover::after,
nav li > ul > li > a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}



/*---------------------------- 
 >>>> QUICK NAVIGATION
----------------------------*/
.quicknav {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5em 0 0 0;
}

.quicknavlink a:is(:link,:visited,:active) {
  font: .8em 'Karla', sans-serif;
  color: #6482ff;
  background-color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 5px;
  margin: 5px;
  width: 80px;
  border-radius: 5px;
  text-shadow: none;
  transition: 0.25s;
}

.quicknavlink a:hover {
	color: #fff;
  text-shadow: 0 0 2px #fff, 0 0 3px #aa10f5, 0 0 3px #aa10f5;
}



/*---------------------------- 
 >>>> CONTACT FORM
----------------------------*/
.contactform {
  font-size: 1em;
  font-weight: bold;
  width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  row-gap: 1rem;
  column-gap: 2rem;
  box-sizing: border-box;
  grid-auto-flow: row dense;
  text-shadow: 2px 2px 0 #2c47e3;
}

.field-single {
  grid-column: 1 / -1;
}

.form_captcha {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: max-content 1fr 200px;
  gap: .75rem .75rem;
  justify-content: center;
  align-items: center;
  width: 60%;
  margin: 0 auto;
}

.form_captcha_label { grid-column: 1; }

#captcha { 
  font: 1.5em 'Courier New', sans-serif;
  font-weight: bold;
  color: yellow;
  grid-column: 2;
  padding: .3em;
  border: 2px dashed yellow;
  background-color: #191919;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.4'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  text-shadow: none;
}

#captcha-input { grid-column: 3; }

#captcha input[type="button"] {
  font-size: .75em;
  width: 30px;
  color: black;
  background-color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: .75;
  padding: 5px;
  border-radius: 10px;
  margin-left: 10px;
  border: none;
}

#captcha input[type="button"]:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 #999999;
}

.form_captcha_result { grid-column: 1 / -1; }

#captcha input[type="button"], button {
  cursor: url('images/cursor/link.cur'), auto !important;
}

input:not([type="submit"]):not([type="reset"]), textarea, select {
  font: 1em "Oxanium", sans-serif; 
  color: #2c47e3;
  letter-spacing: 1px;
  border: 2px solid #914fd7;
  border-radius: 15px;
  padding: .5em;
  width: 100%;
  box-sizing: border-box;
  background-color: #d7b1ff;
  cursor: url('images/cursor/text.cur'), auto !important;
}

:where(button, input[type="submit"], input[type="reset"]) {
  font-size: 1em;
  color: #fff;
  border: none;
  padding: 1em;
  border-radius: 15px;
  letter-spacing: 1px;
  transition: .25s ease;
  text-shadow: 0 0 .5em #000;
  width: 100%;
}

:where(button[type="submit"], input[type="submit"]) {
  background: #9BE931;
  background: linear-gradient(180deg, rgba(155, 233, 49, 1) 0%, rgba(60, 179, 113, 1) 100%);
}
:where(button[type="submit"], input[type="submit"]):hover {
  background-color: #2e8b57;
  box-shadow: 0 0 1em #9BE931;
}
:where(button[type="submit"], input[type="submit"]):focus-visible {
  outline: 2px solid #9BE931;
  outline-offset: 2px;
}

:where(button[type="reset"], input[type="reset"]) {
  background: #E97451;
  background: linear-gradient(180deg, rgba(233, 116, 81, 1) 50%, rgba(231, 76, 60, 1) 100%);
}
:where(button[type="reset"], input[type="reset"]):hover {
  background-color: #c0392b;
  box-shadow: 0 0 1em #E97451;
}
:where(button[type="reset"], input[type="reset"]):focus-visible {
  outline: 2px solid #E97451;
  outline-offset: 2px;
}

input::placeholder,
textarea::placeholder,
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-moz-placeholder,
textarea::-moz-placeholder,
input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #6482ff;
  opacity: 1;
}


.actions { 
  grid-column: 1 / -1; 
  display: flex; 
  justify-self: center; 
  justify-content: center; 
  gap: 1em; 
  width: 100%; }

@media (max-width: 700px) {
  .actions { 
    margin-top: 1em;
    width: 100%; 
  }
  .contactform {
    grid-template-columns: 1fr;
    gap: .5rem;
  }
  
  .form_captcha {
    grid-template-columns: 1fr;
  }
  
  #captcha, #captcha-input, .form_captcha_label {
    grid-column: 1;
  }
}



/*---------------------------- 
 >>>> STATS
----------------------------*/
.stat-row {
  display: flex;
  justify-content: center;
  gap: 1.5em;
  flex-wrap: wrap;
  margin-bottom: 3em;
}

.stat {
  width: min(18vw, 150px);
  aspect-ratio: 1; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem;
  position: relative;
  overflow: hidden;
  background: url("images/nav2.png") center / 100% 100% no-repeat;
  filter: brightness(1.08);
  --g: /27.676% 27.676% radial-gradient(#000 calc(71% - 1px), #0000 71%) no-repeat;
  -webkit-mask:
    100% 50% var(--g),
    85.355% 85.355% var(--g),
    50% 100% var(--g),
    14.645% 85.355% var(--g),
    0% 50% var(--g),
    14.645% 14.645% var(--g),
    50% 0% var(--g),
    85.355% 14.645% var(--g),
    radial-gradient(100% 100%, #000 33.409%, #0000 calc(33.409% + 1px));
  mask:
    100% 50% var(--g),
    85.355% 85.355% var(--g),
    50% 100% var(--g),
    14.645% 85.355% var(--g),
    0% 50% var(--g),
    14.645% 14.645% var(--g),
    50% 0% var(--g),
    85.355% 14.645% var(--g),
    radial-gradient(100% 100%, #000 33.409%, #0000 calc(33.409% + 1px));
  transition: background-size 0.3s ease, filter 0.3s ease;
}

.stat:hover {
  background-size: 115% 115%;
  filter: brightness(1.22);
}

.stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 20%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 80%
  );
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

@keyframes stat-shine {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

.stat:hover::before {
  animation: stat-shine 0.8s ease-out;
}

.stat-number {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  color: #fff;
  font-size: clamp(1.75rem, 1.25rem + 2.5vw, 3rem);
  line-height: 1;
  margin-bottom: 0.25rem;
  text-shadow:
    0 0 3px #aa10f5,
    0 0 6px #aa10f5,
    0 0 9px #ed4f89;
}

.stat-label {
  font-family: "Oxanium", sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(0.7rem, 0.55rem + 0.6vw, 0.9rem);
  color: #fff;
  padding: 5px;
}

.stat-pending {
  font-family: "Open Sans Condensed", sans-serif;
  font-size: clamp(0.7rem, 0.55rem + 0.6vw, 0.9rem);
  color: #fff;
  text-transform: uppercase;
}

.stat-pending b {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  color: #53f1ff;
}

.stat-label,
.stat-pending {
  display: block;
  margin: 0;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .stat-row { gap: 0; }
  .stat-number { margin-bottom: 0; }
  .stat-label, .stat-pending { line-height: 1; }
}



/*---------------------------- 
 >>>> OWNED & UPCOMING FLS
----------------------------*/
figure.owned {
  font-family: "Oxanium", sans-serif; 
  position: relative;
  overflow: hidden;
  margin: 10px;
  width: 250px;
  height: 150px;
  color: #ffffff;
  text-align: left;
  border-radius: 15px;
  border: 5px solid transparent;
  background: url('images/nav3.png');
  image-rendering:optimizeQuality;
}

figure.owned:hover {
  background: url('images/nav2.png');
}

figure.owned * {
  box-sizing: border-box;
  transition: all 0.35s ease;
}

figure.owned img {
  max-width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
  opacity: 0.5;
}

figure.owned::after,
figure.owned figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

figure.owned::after {
  content: "";
  background-color: rgb(0 0 110 / .6);
  opacity: 0;
}

figure.owned figcaption {
  z-index: 1;
  padding: .8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

figure.owned h3,
figure.owned p {
  width: 100%;
  margin: 0;
  opacity: 0;
  transform: translateY(10px);
  line-height: 1.2;
  text-indent: 0;
}

figure.owned h3 {
  font-size: 1.3em;
  margin-bottom: .25em;
}

figure.owned p {
  font-size: 0.8em;
}

figure.owned a {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: none !important;
  animation: none !important;
}

figure.owned:hover::after {
  opacity: 1;
}

figure.owned:hover h3,
figure.owned:hover p {
  opacity: 1;
  transform: translateY(0);
}



/*---------------------------- 
 >>>> CUSTOM RIGHT CLICK
----------------------------*/
#custom-download-menu,
#custom-code-menu {
  position: absolute;
  z-index: 9999;
  min-width: 160px;
  background: #aa10f5;
  border: 1px solid #b46cd8;
  border-radius: 6px;
  padding: 4px 0;
  box-shadow: 0 8px 18px #2c47e3;
  font-family: "Libre Baskerville", system-ui, sans-serif;
  font-size: 0.75rem;
  color: #fff;
}

#custom-download-menu .menu-item,
#custom-code-menu .menu-item {
  display: block;
  width: 100%;
  padding: 6px 12px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
}

#custom-download-menu .menu-item:hover,
#custom-code-menu .menu-item:hover {
  background: #b46cd8;
}



/*---------------------------- 
 >>>> MISCELLANEOUS
----------------------------*/
.credits {
  display: flex;
  flex-direction: column;
  font-size: .75em;
  line-height: 1.25;
}

p.error, p.success {
  font-weight: bold;
  padding: 10px;
  border: 1px solid;
}

p.error {
  background: #ffc0c0;
  color: #900;
}

p.success {
  background: #b3ff69;
  color: #4fa000;
}



/*---------------------------- 
 >>>> GLOBAL LINK CURSOR
----------------------------*/
a, a * { cursor: url('images/cursor/link.cur'), auto !important; }