@charset "UTF-8";
/*
    app.scss
*/
/*
    base.scss
*/
/*
    variables.scss
*/
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #07070a;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  pointer-events: none;
  z-index: 55;
  background-size: cover;
  mix-blend-mode: overlay;
}

.App {
  /*   background-image: url("@/assets/void-empty.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;  */
  height: 100vh;
  width: 100vw;
}

body.ui-locked .r3f-html {
  pointer-events: none !important;
  opacity: 0.2 !important;
}

/*
    components.scss
*/
/*
    canvas.scss
*/
.canvas {
  transition: filter 0.5s ease-in-out;
}
.canvas__background {
  position: fixed;
  inset: 0;
  pointer-events: auto;
}
.canvas--main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* Ovaj je u prednjem planu */
}
.canvas--fog {
  position: absolute;
  opacity: 0.5;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2; /* Ovaj će biti ispod canvas--main ali iznad canvas--blocks */
}
.canvas--blocks {
  user-select: none;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  z-index: 3; /* Postavljamo u pozadinu */
}
.canvas--market {
  user-select: none;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  z-index: 8;
}
.canvas--graph {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  margin: 0;
  z-index: 4; /* Postavljamo u pozadinu */
}
.canvas--floor {
  position: absolute;
  top: 0;
  left: 0;
  user-select: none;
}

canvas.blur {
  filter: blur(8px) brightness(0.6);
}

/*
    footer.scss
*/
.footer {
  position: absolute;
  bottom: 2rem;
  width: 50vw;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  display: flex;
}
.footer__container {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 12;
}
.footer__button {
  width: 50px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 12;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
.footer__button:hover .icon {
  transition: filter 0.3s ease-in-out;
  filter: invert(66%) sepia(44%) saturate(0%) hue-rotate(287deg) brightness(102%) contrast(103%) drop-shadow(0 0 2px rgba(255, 255, 255, 0.0941176471));
  transform: scale(1.2);
}
.footer__button:hover > .tooltip {
  opacity: 1;
  transform: translateX(0px) translateY(-100px);
}
.footer--row {
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: middle;
  flex-direction: row;
  gap: 3rem;
}

/*
    mixins.scss
*/
.block--active {
  z-index: 7;
}

/*
    sections.scss
*/
.section {
  position: relative;
  width: 60vw;
  height: 60vw;
  transform-style: preserve-3d;
  transition: transform 1s ease-in-out;
  z-index: 14;
}
.section__container {
  margin-top: 25vh;
}
.section__face {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
  pointer-events: none;
}
.section__content {
  z-index: 1;
  margin: 5% 15%;
  transform-style: preserve-3d;
  user-select: none;
}
.section__content--centered {
  text-align: center;
}
.section__title {
  font-size: 56px;
  font-weight: bold;
  color: #e0e0e0;
  text-shadow: 0 0 10px rgba(127, 17, 224, 0.7);
  margin-bottom: 1rem;
  margin-top: 0;
  padding: 1rem;
  padding-top: 0;
}
.section__subtitle {
  font-size: 48px;
  color: #a3a3a3;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  margin-bottom: 2rem;
}
.section__footer {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 18px;
  font-weight: bold;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  color: #e0e0e0;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.section__button {
  cursor: pointer;
  display: block;
  padding: 1rem 2rem;
  max-height: 50px;
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  background: none;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(90, 15, 200, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transform: perspective(1000px) rotateX(15deg) translateZ(10px);
  transform: scale(1.5);
  pointer-events: auto;
}
.section__button:hover {
  background: linear-gradient(145deg, #6b1de6, #4a12b8);
  transform: perspective(1000px) rotateX(5deg) translateZ(15px);
  box-shadow: 0 8px 20px rgba(107, 29, 230, 0.8), inset 0 3px 5px rgba(255, 255, 255, 0.3);
  transform: scale(1.6);
}
.section__button--back, .section__button--forward {
  padding: 1rem 0.5rem;
  z-index: 15;
}
.section__icon {
  display: block;
  width: 20px;
  height: auto;
  margin-left: 5px;
}
.section__list {
  margin: 1rem 0;
  list-style-type: none;
  padding: 0;
}
.section__list__item {
  color: #e0e0e0;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  font-size: 18px;
  margin: 4px 0;
}
.section__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 18px;
  color: #00d1b2;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
  pointer-events: auto;
}
.section__link:hover {
  border-color: #00d1b2;
}
.section__link--instagram {
  color: #E1306C;
}
.section__link--instagram:hover {
  border-color: #E1306C;
}
.section__link--x {
  color: #1DA1F2;
}
.section__link--x:hover {
  border-color: #1DA1F2;
}
.section__link--facebook {
  color: #1877F2;
}
.section__link--facebook:hover {
  border-color: #1877F2;
}
.section__link--telegram {
  color: #0088cc;
}
.section__link--telegram:hover {
  border-color: #0088cc;
}
.section__face--front {
  transform: rotateY(0deg) translateZ(30vw);
}
.section__face--back {
  transform: rotateY(180deg) translateZ(30vw);
}
.section__face--left {
  transform: rotateY(-90deg) translateZ(30vw);
}
.section__face--right {
  transform: rotateY(90deg) translateZ(30vw);
}
.section__face--top {
  transform: rotateX(90deg) translateZ(30vw);
}
.section__face--bottom {
  transform: rotateX(-90deg) translateZ(30vw);
}

.social-orbit {
  position: absolute;
  bottom: 15vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 3rem;
  z-index: 20;
  perspective: 1000px;
}

.social-node {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  text-decoration: none;
  transition: all 0.4s ease;
  transform: scale(0.9) translateZ(40px);
  box-shadow: 0 0 15px rgba(127, 17, 224, 0.3);
  pointer-events: auto;
}
.social-node:hover {
  color: #fff;
  transform: scale(1.15) translateZ(60px);
  box-shadow: 0 0 25px rgba(127, 17, 224, 0.7);
}
.social-node.active {
  transform: scale(1.25) translateZ(80px);
}

.social-node:nth-child(1).active {
  background: radial-gradient(circle, #E1306C 0%, #831843 80%);
  box-shadow: 0 0 30px #E1306C, 0 0 60px rgba(225, 48, 108, 0.6);
}

.social-node:nth-child(2).active {
  background: radial-gradient(circle, #1DA1F2 0%, #0e63a3 80%);
  box-shadow: 0 0 30px #1DA1F2, 0 0 60px rgba(29, 161, 242, 0.6);
}

.social-node:nth-child(3).active {
  background: radial-gradient(circle, #1877F2 0%, #0b318c 80%);
  box-shadow: 0 0 30px #1877F2, 0 0 60px rgba(24, 119, 242, 0.6);
}

.social-node:nth-child(4).active {
  background: radial-gradient(circle, #0088cc 0%, #004e7a 80%);
  box-shadow: 0 0 30px #0088cc, 0 0 60px rgba(0, 136, 204, 0.6);
}

@keyframes float {
  0% {
    transform: translateY(0) rotateY(0deg);
  }
  50% {
    transform: translateY(-8px) rotateY(10deg);
  }
  100% {
    transform: translateY(0) rotateY(0deg);
  }
}
.social-node {
  animation: float 5s ease-in-out infinite;
}

/* ------------------------------------- */
/* Screen size                  */
/* ------------------------------------- */
/* LAPTOP  */
@media (max-width: 1366px) {
  .section__title {
    font-size: 48px;
  }
  .section__subtitle {
    font-size: 38px;
  }
  .section__footer {
    font-size: 16px;
  }
}
/* TABLET  */
@media (max-width: 768px) {
  .section__title {
    font-size: 36px;
  }
  .section__subtitle {
    font-size: 28px;
  }
  .section__footer {
    font-size: 14px;
  }
  .section__button {
    background: none;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    box-shadow: none;
    transform: none;
    padding: 0.8rem 1.5rem;
  }
  .section__button:hover {
    background: none;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    box-shadow: none;
    transform: none;
  }
  .section__icon {
    width: 32px;
    opacity: 0.8;
  }
  .section__content {
    margin: 8% 10%;
  }
}
/* MOBILE */
@media (max-width: 480px) {
  .section__title {
    font-size: 28px;
  }
  .section__subtitle {
    font-size: 22px;
  }
  .section__footer {
    font-size: 12px;
  }
  .section__button {
    padding: 0.6rem 1rem;
    font-size: 14px;
  }
  .section__content {
    margin: 2%;
    padding-bottom: 2rem;
  }
}
/*
    market.scss
*/
.market--container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  z-index: 18;
}
.market-title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-size: 24px;
  color: #a3a3a3;
  z-index: 10;
}
.market-single {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 40vw;
  padding: 2rem;
  overflow: hidden;
  z-index: 5;
}

.market-grid {
  width: 60vw;
  height: 60vw;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.market-grid .market-block {
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  opacity: 1;
}
.market-grid.scrolling-up .market-block {
  transform: translateY(-100px);
  opacity: 0;
}
.market-grid.scrolling-down .market-block {
  transform: translateY(100px);
  opacity: 0;
}
.market-grid .market-block.new {
  animation: slide-in 0.6s ease-in-out forwards;
}
.market-grid .market-block.old {
  animation: slide-out 0.6s ease-in-out forwards;
}

.market--container.with-compare {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
@media (max-width: 768px) {
  .market--container.with-compare {
    flex-direction: column; /* stack vertically */
  }
}

.comparison__container {
  flex: 0 0 30%; /* fixed ~30% width */
  max-width: 30vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem;
}
.comparison__container .comparison__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 12px #8f00ff, 0 0 18px #00ffff;
  letter-spacing: 2px;
}
.comparison__container .canvas--compare {
  width: 100%;
  height: calc(100% - 2rem);
}
@media (max-width: 768px) {
  .comparison__container {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
    height: 40vh; /* take top part of screen */
  }
}

.market__main {
  flex: 0 0 70%; /* fixed ~70% width */
  max-width: 70vw;
  height: 100vh;
  padding: 0 1rem;
  display: flex;
  justify-content: center; /* center grid inside */
  align-items: center;
}
.market__main .canvas--market {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .market__main {
    flex: 1;
    max-width: 100%;
    width: 100%;
    height: 60vh; /* take rest of screen */
  }
}

/* Animacija ulaska novih marketa */
@keyframes slide-in {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Animacija izlaska starih marketa */
@keyframes slide-out {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100px);
    opacity: 0;
  }
}
.loading-spinner {
  color: #fff;
  text-align: center;
  margin-top: 2rem;
  font-size: 18px;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.4;
  }
}
.no-results {
  color: #ccc;
  text-align: center;
  margin-top: 2rem;
  font-size: 16px;
}

/*
    navigation.scss
*/
.navigation {
  position: fixed;
  top: 2vh;
  user-select: none;
}
.navigation__item--has-dropdown {
  position: relative;
}
.navigation__item--has-dropdown:hover > .dropdown,
.navigation__item--has-dropdown > .dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.navigation--horizontal {
  width: 100vw;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 13;
}
.navigation--vertical {
  left: 0;
  width: 15vw;
  height: 101vh;
  padding: 0;
  margin-left: 1vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 6;
}
.navigation__admin-button {
  margin-right: 1rem;
}
.navigation__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: right;
  align-items: end;
  width: 100%;
}
.navigation__list--horizontal {
  width: 90%;
  justify-content: flex-end;
  align-items: center;
}
.navigation__list--vertical {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  margin-bottom: 5vh;
}
.navigation__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 2rem 0;
  align-items: center;
}
.navigation__balance {
  margin-right: 2%;
  display: flex;
  align-items: center;
}
.navigation__balance__content {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: bold;
  font-size: 16px;
  color: #e0e0e0;
  text-transform: uppercase;
  letter-spacing: 1px;
  user-select: none;
  transition: all 0.3s ease;
}
.navigation__balance__icon {
  font-size: 18px;
  filter: drop-shadow(0 4px 10px rgba(90, 15, 200, 0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.navigation__balance__value {
  text-align: right;
}
.navigation__balance:hover {
  cursor: default;
}
.navigation__balance:hover .navigation__balance__icon {
  transform: scale(1.15);
  filter: drop-shadow(0 8px 15px rgba(107, 29, 230, 0.7));
}
.navigation__account {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  vertical-align: middle;
}
.navigation__wallet {
  margin-right: 2%;
}
.navigation__light {
  display: flex;
  align-items: center;
  margin-right: 1.25rem;
}
.navigation__link {
  color: #e0e0e0;
  text-decoration: none;
  margin: 0 10px;
  font-size: 16px;
  font-weight: bold;
  transition: color 0.3s ease;
  text-transform: uppercase;
  z-index: 9;
}
.navigation__link__icon {
  width: 24px;
  height: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 4px 10px rgba(90, 15, 200, 0.5));
}
.navigation__link__icon:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 15px rgba(107, 29, 230, 0.7));
  cursor: pointer;
}
.navigation__link__text {
  display: none;
  font-size: 16px;
  font-weight: bold;
  color: #e0e0e0;
  margin-left: 1rem;
  text-transform: uppercase;
}
.navigation__link__label {
  font-size: 18px;
  font-weight: bold;
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  letter-spacing: 1px;
  margin-left: 1rem;
}
.navigation__link--vertical {
  background-color: transparent;
  outline: none;
  border: 0;
  color: #d4bfff;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.navigation__link--vertical:hover {
  cursor: pointer;
  color: #fff;
}
.navigation__link--vertical:hover .navigation__link__icon {
  filter: invert(96%) sepia(44%) saturate(0%) hue-rotate(287deg) brightness(103%) contrast(102%);
  transform: scale(1.2);
  transition: transform 0.3s ease-in-out;
}
.navigation__link--vertical:hover > .tooltip {
  opacity: 1;
  transform: translateX(-60px) translateY(-40px);
}
.navigation__link--vertical:hover .navigation__link__text {
  color: #fff;
  transition: color 0.3s ease;
}
.navigation__link--vertical::before {
  position: absolute;
  left: 1rem;
  top: 12px;
  opacity: 0;
  font-size: 12px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
}
.navigation__link--vertical:hover::before {
  opacity: 1;
  transform: translateX(5px);
}

.light-display {
  position: relative;
  display: flex;
  align-items: center;
}
.light-display__total {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid rgba(180, 140, 255, 0.2);
  border-radius: 20px;
  cursor: default;
  background: rgba(180, 140, 255, 0.06);
  transition: border-color 0.2s, background 0.2s;
}
.light-display__total:hover {
  border-color: rgba(180, 140, 255, 0.4);
  background: rgba(180, 140, 255, 0.12);
}
.light-display__icon {
  color: #c9a0ff;
  font-size: 12px;
  line-height: 1;
}
.light-display__value {
  color: #e8d5ff;
  font-size: 13px;
  font-weight: 500;
  min-width: 16px;
  text-align: right;
  letter-spacing: 0.5px;
}
.light-display__breakdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 6, 24, 0.96);
  border: 1px solid rgba(180, 140, 255, 0.2);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 160px;
  z-index: 100;
  pointer-events: none;
}
.light-display__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}
.light-display__row:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.light-display__label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.light-display__amount {
  font-size: 12px;
  color: #e8d5ff;
  font-weight: 500;
}

.mobile__menu__close {
  display: none;
}

.mobile__menu__button {
  display: none;
  position: fixed;
  top: 2vh;
  left: 2vw;
  z-index: 999;
  background: transparent;
  border: none;
  cursor: pointer;
}
.mobile__menu__button img {
  width: 32px;
  height: auto;
}

@media (max-width: 1440px) {
  .navigation__link--vertical:hover .tooltip {
    opacity: 1;
    transform: translateX(-10px) translateY(-40px);
  }
}
@media (max-width: 1024px) {
  .navigation__link--vertical:hover .tooltip {
    opacity: 1;
    transform: translateX(0) translateY(-40px);
  }
}
@media (max-width: 768px) {
  .navigation--vertical {
    transform: translateX(-105%);
    transition: transform 0.3s ease-in-out;
    background-color: rgb(0, 0, 0);
    width: 70vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 13;
  }
  .navigation--vertical .navigation__link__text {
    display: inline-block;
  }
  .navigation__link--vertical {
    justify-content: flex-start;
  }
  .navigation--open {
    transform: translateX(-5%);
  }
  .navigation--open .mobile__menu__button {
    display: none;
  }
  .navigation__list--vertical {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1rem;
    margin-top: 1rem;
  }
  .navigation__list--horizontal {
    width: 90%;
    margin-right: 0;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
  }
  .mobile__menu__button {
    display: block;
  }
  .mobile__menu__close {
    display: block;
    width: 100%;
    text-align: right;
  }
  .light-display__breakdown {
    top: auto;
    bottom: calc(100% + 8px);
  }
}
/*
    form.scss
*/
.form {
  z-index: 10;
  /* ------------------------
     FORM GROUP
  ------------------------ */
  /* ------------------------
     INPUTS
  ------------------------ */
  /* ------------------------
     SEARCH INPUT
  ------------------------ */
  /* ------------------------
     REMEMBER ME (PLASMA)
  ------------------------ */
  /* ✅ CHECKED STATE */
  /* ✨ HOVER */
}
.form__group {
  display: flex;
  flex-direction: column;
  margin: 2rem 0;
  width: 100%;
  justify-content: center;
}
.form__group--remember {
  margin: 1.2rem 0 2rem 0;
  align-items: flex-start;
}
.form__input {
  padding: 15px 10px;
  border: none;
  border-radius: 4px;
  background-color: transparent;
  color: #e0e0e0;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.3);
  margin-bottom: 1rem;
}
.form__input:focus {
  outline: none;
  transition: 0.3s ease;
  box-shadow: 0 3px 10px rgba(200, 170, 255, 0.6);
}
.form__input::placeholder {
  color: #e0e0e0;
  opacity: 0.5;
}
.form__search {
  padding: 10px 40px 10px 15px;
  border: 1px solid #a3a3a3;
  border-radius: 4px;
  background-color: transparent;
  color: #e0e0e0;
  font-size: 18px;
  box-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
  margin: 0 4rem 1rem 4rem;
}
.form__search:focus {
  outline: none;
  transition: 0.3s ease;
  box-shadow: 0 3px 10px rgba(200, 170, 255, 0.6);
}
.form__search__icon {
  position: absolute;
  margin-left: -315px;
  margin-top: 10px;
}
.form__remember {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
  position: relative;
}
.form__remember-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form__remember-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(180, 160, 255, 0.4);
  box-shadow: 0 0 6px rgba(160, 120, 255, 0.35), inset 0 0 4px rgba(255, 255, 255, 0.15);
  position: relative;
  transition: all 0.25s ease;
}
.form__remember-text {
  font-size: 13px;
  letter-spacing: 0.4px;
  color: rgba(235, 235, 255, 0.9);
  text-shadow: 0 0 6px rgba(180, 140, 255, 0.35);
}
.form__remember-input:checked + .form__remember-box {
  background: radial-gradient(circle at top, rgba(210, 190, 255, 0.95), rgba(130, 90, 255, 0.85));
  border-color: rgba(230, 220, 255, 0.95);
  box-shadow: 0 0 10px rgba(190, 160, 255, 0.9), 0 0 18px rgba(130, 90, 255, 0.6);
}
.form__remember-input:checked + .form__remember-box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.9));
}
.form__remember:hover .form__remember-box {
  box-shadow: 0 0 12px rgba(190, 160, 255, 0.7);
}

/*
    buttons.scss
*/
.button {
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  padding: 6px;
  font-size: 18px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(145deg, #5a0fc8, rgba(64, 10, 156, 0.0156862745));
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(90, 15, 200, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transform: perspective(1000px) rotateX(15deg) translateZ(10px);
}
.button--secondary {
  max-width: 250px;
  font-size: 16px;
  padding: 8px 12px;
  z-index: 18;
  margin: 0 auto;
  margin-top: 2rem;
}
.button__text {
  flex-grow: 1;
  text-align: left;
}
.button:hover {
  background: linear-gradient(145deg, #6b1de6, #4a12b8);
  transform: perspective(1000px) rotateX(5deg) translateZ(10px);
  box-shadow: 0 8px 15px rgba(107, 29, 230, 0.7), inset 0 3px 5px rgba(255, 255, 255, 0.3);
}
.button--align {
  position: relative;
  width: 250px;
  height: 30px;
  z-index: 12;
}
.button--back {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  padding-left: 10px;
  height: 30px;
  z-index: 12;
  text-align: center;
}
.button--icon--text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.button__dropdown {
  position: absolute;
  right: 3rem;
  margin-top: 5px;
}
.button__dropdown__content {
  position: absolute;
  background: linear-gradient(145deg, #5a0fc8, #400a9c);
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 10px;
  width: 261px;
  z-index: 1;
  margin-left: 31px;
  margin-top: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  display: block;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.button__dropdown__content.show {
  opacity: 1;
  transform: translateY(0);
}

/*
    slider.scss
*/
.slider {
  position: fixed;
  right: 20vw;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-left: 2rem;
  padding: 1rem;
  z-index: 7;
}
.slider__button {
  z-index: 7;
  font-weight: bold;
  color: #ffffff;
  border-radius: 8px;
  padding: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  color: #ffffff;
  background: linear-gradient(145deg, #5a0fc8, #400a9c);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(90, 15, 200, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transform: perspective(1000px) rotateX(15deg) translateZ(10px);
}
.slider__button:hover {
  background: linear-gradient(145deg, #6b1de6, #4a12b8);
  transform: perspective(1000px) rotateX(5deg) translateZ(10px);
  box-shadow: 0 8px 15px rgba(107, 29, 230, 0.7), inset 0 3px 5px rgba(255, 255, 255, 0.3);
}
.slider__button:active {
  transform: translateY(2px);
}
.slider__button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/*
    interface.scss
*/
.interface {
  background-color: rgba(122, 111, 240, 0.1176470588);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 10px;
}

/*
    settings.scss
*/
.settings__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.settings__label {
  color: #fff;
  font-size: 1.2em;
  font-weight: 600;
}

.settings__switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.settings__switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.settings__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #444;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.5);
}

.settings__slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.settings__switch input:checked + .settings__slider {
  background-color: #7e00ff;
  box-shadow: 0 0 15px #7e00ff;
}

.settings__switch input:checked + .settings__slider:before {
  transform: translateX(30px);
  box-shadow: 0 0 10px rgba(126, 0, 255, 0.8);
}

/*
    icons 
*/
.icon {
  width: 32px;
  height: 32px;
}
.icon--filter {
  filter: invert(40%) sepia(10%) saturate(0%) hue-rotate(287deg) brightness(70%) contrast(70%) drop-shadow(0 0 2px rgba(255, 255, 255, 0.13));
}
.icon--large {
  width: 48px;
  height: 48px;
}
.icon--close {
  width: 32px;
  height: 32px;
  padding-top: 1rem;
  padding-right: 1rem;
}

/*
    flex.scss
*/
.flex {
  display: flex;
  gap: 10px;
}
.flex--between {
  justify-content: space-between;
}
.flex--row {
  flex-direction: row;
}

.dropdown {
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  position: absolute;
  opacity: 0;
  z-index: 12;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}
.dropdown--active {
  opacity: 1;
  visibility: visible;
}
.dropdown--horizontal {
  top: 130%;
  margin-left: -59px;
  transform: translateY(-20px);
}
.dropdown--horizontal:first-child {
  margin-top: 0;
  padding-top: 0;
}
.dropdown--horizontal.dropdown--active {
  transform: translateY(0);
}
.dropdown--horizontal::before {
  content: "";
  position: absolute;
  top: -8px;
  margin-left: 27px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(255, 255, 255, 0.3);
  z-index: 1;
}
.dropdown--horizontal.dropdown--active .dropdown__link, .dropdown--horizontal:not(.dropdown--active) .dropdown__link {
  width: 100%;
  text-align: center;
}
.dropdown--vertical {
  top: 0;
  left: 5rem;
  background-color: rgba(0, 0, 0, 0.4);
  min-width: 12rem;
  transform: translateX(-10px);
}
.dropdown--vertical.dropdown--active {
  transform: translateX(0);
}
.dropdown--vertical .dropdown__link {
  width: 100%;
  text-align: left;
}
.dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dropdown__item {
  margin: 0;
}
.dropdown__title {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e0e0e0;
  text-transform: uppercase;
  pointer-events: none;
  margin-bottom: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.dropdown__title:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.dropdown__link {
  display: block;
  padding: 0.5rem 1rem;
  color: #fff;
  background: transparent;
  border: none;
  font-size: 0.875rem;
  transition: background 0.2s;
}
.dropdown__link:hover {
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.user-dropdown {
  position: absolute;
  top: 130%;
  right: 4%;
  background: rgba(12, 8, 26, 0.85);
  border: 1px solid rgba(143, 0, 255, 0.4);
  box-shadow: 0 0 15px rgba(143, 0, 255, 0.3333333333), 0 0 35px rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(-15px);
  pointer-events: none;
  transition: all 0.25s ease;
  width: 200px;
}
.user-dropdown--active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.user-dropdown__list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  text-align: left;
}
.user-dropdown__label {
  width: 70%;
}
.user-dropdown__icon {
  flex-grow: 4;
  width: 10%;
}
.user-dropdown button {
  display: flex;
  align-items: center;
  text-align: left;
  justify-content: space-between;
  gap: 0.5rem;
  background: transparent;
  border: none;
  color: #ccefff;
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  width: 100%;
  transition: color 0.2s, background 0.3s;
}
.user-dropdown button:hover {
  color: #fff;
  background: rgba(144, 0, 255, 0.1);
  cursor: pointer;
  text-shadow: 0 0 12px #8f00ff, 0 0 22px #00ffff;
}

@media (max-width: 768px) {
  .dropdown--vertical {
    display: none;
  }
}
/*
    tooltip.scss
*/
.tooltip {
  position: absolute;
  transform: translateX(0) translateY(-40px);
  background-color: rgba(0, 0, 0, 0.85);
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: #e0e0e0;
  margin-left: -30px;
  width: 120px;
  padding: 0.2rem 0;
  opacity: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.tooltip--info {
  opacity: 1;
}
.tooltip__text {
  margin: 0;
  font-size: 12px;
  font-weight: bold;
}

/*
pagination.scss
*/
.pagination {
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.pagination__button {
  background: linear-gradient(145deg, #5a0fc8, rgba(64, 10, 156, 0.0156862745));
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(90, 15, 200, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transform: perspective(1000px) rotateX(15deg) translateZ(10px);
  color: #e0e0e0;
  font-size: 1rem;
  padding: 0.75rem 1.25rem;
  margin: 0 0.5rem;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.pagination__button:hover:not(:disabled) {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  transform: translateY(-2px);
}
.pagination__button:active:not(:disabled) {
  transform: translateY(0);
}
.pagination__button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination__button:hover {
  background: linear-gradient(145deg, #6b1de6, #4a12b8);
  transform: perspective(1000px) rotateX(5deg) translateZ(10px);
  box-shadow: 0 8px 15px rgba(107, 29, 230, 0.7), inset 0 3px 5px rgba(255, 255, 255, 0.3);
}
.pagination__text {
  color: #e0e0e0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 500;
  margin: 0 0.75rem;
  user-select: none;
}

/*
    subheaders.scss
*/
.subheader {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  z-index: 10;
}
.subheader__wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.158);
  padding: 5px 1rem 5px 2.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.subheader__icon {
  filter: invert(40%) sepia(10%) saturate(0%) hue-rotate(287deg) brightness(70%) contrast(70%) drop-shadow(0 0 2px rgba(255, 255, 255, 0.368627451));
}

/*
    chips.scss
*/
.chip {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 2px 6px;
  user-select: none;
  background-color: #2c2a4a;
  color: #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 0 1px 2px #7a6ff0;
}
.chip:hover {
  cursor: pointer;
}
.chip:hover .subheader__label {
  color: #ffffff;
}
.chip:hover .subheader__icon {
  filter: invert(96%) sepia(44%) saturate(0%) hue-rotate(287deg) brightness(103%) contrast(102%);
  color: #ffffff;
  transition: filter 0.3s ease-in-out;
}

/*
    transitions.scss
*/
.transition__glitch--overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}
.transition__glitch--strip {
  flex: 1;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(0);
  transform-origin: center;
  will-change: transform, opacity;
  mix-blend-mode: screen;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/*
  overlay.scss
*/
.overlay {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  z-index: 20;
  background: rgba(9, 4, 26, 0.11);
  transition: opacity 0.3s ease-in-out;
  pointer-events: auto;
}
.overlay__content {
  pointer-events: auto;
  margin-bottom: 7vh;
  max-width: 640px;
  width: 90vw;
  text-align: center;
  font-family: "Orbitron", sans-serif;
  color: #fff;
  text-shadow: 0 0 8px #00ffff;
}
.overlay__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0px 0px 12px #8f00ff, 4px 4px 18px rgba(144, 0, 255, 0.6352941176);
  letter-spacing: 2px;
  animation: titlepulse 2.4s ease-in-out infinite;
}
.overlay__text {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  line-height: 1.6;
  user-select: none;
}
.overlay__instruction {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: -0.5rem;
  margin-bottom: 1.2rem;
  font-style: italic;
  color: #00ffff;
  text-shadow: 0 0 6px rgba(0, 255, 255, 0.4);
}
.overlay__buttons-bar {
  pointer-events: auto;
  position: fixed;
  bottom: 2vh;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.2rem;
  z-index: 1001;
}
.overlay__close {
  margin-top: 1.8rem;
  padding: 10px 18px;
  background: #4a00ff;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: 0.2s;
}
.overlay__close:hover {
  background: #6c2aff;
}
.overlay__button {
  background: linear-gradient(90deg, #00ffff, #8f00ff);
  color: #fff;
  border: none;
  width: 90px;
  padding: 0.6rem 1.5rem;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5019607843);
  transition: all 0.25s ease;
}
.overlay__button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 14px #0ff, 0 0 24px #8f00ff;
}
.overlay__button--skip {
  background: rgba(255, 0, 128, 0.75);
  box-shadow: 0 0 10px #ff0088;
}
.overlay--centered, .overlay--auth, .overlay--comingsoon, .overlay--menu, .overlay--loader {
  justify-content: center;
  animation: overlay-fade-in 0.5s ease;
}
.overlay--blurred .overlay__content, .overlay--auth .overlay__content, .overlay--comingsoon .overlay__content {
  background: rgba(0, 0, 0, 0.199);
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 0 2px rgba(0, 255, 255, 0.3333333333), 0 0 5px rgba(143, 0, 255, 0.2666666667), 0 0 10px rgba(0, 255, 255, 0.2);
  backdrop-filter: blur(8px);
}
.overlay[data-interactive=true] {
  pointer-events: none !important;
  background: transparent !important;
  backdrop-filter: none !important;
}
.overlay[data-interactive=true] .overlay__content,
.overlay[data-interactive=true] .overlay__buttons-bar {
  pointer-events: auto !important;
}
.overlay--tutorial {
  animation: overlay-fade-in 0.4s ease;
  padding: 1rem;
}
.overlay--achievements {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(5, 0, 20, 0.2);
  backdrop-filter: blur(2px);
  overflow: hidden;
  z-index: 9999;
}
.overlay--achievements .projector {
  position: absolute;
  bottom: 0;
  width: 180px;
  height: 30px;
  background: rgba(89, 20, 200, 0.1);
  border: 1px solid rgba(120, 70, 255, 0.1);
  box-shadow: 0 0 4px rgba(164, 92, 255, 0.5333333333);
  border-radius: 18px;
  backdrop-filter: blur(2px);
  animation: projector-enter 0.6s ease forwards;
  z-index: 10;
}
.overlay--achievements .projector__beam {
  position: absolute;
  top: -200px;
  left: 50%;
  width: 160px;
  height: 220px;
  transform: translateX(-50%);
  background: linear-gradient(rgba(140, 90, 255, 0.3), rgba(140, 90, 255, 0));
  filter: blur(14px);
  pointer-events: none;
  animation: projector-beam-loop 2s infinite ease-in-out;
}
.overlay--achievements .projector__content {
  animation: content-rise 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  transform-origin: bottom center;
  z-index: 20;
}
.overlay--achievements.closing .projector__content {
  animation: content-fall 0.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.overlay--achievements.closing .projector {
  animation: projector-exit 0.6s ease forwards;
}
.overlay--achievements .achievements-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.overlay--achievements .achievement-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(40, 10, 80, 0.4);
  border: 1px solid rgba(140, 60, 255, 0.4);
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(160, 80, 255, 0.25);
  backdrop-filter: blur(6px);
  z-index: 10000;
}
.overlay--achievements .achievement-card__icon {
  font-size: 32px;
}
.overlay--achievements .achievement-card__title {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}
.overlay--achievements .achievement-card__desc {
  margin: 0;
  color: #ccc;
  font-size: 0.85rem;
}
.overlay--loader {
  z-index: 100;
}
.overlay--menu {
  background: rgba(9, 4, 26, 0.6);
}
.overlay--comingsoon {
  background: rgba(9, 4, 26, 0.3);
}
.overlay--comingsoon .overlay__title {
  font-size: 2.2rem;
  text-shadow: 0 0 12px #8f00ff, 0 0 18px #00ffff;
  user-select: none;
}
.overlay--comingsoon .overlay__text {
  font-size: 1.25rem;
  color: #e0e0e0;
}
.overlay--comingsoon .overlay__instruction {
  font-size: 1rem;
  opacity: 0.9;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.5333333333);
}
.overlay--auth {
  background: rgba(9, 4, 26, 0.3);
}
.overlay--auth .overlay__content {
  max-width: 420px;
  margin-bottom: 15vh;
}
.overlay--auth .overlay__title {
  font-size: 24px;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px #8f00ff, 0 0 15px #00ffff;
  user-select: none;
}

.auth__switch {
  margin-top: 0.25rem;
  font-size: 0.95rem;
  color: #b8eaff;
  text-shadow: 0 0 6px #00ffff;
  user-select: none;
}
.auth__switch a {
  color: #ff33ff;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.12s ease;
}
.auth__switch a:hover, .auth__switch a:focus {
  color: #ffffff;
  transform: translateY(-1px);
  outline: none;
}

@keyframes titlepulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.92);
    opacity: 0.8;
  }
}
@keyframes content-rise {
  from {
    opacity: 0;
    transform: translateY(80px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes content-fall {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(120px) scale(0.85);
  }
}
@keyframes projector-enter {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.7);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes projector-exit {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(40px) scale(0.5);
  }
}
@keyframes projector-beam-loop {
  0%, 100% {
    opacity: 0.45;
    transform: translateX(-50%) scaleY(1);
  }
  50% {
    opacity: 0.75;
    transform: translateX(-50%) scaleY(1.1);
  }
}
@keyframes overlay-fade-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media screen and (max-width: 480px) {
  .overlay--auth .overlay__content {
    width: 70vw;
    margin-bottom: 15vh;
  }
  .overlay--auth .overlay__title {
    font-size: 20px;
  }
}
.asidebar {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 19;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  pointer-events: none;
}
.asidebar__footer {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: flex-end;
  flex-wrap: wrap;
  pointer-events: all;
  animation: fadeUp 0.8s ease-out both;
}
.asidebar__button {
  background: linear-gradient(90deg, rgba(80, 0, 160, 0.9), rgba(255, 0, 255, 0.6));
  border: 1px solid #ff00ff;
  border-radius: 12px;
  color: #fff;
  padding: 10px 20px;
  font-family: "Orbitron", monospace;
  font-size: 12px;
  cursor: pointer;
  text-shadow: 0 0 8px #ff00ff;
  transition: all 0.25s ease;
  box-shadow: 0 0 10px rgba(255, 0, 255, 0.4);
  width: 240px;
  opacity: 0.9;
  backdrop-filter: blur(4px);
  transform: translateY(6px);
  animation: liftIn 0.8s ease-out both;
}
.asidebar__button:hover {
  transform: translateY(0) scale(1.07);
  font-weight: bold;
  box-shadow: 0 0 16px #ff00ff, 0 0 32px #aa33ff;
  opacity: 1;
}
@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(6px) scale(1);
    filter: blur(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 640px) {
  .asidebar {
    right: 0.5rem;
    bottom: 0.5rem;
  }
  .asidebar__button {
    width: 200px;
    font-size: 10px;
    padding: 8px 16px;
    margin-bottom: 0.75rem;
    margin-right: 0.5rem;
    font-weight: 400;
  }
}

@media (max-width: 480px) {
  .asidebar__button {
    width: 80px;
    font-size: 9px;
    padding: 3px 6px;
  }
}
/*
    panel.scss
*/
.panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  border: none;
  border-radius: 4px;
  background-color: transparent;
  color: #e0e0e0;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.8);
  padding: 10px 20px;
  min-width: fit-content;
  overflow: auto;
  height: 250px;
  z-index: 15;
}
.panel::-webkit-scrollbar {
  display: none;
}
.panel__table {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.panel__table thead th {
  font-weight: bold;
  text-align: center;
  text-align: center;
  padding: 5px;
  font-size: 18px;
}
.panel__table tbody tr td {
  text-align: center;
  padding: 5px;
  font-size: 18px;
}
.panel__table tbody tr td input {
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  background-color: transparent;
  color: #e0e0e0;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.3);
}
.panel__table__footer {
  margin-top: 2rem;
}

/*
    note.scss
*/
.note {
  color: #fff;
  font-size: 20px;
  font-family: Orbitron, sans-serif;
  background: rgba(0, 0, 0, 0.6);
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 0 20px #8f8fff;
  z-index: 16;
  min-width: 300px;
}
.note__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
  color: #e0e0e0;
}
.note__message {
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
  color: #a3a3a3;
}

/*
    helper.scss
*/
.helper {
  position: fixed;
  width: 300px;
  height: 300px;
  pointer-events: none;
  z-index: 3000;
}
.helper--bottom--left {
  bottom: 2vh;
  left: 2vw;
}
.helper--bottom--right {
  bottom: 2vh;
  right: 2vw;
}
.helper--top--left {
  top: 2vh;
  left: 2vw;
}
.helper--top--right {
  top: 2vh;
  right: 2vw;
}

/*
    compare.scss
*/
.compare-actions {
  display: flex;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  box-shadow: 0 0 10px #0ff;
}

.compare-button {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.compare-button:hover {
  transform: scale(1.1);
}
.compare-button.focus img {
  filter: drop-shadow(0 0 6px #0ff);
}
.compare-button.remove img {
  filter: drop-shadow(0 0 6px #f00);
}

/* glitch.scss */
.glitch {
  position: relative;
  color: #00ffff;
  text-shadow: 0 0 5px #00ffff, 0 0 15px #ff00ff;
  font-family: "Orbitron", monospace;
  letter-spacing: 1px;
}

/* When active, trigger the flicker and distortions */
.glitch.active {
  animation: glitch-flicker 0.3s linear;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  width: 100%;
  background: transparent;
  overflow: hidden;
  color: inherit;
  opacity: 0; /* default invisible until active */
}

/* Only animate pseudo elements when glitchActive = true */
.glitch.active::before,
.glitch.active::after {
  opacity: 1;
}

.glitch.active::before {
  left: 2px;
  text-shadow: -2px 0 magenta;
  animation: glitch-top 0.3s ease-in-out;
}

.glitch.active::after {
  left: -2px;
  text-shadow: -2px 0 cyan;
  animation: glitch-bottom 0.3s ease-in-out;
}

/* Flicker effect */
@keyframes glitch-flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0.2;
  }
}
/* Random distortions */
@keyframes glitch-top {
  0% {
    clip-path: inset(0 0 80% 0);
  }
  20% {
    clip-path: inset(0 0 30% 0);
    transform: translate(-2px, -2px);
  }
  40% {
    clip-path: inset(0 0 50% 0);
    transform: translate(2px, 2px);
  }
  60% {
    clip-path: inset(0 0 60% 0);
    transform: translate(-1px, 1px);
  }
  80% {
    clip-path: inset(0 0 40% 0);
    transform: translate(1px, -1px);
  }
  100% {
    clip-path: inset(0 0 80% 0);
    transform: none;
  }
}
@keyframes glitch-bottom {
  0% {
    clip-path: inset(80% 0 0 0);
  }
  20% {
    clip-path: inset(30% 0 0 0);
    transform: translate(2px, 2px);
  }
  40% {
    clip-path: inset(50% 0 0 0);
    transform: translate(-2px, -1px);
  }
  60% {
    clip-path: inset(60% 0 0 0);
    transform: translate(1px, -1px);
  }
  80% {
    clip-path: inset(40% 0 0 0);
    transform: translate(-1px, 1px);
  }
  100% {
    clip-path: inset(80% 0 0 0);
    transform: none;
  }
}
/* ================================
   NARRATOR (CONTAINER)
================================ */
.narrator {
  position: fixed;
  bottom: 25px;
  left: 25px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 1500;
}

.narrator--open {
  transform: scale(1.1);
}

.narrator__inner {
  width: 10%;
  height: 10%;
  padding-top: 100px;
  padding-right: 50px;
  bottom: 10px;
  left: 20px;
  background: transparent;
  z-index: 1500;
  user-select: none;
  pointer-events: auto;
  position: absolute;
}

/* ================================
   CORE (GLOWING PROJECTOR ORB)
================================ */
.narrator__core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgb(90, 0, 255) 0%, rgb(40, 0, 120) 40%, rgb(10, 0, 40) 100%);
  box-shadow: 0 0 25px rgba(140, 0, 255, 0.8), 0 0 60px rgba(80, 20, 255, 0.5);
  transition: filter 0.3s ease, transform 0.25s ease;
}

.narrator__core--active {
  filter: drop-shadow(0 0 10px rgb(170, 0, 255));
  animation: narratorCorePulse 1.3s infinite ease-in-out;
}

@keyframes narratorCorePulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.12);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
/* ================================
   RINGS (HOLOGRAM ROTATING RINGS)
================================ */
.narrator__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 32px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(150, 0, 255, 0.3);
  animation: narratorRingSpin 14s linear infinite;
  filter: blur(1px);
  pointer-events: none;
}

.narrator__ring--2 {
  width: 60px;
  height: 24px;
  animation-duration: 12s;
  animation-direction: reverse;
}

@keyframes narratorRingSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* ================================
   BEAM (VERTICAL HOLOGRAM LIGHT)
================================ */
.narrator__beam {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 160px;
  height: 180px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at bottom, rgba(100, 0, 255, 0.45), rgba(130, 0, 255, 0.15), transparent 85%);
  filter: blur(25px);
  opacity: 0.62;
  z-index: -1;
  pointer-events: none;
}

/* ================================
   MENU (RADIAL OPTIONS)
================================ */
.narrator__menu {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* === MENU ITEMS === */
.narrator__menu-item {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
}

.narrator__menu-item button {
  background: rgba(40, 0, 80, 0.8);
  border: 1px solid rgba(140, 0, 255, 0.55);
  color: white;
  font-size: 16px;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s;
}

.narrator__menu-item button:hover {
  transform: scale(1.15);
  background: rgba(90, 0, 255, 0.8);
}

/* --- label under button --- */
.narrator__label {
  margin-top: 4px;
  font-size: 12px;
  color: rgba(220, 200, 255, 0.9);
  text-shadow: 0 0 4px rgba(110, 0, 255, 0.4);
  font-weight: bold;
  background: rgba(0, 0, 0, 0.4);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ================================
   MENU ITEM POSITIONS
================================ */
/* Top */
.narrator__menu-item--top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* Top-right */
.narrator__menu-item--top-right {
  top: 25px;
  right: 25px;
}

/* Right */
.narrator__menu-item--right {
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
}

.auria {
  position: fixed;
  bottom: 140px;
  left: 70px;
  width: 160px;
  height: 250px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px) scale(0.94);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1300;
}

.auria--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hologram model container (Three.js canvas sits here) */
.auria canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  position: relative;
  z-index: 2;
}

/* REMOVE OLD SCANLINES */
.auria__scanlines {
  display: none;
}

/* ---- HOLOGRAM PROJECTOR EFFECT ---- */
/* Soft upward hologram beam behind the avatar */
.auria::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(150, 0, 255, 0.35), rgba(150, 0, 255, 0.1), transparent 85%);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}

/* The circular projector light ("lightbulb") beneath Auria */
.auria__glow {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 70px;
  background: radial-gradient(ellipse at center, rgba(120, 0, 255, 0.6) 0%, rgba(120, 0, 255, 0.25) 35%, rgba(120, 0, 255, 0.05) 70%, transparent 100%);
  filter: blur(25px) brightness(1.2);
  z-index: -1;
  pointer-events: none;
  animation: emitterPulse 3s ease-in-out infinite;
}

/* ---- OPTIONAL: Glow under the 2D image (if fallback) ---- */
.auria__img {
  width: 100%;
  height: auto;
  display: none; /* hidden bcs we now use 3D model */
}

/* Pulsating emitter animation */
@keyframes emitterPulse {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 0.9;
  }
  50% {
    transform: translateX(-50%) scale(1.05);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.9;
  }
}
/*
    response.scss
*/
.auth-message {
  padding: 10px 14px;
  border-radius: 6px;
  margin-top: 12px;
  font-size: 14px;
}

.auth-message--error {
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.4);
  color: #ff6b6b;
}

.auth-message--success {
  background: rgba(0, 255, 80, 0.1);
  border: 1px solid rgba(0, 255, 80, 0.4);
  color: #28ff89;
}

/*
    authorization.scss
*/
.auth-layout {
  position: fixed;
  inset: 0;
  background: #050013;
  overflow: hidden;
  z-index: 99999; /* stays above everything */
  display: flex;
  align-items: center;
  justify-content: center;
}

/*
    layers.scss
*/
/*
    message.scss
*/
.message {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: 14px;
  background: rgba(40, 0, 80, 0.55);
  border: 1px solid rgba(120, 200, 255, 0.25);
  box-shadow: 0 0 25px rgba(0, 150, 255, 0.4), 0 10px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
  color: #b0dfff;
  animation: messageSlideIn 0.35s ease-out;
}

/* SUCCESS MODIFIER */
.message--success {
  border-color: rgba(0, 255, 200, 0.4);
  box-shadow: 0 0 22px rgba(0, 255, 200, 0.4), 0 8px 35px rgba(0, 0, 0, 0.5);
}

/* ICON */
.message__icon {
  width: 26px;
  height: 26px;
  color: #8afcce;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px #53ffdb);
}

/* CONTENT */
.message__content {
  display: flex;
  flex-direction: column;
}

/* TITLE */
.message__title {
  font-weight: 600;
  font-size: 15px;
  color: #e9faff;
  text-shadow: 0 0 6px rgba(100, 200, 255, 0.6);
}

/* SUBTITLE */
.message__subtitle {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 2px;
}

/* CLOSE BUTTON */
.message__close {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #bfeaff;
  opacity: 0.7;
  padding: 4px;
  display: flex;
  align-items: center;
  transition: opacity 0.2s, transform 0.2s;
}

.message__close svg {
  width: 20px;
  height: 20px;
}

.message__close:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ANIMATION */
@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
    universe-boot.scss
*/
.universe-boot {
  position: fixed;
  inset: 0;
  z-index: 999999;
  user-select: none;
  background: radial-gradient(circle at center, #3b1b6a 0%, #120021 70%, #05000c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.universe-boot__core {
  text-align: center;
  color: #e9dcff;
}

.universe-boot__sigil {
  font-size: 72px;
  animation: pulse 2.4s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(180, 120, 255, 0.7));
}

.universe-boot__text {
  margin-top: 1rem;
  font-size: 24px;
  letter-spacing: 2px;
  font-weight: 500;
  animation: textPulse 2.4s ease-in-out infinite;
}

.universe-boot__tip {
  margin-top: 1.5rem;
  font-size: 16px;
  font-style: italic;
  color: #c9a3ff;
  animation: textPulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}
@keyframes textPulse {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
/*
    status.scss
*/
.error {
  color: #ff3860;
  background: transparent;
  border-left: 4px solid #ff3860;
  padding: 5px 10px;
  border-radius: 0.25rem;
  font-weight: 600;
  text-shadow: 0 0 4px #ff3860, 0 0 8px rgba(255, 56, 96, 0.6);
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}

.password-rules {
  list-style: none;
  margin: 0.5rem 0 0 0;
  padding: 0.5rem 1rem;
  background: rgba(7, 7, 10, 0.7);
  border-radius: 0.25rem;
  font-size: 0.875rem;
  color: #a3a3a3;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(-8px);
  max-height: 0;
  overflow: hidden;
  animation: passwordRulesIn 0.5s ease-out forwards;
}
.password-rules li {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
}
.password-rules li .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #a3a3a3;
  margin-right: 0.5rem;
  flex-shrink: 0;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}
.password-rules li.valid {
  color: #00d1b2;
}
.password-rules li.valid .dot {
  background: #00d1b2;
  box-shadow: 0 0 4px #00d1b2;
}

@keyframes passwordRulesIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 200px;
  }
}
/* achievements.scss */
.achievements {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 14;
  user-select: none;
  pointer-events: none;
}

/* CARD */
.achievements__card {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.achievements__card--ghost {
  opacity: 0.35;
}

.achievements__core {
  width: 240px;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: #ccfaff;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.75rem;
  border: 1px solid #00ffff;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.55);
  text-align: left;
}

.achievements__core h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #00ffff;
}

.achievements__core p {
  margin-top: 0.4rem;
  line-height: 1.4;
}

.achievements__core span {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #00ffff;
  display: block;
}

/* PROJECTOR */
.achievements__projector {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, #7ffcff, rgba(0, 255, 255, 0.1333333333));
  box-shadow: 0 0 40px #7ffcff;
  z-index: 2;
}

/* LIGHT CONE */
.achievements::before {
  content: "";
  position: absolute;
  bottom: 90px;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at bottom, rgba(127, 252, 255, 0.22), transparent 70%);
  pointer-events: none;
}

/* CONTROLS */
.achievements__controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 60px;
  z-index: 20;
}

.achievements__controls .section__button {
  transform: scale(1.3);
  margin: 0 10vw;
  margin-bottom: 7vh;
}

.achievements__controls .section__button:hover {
  transform: scale(1.45);
}

/*
    breadcrumbtrail.scss - Styles for the breadcrumb trail component
*/
.breadcrumb-trail {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 24px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2), inset 0 0 20px rgba(0, 255, 255, 0.05);
  transition: all 0.3s ease;
}
.breadcrumb-trail:hover {
  background: rgba(0, 0, 0, 0.75);
  border-color: rgba(0, 255, 255, 0.5);
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.3), inset 0 0 20px rgba(0, 255, 255, 0.1);
}
.breadcrumb-trail span {
  color: #00ffff;
  user-select: none;
  transition: all 0.2s ease;
}
.breadcrumb-trail span.separator {
  opacity: 0.5;
  cursor: default;
}
.breadcrumb-trail span.clickable {
  cursor: pointer;
  opacity: 0.7;
}
.breadcrumb-trail span.clickable:hover {
  opacity: 1;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
  transform: translateY(-1px);
}
.breadcrumb-trail span.clickable:active {
  transform: translateY(0);
}
.breadcrumb-trail span.active {
  opacity: 1;
  font-weight: bold;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
  cursor: default;
}

/* Responsive */
@media (max-width: 768px) {
  .breadcrumb-trail {
    font-size: 0.75rem;
    padding: 10px 16px;
    gap: 6px;
  }
}
.galaxy-labels-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  user-select: none;
  z-index: 10;
}

.galaxy-label {
  position: absolute;
  transform: translate(-50%, -100%);
  pointer-events: none;
  user-select: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.galaxy-label__name {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: var(--label-color);
  text-shadow: 0 0 12px var(--label-color), 0 0 24px var(--label-color);
  white-space: nowrap;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .galaxy-label__name {
    font-size: 1.2rem;
  }
}
.galaxy-label__description {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  margin-top: 0.4rem;
  letter-spacing: 0.05em;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .galaxy-label__description {
    font-size: 0.75rem;
  }
}
.galaxy-label__hint {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.8rem;
  color: #ffffff;
  text-align: center;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  animation: pulseHint 2s ease-in-out infinite;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .galaxy-label__hint {
    font-size: 0.7rem;
  }
}
.galaxy-label__hint-icon {
  display: inline-block;
  animation: bounceRight 1.5s ease-in-out infinite;
}
.galaxy-label--visible {
  opacity: 1;
  visibility: visible;
}
.galaxy-label--hovered {
  transform: translate(-50%, calc(-100% - 8px));
}
.galaxy-label--hovered .galaxy-label__name {
  text-shadow: 0 0 20px var(--label-color), 0 0 40px var(--label-color);
  filter: brightness(1.3);
}
.galaxy-label--hovered .galaxy-label__description {
  opacity: 1;
}
.galaxy-label--centered .galaxy-label__name {
  text-shadow: 0 0 20px var(--label-color), 0 0 40px var(--label-color);
  filter: brightness(1.2);
}
.galaxy-label--centered .galaxy-label__description {
  opacity: 1;
}

@keyframes pulseHint {
  0%, 100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
@keyframes bounceRight {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
/*
    landing.scss - FULLY RESPONSIVE
*/
.landing-page {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.universe-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.universe-background canvas {
  pointer-events: none;
}

.universe-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.landing-content {
  position: relative;
  z-index: 10;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 2rem;
}

.landing-logo {
  text-align: center;
  animation: fadeInDown 1s ease;
}
.landing-logo h1 {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: bold;
  color: #00ffff;
  text-shadow: 0 0 30px rgba(0, 255, 255, 0.8), 0 0 60px rgba(0, 255, 255, 0.4);
  margin-bottom: 0.5rem;
  user-select: none;
}
.landing-logo .tagline {
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  user-select: none;
}

.landing-slider {
  position: relative;
  width: 100%;
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation: fadeIn 1s ease 0.3s both;
}

.slider-content {
  flex: 1;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 280px;
  height: 340px;
  max-height: 340px;
  user-select: none;
}

.slide-icon {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.slide-title {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.3rem, 4vw, 2rem);
  color: #00ffff;
  margin-bottom: 1rem;
}

.slide-description {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.slider-nav {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  color: #00ffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.slider-nav:hover {
  background: rgba(0, 255, 255, 0.2);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}
.slider-nav i {
  font-size: 1.2rem;
}

.slider-dots {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  padding: 0;
}
.dot.active {
  width: 12px;
  height: 12px;
  background: #00ffff;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}
.dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.5);
}

.landing-cta {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
  width: 100%;
  max-width: 600px;
}

.btn {
  padding: 16px 40px;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  transition: all 0.3s ease;
  font-family: "Rajdhani", sans-serif;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, #00ffff, #0088ff);
  color: #000;
  border: none;
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
}
.btn--secondary {
  background: transparent;
  color: #00ffff;
  border: 2px solid #00ffff;
}
.btn--secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
/* Tablets & Small Laptops (768px - 1024px) */
@media (max-width: 1024px) {
  .landing-content {
    padding: 1.5rem;
    gap: 1.5rem;
  }
  .slider-content {
    padding: 1.5rem;
    min-height: 260px;
  }
}
/* Mobile Landscape & Small Tablets (481px - 767px) */
@media (max-width: 767px) {
  .landing-content {
    padding: 1rem;
    gap: 1.5rem;
  }
  .landing-logo {
    margin-bottom: 0;
  }
  .landing-slider {
    flex-direction: row;
    gap: 0.8rem;
    max-width: 100%;
  }
  .slider-nav {
    width: 40px;
    height: 40px;
  }
  .slider-nav i {
    font-size: 1rem;
  }
  .slider-content {
    padding: 1.5rem 1rem;
    min-height: 240px;
    max-height: 280px;
  }
  .slide-icon {
    margin-bottom: 0.8rem;
  }
  .slide-title {
    margin-bottom: 0.8rem;
  }
  .slider-dots {
    gap: 0.6rem;
    margin-top: 1rem;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
  .dot.active {
    width: 10px;
    height: 10px;
  }
  .slide-description {
    margin-bottom: 1rem;
    font-size: 0.95rem;
  }
  .landing-cta {
    gap: 0.8rem;
    max-width: 100%;
  }
  .landing-cta .btn {
    flex: 1;
    min-width: 140px;
    padding: 0.8rem 1.5rem;
  }
}
/* Mobile Portrait (320px - 480px) */
@media (max-width: 480px) {
  .landing-content {
    gap: 1rem;
    padding: 1rem 0.8rem;
  }
  .landing-logo h1 {
    font-size: 2rem;
  }
  .landing-logo .tagline {
    font-size: 0.85rem;
  }
  .landing-slider {
    gap: 0.5rem;
  }
  .slider-nav {
    width: 35px;
    height: 35px;
  }
  .slider-content {
    padding: 1.2rem 0.8rem;
    min-height: 220px;
    max-height: 260px;
  }
  .slide-icon {
    font-size: 2.5rem;
  }
  .slide-title {
    font-size: 1.2rem;
  }
  .slide-description {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .slider-dots {
    gap: 0.5rem;
    margin-top: 0.8rem;
  }
  .dot {
    width: 8px;
    height: 8px;
  }
  .dot.active {
    width: 8px;
    height: 8px;
  }
  .landing-cta {
    flex-direction: column;
    gap: 0.8rem;
    max-width: 100%;
    padding: 0 0.5rem;
  }
  .landing-cta .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
  }
}
/* Very Small Screens (< 320px) */
@media (max-width: 319px) {
  .landing-logo h1 {
    font-size: 1.5rem;
  }
  .slider-content {
    min-height: 200px;
  }
  .slide-title {
    font-size: 1.1rem;
  }
  .slide-description {
    font-size: 0.8rem;
  }
}
/* lumina-codex.scss */
.lumina-codex {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: 14;
  user-select: none;
  pointer-events: none;
}

/* ============================================
   📺 HOLOGRAM CARD
   ============================================ */
.lumina-codex__card {
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.lumina-codex__core {
  width: 320px;
  padding: 1.5rem 1.8rem;
  border-radius: 12px;
  background: rgba(10, 5, 30, 0.85);
  backdrop-filter: blur(10px);
  color: #e0f7ff;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  border: 1px solid rgba(153, 102, 255, 0.6);
  box-shadow: 0 0 20px rgba(153, 102, 255, 0.4), 0 0 40px rgba(153, 102, 255, 0.2), inset 0 0 30px rgba(153, 102, 255, 0.05);
  text-align: left;
}

/* Icon */
.lumina-codex__icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(153, 102, 255, 0.6));
}

/* Title */
.lumina-codex__core h3 {
  margin: 0 0 0.8rem 0;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  color: #9966ff;
  text-shadow: 0 0 15px rgba(153, 102, 255, 0.8);
}

/* Content */
.lumina-codex__core p {
  margin: 0.8rem 0;
  line-height: 1.6;
  color: #d0e7ff;
}

/* Light Value Badge */
.lumina-codex__badge {
  display: inline-block;
  padding: 0.3rem 1rem;
  margin: 0.5rem 0 1rem;
  background: rgba(255, 204, 0, 0.15);
  border: 1px solid rgba(255, 204, 0, 0.5);
  border-radius: 20px;
  color: #ffcc00;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.3);
}

/* Note (subtle italic line below main content) */
.lumina-codex__note {
  margin: 0.8rem 0 0;
  font-size: 0.78rem;
  font-style: italic;
  color: rgba(153, 102, 255, 0.6);
  border-left: 2px solid rgba(153, 102, 255, 0.3);
  padding-left: 0.6rem;
}

/* Badge variant — planned/coming soon (muted) */
.lumina-codex__badge--soon {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.35);
  box-shadow: none;
}

/* Badge variant — active (existing badge style, just explicit) */
.lumina-codex__badge--active {
  background: rgba(100, 220, 150, 0.1);
  border-color: rgba(100, 220, 150, 0.4);
  color: #80ffaa;
  box-shadow: 0 0 10px rgba(100, 220, 150, 0.2);
}

/* Tier Range */
.lumina-codex__tier-range {
  display: inline-block;
  padding: 0.3rem 1rem;
  margin: 0.5rem 0 1rem;
  background: rgba(153, 102, 255, 0.15);
  border: 1px solid rgba(153, 102, 255, 0.5);
  border-radius: 20px;
  color: #bb88ff;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  box-shadow: 0 0 10px rgba(153, 102, 255, 0.3);
}

/* Examples List */
.lumina-codex__examples {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.lumina-codex__examples li {
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
  font-size: 0.85rem;
  color: #b8d8ff;
}

.lumina-codex__examples li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #9966ff;
  font-weight: bold;
}

/* Footer */
.lumina-codex__footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(153, 102, 255, 0.3);
  text-align: center;
}

.slide-indicator {
  font-size: 0.75rem;
  color: rgba(153, 102, 255, 0.8);
  font-weight: 500;
}

/* ============================================
   💡 PROJECTOR (Bottom Light Source)
   ============================================ */
.lumina-codex__projector {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 45px;
  border-radius: 50%;
  background: radial-gradient(circle, #bb88ff, rgba(153, 102, 255, 0.2));
  box-shadow: 0 0 50px rgba(153, 102, 255, 0.8), 0 0 100px rgba(153, 102, 255, 0.4);
  z-index: 2;
}

/* ============================================
   🔦 LIGHT CONE (Hologram Beam Effect)
   ============================================ */
.lumina-codex::before {
  content: "";
  position: absolute;
  bottom: 90px;
  left: 50%;
  width: 800px;
  height: 800px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at bottom, rgba(153, 102, 255, 0.15), transparent 70%);
  pointer-events: none;
}

/* ============================================
   🎮 CONTROLS
   ============================================ */
.lumina-codex__controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 60px;
  z-index: 20;
}

.lumina-codex__controls .section__button {
  transform: scale(1.3);
  margin: 0 10vw;
  margin-bottom: 7vh;
  pointer-events: auto;
}

.lumina-codex__controls .section__button:hover {
  transform: scale(1.45);
}

.lumina-codex__controls .section__button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.lumina-codex__controls .section__button:disabled:hover {
  transform: scale(1.3);
}

/* ============================================
   🌟 RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .lumina-codex__core {
    width: 280px;
    padding: 1.2rem 1.5rem;
  }
  .lumina-codex__core h3 {
    font-size: 1.5rem;
  }
  .lumina-codex__icon {
    font-size: 2.5rem;
  }
  .lumina-codex__controls {
    gap: 40px;
  }
  .lumina-codex__controls .section__button {
    margin: 0 5vw;
  }
}
/* ============================================================
   PROVING GROUNDS — CSS additions
   Add to your main stylesheet alongside existing lumina-codex styles
   ============================================================ */
/* ─── Teal theme modifier for lumina-codex shell ─────────────────────────── */
.lumina-codex--teal .lumina-codex__projector--teal {
  background: radial-gradient(ellipse at center, rgba(0, 204, 170, 0.18) 0%, transparent 70%);
}

.lumina-codex__card--teal {
  border-color: rgba(0, 204, 170, 0.35);
  box-shadow: 0 0 0 1px rgba(0, 204, 170, 0.15), 0 0 40px rgba(0, 204, 170, 0.08), inset 0 1px 0 rgba(0, 204, 170, 0.1);
}

.lumina-codex__card--teal h3 {
  color: #00ddbb;
}

.lumina-codex__card--teal .lumina-codex__icon {
  filter: drop-shadow(0 0 8px rgba(0, 204, 170, 0.5));
}

/* Selector card needs more height for the trial list */
.lumina-codex__card--selector {
  max-height: 80vh;
  overflow-y: auto;
}

/* ─── Trial selector list ─────────────────────────────────────────────────── */
.proving-trials__list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
  margin-top: 0.5rem;
}

.proving-trials__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(0, 204, 170, 0.06);
  border: 1px solid rgba(0, 204, 170, 0.2);
  border-radius: 8px;
  color: #e0e0ff;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-align: left;
}

.proving-trials__item:hover:not(:disabled) {
  background: rgba(0, 204, 170, 0.12);
  border-color: rgba(0, 204, 170, 0.45);
}

.proving-trials__item--done {
  opacity: 0.5;
  cursor: default;
}

.proving-trials__item--done .proving-trials__item-icon {
  color: #00ddbb;
}

.proving-trials__item-icon {
  font-size: 1rem;
  color: rgba(0, 204, 170, 0.6);
  flex-shrink: 0;
}

.proving-trials__item-label {
  flex: 1;
}

.proving-trials__item-reward {
  font-size: 0.75rem;
  color: #00ccaa;
  font-weight: 500;
  white-space: nowrap;
}

.proving-trials__item--done .proving-trials__item-reward {
  color: rgba(0, 204, 170, 0.5);
}

/* ─── Progress bar ────────────────────────────────────────────────────────── */
.proving-trials__progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 0.5rem;
}

.proving-trials__topic {
  font-size: 0.75rem;
  color: #00ccaa;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.proving-trials__counter {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.proving-trials__bar {
  width: 100%;
  height: 2px;
  background: rgba(0, 204, 170, 0.15);
  border-radius: 2px;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.proving-trials__bar-fill {
  height: 100%;
  background: #00ccaa;
  border-radius: 2px;
  transition: width 0.3s ease;
}

/* ─── Question text ───────────────────────────────────────────────────────── */
.proving-trials__question {
  font-size: 1rem;
  color: #e0e0ff;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-weight: 500;
}

/* ─── Answer options ──────────────────────────────────────────────────────── */
.proving-trials__options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.proving-trials__option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.5;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s, border-color 0.15s;
}

.proving-trials__option:hover:not(:disabled) {
  background: rgba(0, 204, 170, 0.08);
  border-color: rgba(0, 204, 170, 0.3);
}

.proving-trials__option--correct {
  background: rgba(0, 204, 100, 0.12) !important;
  border-color: rgba(0, 204, 100, 0.5) !important;
  color: #88ffcc !important;
}

.proving-trials__option--wrong {
  background: rgba(255, 80, 80, 0.1) !important;
  border-color: rgba(255, 80, 80, 0.4) !important;
  color: rgba(255, 150, 150, 0.8) !important;
}

.proving-trials__option--dimmed {
  opacity: 0.35;
  cursor: default;
}

.proving-trials__opt-marker {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background: rgba(0, 204, 170, 0.1);
  border: 1px solid rgba(0, 204, 170, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: #00ccaa;
  margin-top: 1px;
}

/* ─── Next / Submit button ────────────────────────────────────────────────── */
.proving-trials__next {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  background: rgba(0, 204, 170, 0.15);
  border: 1px solid rgba(0, 204, 170, 0.4);
  border-radius: 8px;
  color: #00ddbb;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.proving-trials__next:hover:not(:disabled) {
  background: rgba(0, 204, 170, 0.25);
  border-color: rgba(0, 204, 170, 0.7);
}

.proving-trials__next:disabled {
  opacity: 0.3;
  cursor: default;
}

.proving-trials__next--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.5);
}

.proving-trials__next--ghost:hover {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

/* ─── Score display ───────────────────────────────────────────────────────── */
.proving-trials__score {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin: 0.75rem 0 1rem;
}

.proving-trials__score-num {
  font-size: 2.5rem;
  font-weight: 300;
  color: #00ddbb;
  line-height: 1;
}

.proving-trials__score-sep {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.3);
}

.proving-trials__score-total {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ─── Light reward badge ──────────────────────────────────────────────────── */
.proving-trials__reward-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  background: rgba(0, 204, 170, 0.12);
  border: 1px solid rgba(0, 204, 170, 0.35);
  border-radius: 20px;
  color: #00ddbb;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ─── Signal Scan countdown ───────────────────────────────────────────────── */
.signal-scan__countdown {
  font-size: 2rem;
  font-weight: 300;
  color: #00ddbb;
  letter-spacing: 0.1em;
  font-variant-numeric: tabular-nums;
  margin: 0.25rem 0 0.5rem;
}

/* ─── Light Toast ─────────────────────────────────────────────────────────── */
.light-toast {
  position: fixed;
  top: 4.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.1rem;
  background: rgba(10, 12, 30, 0.92);
  border: 1px solid rgba(0, 204, 170, 0.45);
  border-radius: 24px;
  color: #00ddbb;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.light-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.light-toast__icon {
  color: #00ffcc;
  font-size: 0.9rem;
}

/* ============================================================
   FORGE BUILD AREA — forge-build CSS
   Add to your main stylesheet alongside existing forge-generator styles
   ============================================================ */
/* ─── Layout overlay — card anchored right, model free on left ───────────── */
.forge-build__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 2rem 2rem 1rem;
  pointer-events: none;
  z-index: 10;
}

@media (max-width: 700px) {
  .forge-build__overlay {
    width: 100%;
    padding: 5rem 1rem 5rem 1rem;
    align-items: flex-end;
  }
}
/* ─── Card ───────────────────────────────────────────────────────────────── */
.forge-build__card {
  pointer-events: auto;
  width: 100%;
  max-width: 380px;
  background: rgba(6, 4, 18, 0.92);
  border: 1px solid rgba(255, 150, 0, 0.28);
  border-radius: 14px;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 0 1px rgba(255, 140, 0, 0.07), 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 100, 0, 0.05);
  overflow: hidden;
}

.forge-build__card--complete {
  border-color: rgba(255, 210, 0, 0.45);
  box-shadow: 0 0 0 1px rgba(255, 200, 0, 0.12), 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 50px rgba(255, 180, 0, 0.08);
}

.forge-build__card-inner {
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  color: rgba(230, 220, 255, 0.85);
}

/* ─── Icon ───────────────────────────────────────────────────────────────── */
.forge-build__icon {
  font-size: 1.6rem;
  color: rgba(255, 160, 0, 0.55);
  line-height: 1;
  margin-bottom: 0.1rem;
}

.forge-build__icon--lit {
  color: #ffcc00;
  filter: drop-shadow(0 0 10px rgba(255, 200, 0, 0.55));
  animation: forge-build-pulse 2.5s ease-in-out infinite;
}

@keyframes forge-build-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}
/* ─── Typography ─────────────────────────────────────────────────────────── */
.forge-build__stage-badge {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 160, 0, 0.5);
  margin-bottom: -0.2rem;
}

.forge-build__title {
  font-size: 1.2rem;
  font-weight: 400;
  color: #ffcc88;
  letter-spacing: 0.015em;
  margin: 0;
  line-height: 1.3;
}

.forge-build__desc {
  font-size: 0.845rem;
  color: rgba(210, 200, 255, 0.6);
  line-height: 1.65;
  margin: 0;
}

.forge-build__note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  line-height: 1.5;
}

.forge-build__note--hint {
  color: rgba(255, 160, 0, 0.3);
  letter-spacing: 0.04em;
}

/* ─── Meta row ───────────────────────────────────────────────────────────── */
.forge-build__meta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.28);
  flex-wrap: wrap;
}

.forge-build__meta-sep {
  opacity: 0.35;
}

.forge-build__meta-reward {
  color: #ffaa33;
  font-weight: 500;
}

/* ─── Stage list (inactive) ──────────────────────────────────────────────── */
.forge-build__stage-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  margin: 0.1rem 0 0.3rem;
}

.forge-build__stage-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.42rem 0.7rem;
  background: rgba(255, 150, 0, 0.04);
  border: 1px solid rgba(255, 150, 0, 0.09);
  border-radius: 7px;
  font-size: 0.8rem;
}

.forge-build__stage-num {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(255, 150, 0, 0.09);
  border: 1px solid rgba(255, 150, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.67rem;
  color: rgba(255, 150, 0, 0.6);
  flex-shrink: 0;
}

.forge-build__stage-name {
  flex: 1;
  color: rgba(210, 200, 255, 0.65);
}

.forge-build__stage-dur {
  font-size: 0.72rem;
  color: rgba(255, 150, 0, 0.4);
}

/* ─── Progress dots ──────────────────────────────────────────────────────── */
.forge-build__dots {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.1rem;
}

.forge-build__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 150, 0, 0.12);
  border: 1px solid rgba(255, 150, 0, 0.18);
  transition: all 0.3s;
}

.forge-build__dot--done {
  background: rgba(255, 160, 0, 0.55);
  border-color: rgba(255, 160, 0, 0.75);
}

.forge-build__dot--active {
  background: rgba(255, 160, 0, 0.25);
  border-color: rgba(255, 200, 0, 0.6);
  box-shadow: 0 0 5px rgba(255, 160, 0, 0.35);
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.forge-build__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.52rem 1.15rem;
  border-radius: 8px;
  font-size: 0.845rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, transform 0.1s;
  border: 1px solid transparent;
  margin-top: 0.25rem;
}

.forge-build__btn:active {
  transform: scale(0.97);
}

/* Primary — amber */
.forge-build__btn--primary {
  background: rgba(255, 145, 0, 0.12);
  border-color: rgba(255, 145, 0, 0.38);
  color: #ffcc88;
}

.forge-build__btn--primary:hover {
  background: rgba(255, 145, 0, 0.22);
  border-color: rgba(255, 145, 0, 0.65);
}

/* Ignite — brighter, electric feel for Stage 2 */
.forge-build__btn--ignite {
  background: rgba(255, 180, 0, 0.13);
  border-color: rgba(255, 180, 0, 0.45);
  color: #ffe066;
  letter-spacing: 0.02em;
}

.forge-build__btn--ignite:hover {
  background: rgba(255, 180, 0, 0.24);
  border-color: rgba(255, 200, 0, 0.7);
  box-shadow: 0 0 12px rgba(255, 180, 0, 0.15);
}

/* Collect — golden, completion moment */
.forge-build__btn--collect {
  background: rgba(255, 210, 0, 0.13);
  border-color: rgba(255, 210, 0, 0.48);
  color: #ffee77;
  font-size: 0.9rem;
}

.forge-build__btn--collect:hover {
  background: rgba(255, 210, 0, 0.24);
  border-color: rgba(255, 220, 0, 0.75);
  box-shadow: 0 0 16px rgba(255, 200, 0, 0.18);
}

/* Secondary — ghost */
.forge-build__btn--secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
}

.forge-build__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.65);
}

/* ─── Gate section ───────────────────────────────────────────────────────── */
.forge-build__gate {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.85rem 0.95rem;
  background: rgba(255, 140, 0, 0.04);
  border: 1px dashed rgba(255, 140, 0, 0.17);
  border-radius: 9px;
  width: 100%;
}

.forge-build__gate p {
  font-size: 0.8rem;
  color: rgba(210, 200, 255, 0.5);
  margin: 0;
}

.forge-build__gate-link {
  font-size: 0.845rem;
  color: #ffaa33;
  border: 1px solid rgba(255, 145, 0, 0.3);
  border-radius: 6px;
  padding: 0.28rem 0.75rem;
  text-decoration: none;
  transition: background 0.18s;
}

.forge-build__gate-link:hover {
  background: rgba(255, 140, 0, 0.1);
}

/* ─── Timer ──────────────────────────────────────────────────────────────── */
.forge-build__timer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0 0.1rem;
}

.forge-build__countdown {
  font-size: 1.9rem;
  font-weight: 300;
  color: #ffaa33;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

/* ─── Status (waiting / complete state) ──────────────────────────────────── */
.forge-build__status {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.5rem 0 0.1rem;
}

.forge-build__status--win {
  padding: 0.75rem 0.9rem;
  background: rgba(255, 200, 0, 0.06);
  border: 1px solid rgba(255, 200, 0, 0.18);
  border-radius: 9px;
  width: 100%;
}

.forge-build__status--fail {
  padding: 0.75rem 0.9rem;
  background: rgba(255, 60, 60, 0.06);
  border: 1px solid rgba(255, 60, 60, 0.18);
  border-radius: 9px;
  width: 100%;
  color: rgba(255, 150, 150, 0.75);
  font-size: 0.845rem;
}

.forge-build__status-icon {
  font-size: 1.2rem;
  color: rgba(255, 160, 0, 0.45);
}

/* ─── Reward badge ───────────────────────────────────────────────────────── */
.forge-build__reward-badge {
  display: inline-block;
  padding: 0.32rem 0.9rem;
  background: rgba(255, 205, 0, 0.1);
  border: 1px solid rgba(255, 205, 0, 0.35);
  border-radius: 20px;
  color: #ffee77;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-top: 0.25rem;
}

/* ─── Charge mechanic ────────────────────────────────────────────────────── */
.forge-build__charge-arena {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  width: 100%;
  padding: 0.25rem 0;
}

.forge-build__charge-timer {
  font-size: 1.4rem;
  font-weight: 300;
  color: #ffaa33;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.forge-build__charge-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.forge-build__charge-meter {
  position: relative;
  width: 30px;
  height: 120px;
  background: rgba(255, 140, 0, 0.07);
  border: 1px solid rgba(255, 140, 0, 0.2);
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
}

.forge-build__charge-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, #ff7700, #ffdd00);
  border-radius: 0 0 5px 5px;
  transition: height 0.05s linear;
  min-height: 2px;
}

.forge-build__charge-target {
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 220, 0, 0.4);
  border-radius: 1px;
}

.forge-build__charge-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.forge-build__charge-pct {
  font-size: 1rem;
  color: #ffaa33;
  font-variant-numeric: tabular-nums;
  font-weight: 300;
}

.forge-build__charge-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 140, 0, 0.1);
  border: 2px solid rgba(255, 140, 0, 0.3);
  color: #ffaa33;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.08s, transform 0.08s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.45;
}

@media (hover: none) {
  .forge-build__charge-btn {
    opacity: 1;
    width: 80px;
    height: 80px;
  }
}
.forge-build__charge-btn:active {
  background: rgba(255, 140, 0, 0.22);
  transform: scale(0.9);
}

.forge-build__kbd {
  display: inline-block;
  padding: 0.08rem 0.32rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 3px;
  font-size: 0.72rem;
  font-family: monospace;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── Dev bar ────────────────────────────────────────────────────────────── */
.forge-build__dev-bar {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 100;
}

.forge-build__dev-btn {
  padding: 0.38rem 0.9rem;
  border-radius: 7px;
  font-size: 0.78rem;
  cursor: pointer;
  background: #5a0fc8;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(90, 15, 200, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transform: perspective(1000px) rotateX(15deg) translateZ(10px);
}

.forge-build__dev-btn--skip {
  color: #ffcc00;
}

.forge-build__dev-btn--skip:hover {
  background: linear-gradient(145deg, #6b1de6, #4a12b8);
  transform: perspective(1000px) rotateX(5deg) translateZ(10px);
  box-shadow: 0 8px 15px rgba(107, 29, 230, 0.7), inset 0 3px 5px rgba(255, 255, 255, 0.3);
}

.forge-build__dev-btn--reset {
  color: rgba(255, 231, 231, 0.7490196078);
}

.forge-build__dev-btn--reset:hover {
  background: linear-gradient(145deg, #6b1de6, #4a12b8);
  transform: perspective(1000px) rotateX(5deg) translateZ(10px);
  box-shadow: 0 8px 15px rgba(107, 29, 230, 0.7), inset 0 3px 5px rgba(255, 255, 255, 0.3);
}

/* ============================================================
   NOTIFICATION BELL — add to navigation.scss or main stylesheet
   Matches the existing light-display and navigation aesthetic
   ============================================================ */
/* ─── Nav item wrapper ───────────────────────────────────────────────────── */
.navigation__notifications {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 1.25rem;
}

/* ─── Bell button ────────────────────────────────────────────────────────── */
.notif-bell {
  position: relative;
  display: flex;
  align-items: center;
}

.notif-bell__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(180, 140, 255, 0.06);
  border: 1px solid rgba(180, 140, 255, 0.2);
  border-radius: 20px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  padding: 0;
}

.notif-bell__btn:hover,
.notif-bell__btn--open {
  border-color: rgba(180, 140, 255, 0.4);
  background: rgba(180, 140, 255, 0.12);
}

.notif-bell__icon {
  font-size: 14px;
  line-height: 1;
  filter: grayscale(0.3);
  transition: filter 0.2s;
}

.notif-bell__btn:hover .notif-bell__icon,
.notif-bell__btn--open .notif-bell__icon {
  filter: grayscale(0);
}

/* ─── Unread badge ───────────────────────────────────────────────────────── */
.notif-bell__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: #7b4ee0;
  border: 1.5px solid rgba(10, 6, 24, 0.9);
  border-radius: 10px;
  font-size: 9px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
}

/* ─── Dropdown panel ─────────────────────────────────────────────────────── */
.notif-bell__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  background: rgba(10, 6, 24, 0.97);
  border: 1px solid rgba(180, 140, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(180, 140, 255, 0.06);
  backdrop-filter: blur(16px);
  z-index: 200;
  overflow: hidden;
}

/* ─── Panel header ───────────────────────────────────────────────────────── */
.notif-bell__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.notif-bell__header-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(200, 180, 255, 0.55);
}

.notif-bell__mark-all {
  font-size: 11px;
  color: rgba(180, 140, 255, 0.55);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}

.notif-bell__mark-all:hover {
  color: rgba(180, 140, 255, 0.9);
}

/* ─── Notification list ──────────────────────────────────────────────────── */
.notif-bell__list {
  max-height: 340px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(180, 140, 255, 0.15) transparent;
}

.notif-bell__list::-webkit-scrollbar {
  width: 4px;
}

.notif-bell__list::-webkit-scrollbar-thumb {
  background: rgba(180, 140, 255, 0.15);
  border-radius: 2px;
}

/* ─── Empty state ────────────────────────────────────────────────────────── */
.notif-bell__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 2rem 1rem;
  color: rgba(255, 255, 255, 0.2);
}

.notif-bell__empty-icon {
  font-size: 1.4rem;
  color: rgba(180, 140, 255, 0.2);
}

.notif-bell__empty p {
  font-size: 12px;
  margin: 0;
}

/* ─── Notification row ───────────────────────────────────────────────────── */
.notif-bell__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.15s;
  position: relative;
}

.notif-bell__row:last-child {
  border-bottom: none;
}

.notif-bell__row--unread {
  background: rgba(180, 140, 255, 0.04);
}

.notif-bell__row--clickable {
  cursor: pointer;
}

.notif-bell__row--clickable:hover {
  background: rgba(180, 140, 255, 0.08);
}

.notif-bell__row-icon {
  font-size: 14px;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.notif-bell__row-body {
  flex: 1;
  min-width: 0;
}

.notif-bell__row-title {
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(230, 215, 255, 0.85);
  line-height: 1.4;
  margin-bottom: 2px;
}

.notif-bell__row--unread .notif-bell__row-title {
  color: #e8d5ff;
}

.notif-bell__row-msg {
  font-size: 11.5px;
  color: rgba(200, 185, 240, 0.45);
  line-height: 1.45;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notif-bell__row-time {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.02em;
}

/* ─── Row action buttons (dot + delete) ──────────────────────────────────── */
.notif-bell__row-actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.15s;
}

.notif-bell__row:hover .notif-bell__row-actions {
  opacity: 1;
}

/* Unread dot button */
.notif-bell__row-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7b4ee0;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.15s;
  flex-shrink: 0;
}

.notif-bell__row-dot:hover {
  background: #9b6ef0;
}

/* Delete button */
.notif-bell__row-delete {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.2);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: color 0.15s, background 0.15s;
}

.notif-bell__row-delete:hover {
  color: rgba(255, 100, 100, 0.8);
  background: rgba(255, 60, 60, 0.08);
}

/* ─── Panel footer ───────────────────────────────────────────────────────── */
.notif-bell__footer {
  padding: 8px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
}

.notif-bell__view-all {
  font-size: 11px;
  color: rgba(180, 140, 255, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  letter-spacing: 0.04em;
  transition: color 0.15s;
}

.notif-bell__view-all:hover {
  color: rgba(180, 140, 255, 0.9);
}

/* ─── Mobile adjustments ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .notif-bell__panel {
    position: fixed;
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 16px 16px 0 0;
    max-height: 70vh;
  }
  .notif-bell__list {
    max-height: calc(70vh - 100px);
  }
}
/*
─── CSS additions for the full-page view ────────────────────────────────────────
Add to notifications.css
*/
/*
.notif-page__card {
  width: min(560px, 92vw) !important;
  max-height: 80vh;
  overflow: hidden;
}

.notif-page__core {
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.notif-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 0.25rem;
  width: 100%;
}

.notif-page__header h3 { margin: 0; }

.notif-page__mark-all {
  font-size: 11px;
  color: rgba(180, 140, 255, 0.55);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.15s;
}
.notif-page__mark-all:hover { color: rgba(180, 140, 255, 0.9); }

.notif-page__list {
  overflow-y: auto;
  max-height: calc(80vh - 120px);
  scrollbar-width: thin;
  scrollbar-color: rgba(180, 140, 255, 0.15) transparent;
  width: 100%;
}

.notif-page__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2.5rem 0;
}

.notif-page__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  width: 100%;
}
.notif-page__row:last-child { border-bottom: none; }
.notif-page__row--unread { background: rgba(180, 140, 255, 0.03); border-radius: 8px; padding: 12px 8px; }
.notif-page__row--clickable { cursor: pointer; }
.notif-page__row--clickable:hover { background: rgba(180, 140, 255, 0.07); border-radius: 8px; padding: 12px 8px; }

.notif-page__row-icon { font-size: 16px; margin-top: 2px; flex-shrink: 0; width: 20px; text-align: center; }
.notif-page__row-body { flex: 1; min-width: 0; }
.notif-page__row-title { font-size: 13.5px; font-weight: 500; color: rgba(230, 215, 255, 0.8); margin-bottom: 3px; }
.notif-page__row--unread .notif-page__row-title { color: #e8d5ff; }
.notif-page__row-msg { font-size: 12px; color: rgba(200, 185, 240, 0.45); line-height: 1.45; margin-bottom: 4px; }
.notif-page__row-meta { display: flex; gap: 0.6rem; align-items: center; }
.notif-page__row-type { font-size: 10.5px; color: rgba(180, 140, 255, 0.35); text-transform: uppercase; letter-spacing: 0.06em; }
.notif-page__row-time { font-size: 10.5px; color: rgba(255, 255, 255, 0.18); }

.notif-page__row-actions { display: flex; gap: 4px; flex-shrink: 0; }
.notif-page__btn-read {
  width: 24px; height: 24px; border-radius: 6px;
  background: rgba(180, 140, 255, 0.08); border: 1px solid rgba(180, 140, 255, 0.2);
  color: rgba(180, 140, 255, 0.6); font-size: 12px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s;
}
.notif-page__btn-read:hover { background: rgba(180, 140, 255, 0.18); color: #c9a0ff; }

.notif-page__btn-delete {
  width: 24px; height: 24px; border-radius: 6px;
  background: none; border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.2); font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.notif-page__btn-delete:hover { background: rgba(255, 60, 60, 0.08); color: rgba(255, 100, 100, 0.8); border-color: rgba(255, 60, 60, 0.2); }
*/
/*
    landing.scss
*/
/*
    feautures.scss
*/
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 3rem 2rem;
  background-color: hsl(240, 17.6470588235%, -1.6666666667%);
}
.features__item {
  flex: 1 1 calc(33.33% - 2rem);
  max-width: 300px;
  background-color: #2c2a4a;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}
.features__item:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}
.features__item__icon {
  font-size: 2rem;
  color: #7a6ff0;
  margin-bottom: 1rem;
}
.features__item__title {
  font-size: 1.5rem;
  color: #e0e0e0;
  margin-bottom: 0.5rem;
}
.features__item__description {
  font-size: 1rem;
  color: #a3a3a3;
}

/*
    hero.scss
*/
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  /*    background-image: url("/assets/void-empty.jpg");
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;   */
  position: relative;
  overflow: hidden;
  pointer-events: none;
}
.hero__content {
  z-index: 1;
  margin: 10% 20%;
  transform-style: preserve-3d; /* 3D omogućen */
}
.hero__title {
  font-size: 64px;
  font-weight: bold;
  color: #e0e0e0;
  text-shadow: 0 0 5px rgba(127, 17, 224, 0.582);
  margin-bottom: 1rem;
}
.hero__subtitle {
  font-size: 24px;
  color: #a3a3a3;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  margin-bottom: 2rem;
}
.hero__button {
  cursor: pointer;
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  background: linear-gradient(145deg, #5a0fc8, #400a9c);
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(90, 15, 200, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.2);
  transform: perspective(1000px) rotateX(15deg) translateZ(10px);
}
.hero__button:hover {
  background: linear-gradient(145deg, #6b1de6, #4a12b8);
  /* Kada hoveraš, još više se podiže prema korisniku */
  transform: perspective(1000px) rotateX(5deg) translateZ(10px);
  box-shadow: 0 8px 15px rgba(107, 29, 230, 0.7), inset 0 3px 5px rgba(255, 255, 255, 0.3);
}
.hero__footer {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  line-height: 1.5;
  color: #a3a3a3;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.hero__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}
.hero__search {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  z-index: 10;
}
.hero__search__wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero__search__icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  opacity: 0.6;
}
.hero__search__input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 16px;
  outline: none;
}
.hero__search__input:focus {
  border-color: #7f11e0;
  background-color: rgba(0, 0, 0, 0.7);
}
.hero__search__input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/*
    layouts.scss
*/
.layout {
  z-index: 4;
}

/*
    overrides.scss
*/
[data-rk] .ju367vb6 {
  background: linear-gradient(145deg, #5a0fc8, rgba(64, 10, 156, 0.815));
}