/* background */

html {
  box-sizing: border-box;
  scroll-behavior: auto;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  min-height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Outfit', 'Inter', 'Satoshi', 'Space Grotesk', Arial, sans-serif;
  font-variant-numeric: lining-nums oldstyle-nums proportional-nums tabular-nums slashed-zero;
  color: rgba(15, 15, 15, 0);
  
  cursor: auto;
  border: none;
}

.main-content {
  flex: 1;
}

div.background {
  background: #000000;
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  transition: transform 0.3s ease-in-out, opacity 0.5s ease-in-out, background-image 0.5s ease-in-out;
}

div.background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 1;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  draggable: false;
}

.glass-container > *,
.about-container > *,
.about-bg > * {
    pointer-events: auto;
}

.volume-btn {
  cursor: pointer !important;
}

.tooltip {
  position: absolute;
  top: 50%;
  left: -13px;
  transform: translateY(-50%) translateX(-8px);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0s ease, transform 0s ease;
}

.volume-container {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 500;
  padding: 0 16px;
  cursor: default;
  pointer-events: auto;
  background: transparent;
  border-radius: 200px;
  border: 1px solid rgba(255, 255, 255, 0);
  width: auto;
  min-width: 100px;
  height: 52px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.volume-container:hover {
  border-color: rgba(255, 255, 255, 0.07);
}

.volume-container > * {
  pointer-events: auto;
}

.volume-btn {
  background: none;
  border: none;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #ffffff;
  z-index: 100;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  pointer-events: pointer !important;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.volume-icon {
  position: absolute;
  width: 30px;
  height: 30px;
  transition: opacity 0.3s ease;
  opacity: 1;
  cursor: pointer !important;
  pointer-events: none;
}

#mute-icon {
  opacity: 0;
}

#unmute-icon {
  opacity: 1;
}

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 0;
  height: 8px;
  background: transparent;
  border-radius: 5px;
  outline: none;
  transition: transform 0.3s ease-in-out, width 0.3s ease-in-out, opacity 0.2s ease-in-out;
  transform: translateX(0);
  opacity: 0;
  position: relative;
  overflow: visible;
  cursor: pointer;
  pointer-events: auto;
}

.volume-container:hover .volume-slider {
  will-change: transform, width, opacity;
}

.volume-container:not(:hover) .volume-slider {
  will-change: auto;
}

.volume-container:hover .volume-slider:not(.force-hide) {
  opacity: 1;
  width: 150px;
}

.volume-slider.force-hide {
  opacity: 0;
  width: 0;
  pointer-events: none;
}

.volume-slider:hover:not(.force-hide) {
  opacity: 1;
}

.volume-slider:focus {
  opacity: 1;
  width: 150px;
}

.volume-slider::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  height: 8px;
  border-radius: 5px;
  background: transparent;
}

.volume-slider::-moz-range-track {
  height: 8px;
  border-radius: 5px;
  background: transparent;
  border: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 0;
  height: 0;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px;
}

.volume-slider::-moz-range-thumb {
  width: 0;
  height: 0;
  background: transparent;
  cursor: pointer;
  border: none;
}

.volume-slider::-moz-range-progress {
  background: transparent;
}

.volume-label {
  font-size: 1rem;
  color: #ffffff;
  margin-left: 5px;
  user-select: none;
  transition: opacity 16s ease-in-out 8s, visibility 16s ease-in-out 8s;
  opacity: 0;
  padding: 0 10px;
  visibility: hidden;
  cursor: text;
  pointer-events: auto;
}

.volume-container:hover .volume-label:not(.force-hide) {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.volume-label.force-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 16s ease-in-out 8s, visibility 16s ease-in-out 8s;
  pointer-events: none;
}

.volume-label.editing {
  opacity: 0;
  pointer-events: none;
}

.volume-display {
  position: relative;
  min-width: 50px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s ease-in-out 0.3s, opacity 0.5s ease-in-out 0.3s;
  transform: translateX(0);
  opacity: 0;
}

.volume-container:hover .volume-display:not(.force-hide) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.volume-display.force-hide {
  opacity: 0;
  transform: translateX(0);
  transition: transform 0.5s ease-in-out 0.3s, opacity 0.5s ease-in-out 0.3s;
}

.volume-input {
  display: none;
  font-family: 'Inter', sans-serif;
  width: 50px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: #ffffff;
  font-size: 0.9rem;
  text-align: center;
  outline: none;
  padding: 0 10px;
  margin: 0 15px;
  opacity: 0;
}

.volume-input.editing {
  opacity: 1;
  pointer-events: auto;
}

.volume-input::-webkit-inner-spin-button,
.volume-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.volume-input[type=number] {
  -moz-appearance: textfield;
}

.volume-input:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.volume-container:hover .volume-input:not(.force-hide) {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.volume-input.force-hide {
  opacity: 0;
  transition: transform 0.5s ease-in-out 0.3s, opacity 0.5s ease-in-out 0.3s;
}


/* terminal */

.terminal-container {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 800px;
  max-height: 500px;
  background: rgb(30, 30, 30);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  z-index: 500;
  font-family: 'JetBrains Mono', monospace;
  display: none;
  flex-direction: column;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.terminal-container.visible {
  display: flex;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.terminal-container.closing {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

.terminal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 16px;
  flex-shrink: 0;
}

.terminal-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.25),
              inset 0 -1px 1px rgba(0,0,0,0.25);
}

.dot-red {
  background: rgb(255, 95, 86);
}

.dot-yellow {
  background: rgb(255, 189, 46);
}

.dot-green {
  background: rgb(39, 201, 63);
}

.terminal-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  pointer-events: none;
}

.terminal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.3;
  transition: opacity 0.2s ease;
  z-index: 1;
}

.terminal-close:hover {
  opacity: 1;
}

.terminal-close svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

.terminal-output {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-height: 380px;
  scrollbar-width: auto;
  scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
  padding: 16px;
  padding-bottom: 8px;
  transition: scrollbar-width 0.2s ease;
}

.terminal-output::-webkit-scrollbar {
  width: 6px;
}

.terminal-output::-webkit-scrollbar-thumb {
  background: rgb(255, 255, 255);
}

.terminal-output::-webkit-scrollbar-thumb:hover {
  background: rgb(255, 255, 255);
}

.terminal-line {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  word-break: break-all;
}

.terminal-line.bright {
  color: rgba(255, 255, 255, 0.95);
}

.terminal-line.dim {
  color: rgba(255, 255, 255, 0.5);
}

.terminal-line.muted {
  color: rgba(255, 255, 255, 0.25);
}

.terminal-line.success {
  color: rgb(40, 202, 66);
}

.terminal-bright {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.terminal-dim {
  color: rgba(255, 255, 255, 0.2);
}

.terminal-highlight {
  color: #ffbd2e;
  font-weight: 600;
}

.terminal-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  flex-shrink: 0;
}

.terminal-prompt {
  font-size: 0.78rem;
  color: rgb(128, 128, 128);
  white-space: nowrap;
  flex-shrink: 0;
  font-weight: 600;
}

.terminal-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: rgb(255, 255, 255);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem;
  caret-color: rgb(255, 255, 255);
}

.terminal-input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

#terminal-file-input {
  display: none;
}

.terminal-toggle {
  position: fixed;
  bottom: 40px; 
  right: 40px; 
  left: auto;
  width: 42px;
  height: 42px;
  background: rgb(8, 8, 8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: none; 
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 299;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: scale(0.8);
  transition: border-color 0.1s ease,
              opacity 0.1s ease,
              transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden; 
}

.terminal-toggle.visible {
  display: flex;
  opacity: 1;
  transform: scale(1);
}

.terminal-toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  border-radius: 10px;
}

.terminal-toggle:hover::before {
  left: 0;
  border-color: rgb(255, 255, 255);
}

.terminal-toggle:hover svg {
  color: rgb(0, 0, 0);
}

.terminal-toggle svg {
  width: 18px;
  height: 18px;
  color: rgb(255, 255, 255);
  position: relative;
  z-index: 199;
  transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

@media (max-width: 768px) {
  .terminal-container {
    width: calc(100vw - 2rem);
    right: 1rem;
    bottom: 1rem;
  }

  .terminal-toggle {
    right: 1.25rem;
    bottom: 1.25rem;
  }
}


/* intro */

body.noscroll {
  overflow: hidden !important;
  height: 100vh;
  position: fixed;
  width: 100%;
}

.intro-screen {
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1);
  cursor: default;
  pointer-events: auto;
  opacity: 1;
  will-change: opacity;
}

.intro-screen.fade-out {
  opacity: 0;
  pointer-events: none;
  will-change: auto;
}

.intro-message {
  color: rgb(255, 255, 255);
  font-size: 2.7rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.04em;
  text-shadow: 1px 0px 3px #ffffff;
  user-select: none;
  font-family: 'Outfit', sans-serif;
  position: relative;
  z-index: 3;
  cursor: text;
  pointer-events: auto;
}

.intro-right,
.intro-left {
  position: fixed;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  height: auto;
  max-height: 100vw;
  z-index: 2;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  transition: bottom 0.65s cubic-bezier(.4, 0, .2, 1);
}

.intro-right {
  right: 0;
}

.intro-left {
  left: 0;
}

.cursor {
  color: #ffffff;
  animation: fadeCur 1s infinite ease-in-out;
}

@keyframes fadeCur {
  0%   { opacity: 0; }
  50%  { opacity: 1; }
  100% { opacity: 0; }
}

@media (max-width: 1400px) {
  .intro-right,
  .intro-left {
    height: 35vw;
    bottom: 0;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
    transition: bottom 0.65s cubic-bezier(.4, 0, .2, 1);
  }
}


/* marquee */

.tech-marquee-background {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 71%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 1;
  background: #000000;
  box-shadow: 0 -1px 0px rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  transform: translate(-50%, -50%) rotate(-15deg) scale(1.5);
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.tech-marquee-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 10%,
    rgba(0, 0, 0, 0.85) 25%,
    rgba(0, 0, 0, 0.7) 40%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.7) 60%,
    rgba(0, 0, 0, 0.85) 75%,
    rgba(0, 0, 0, 0.4) 90%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 2;
}

.tech-marquee-row {
  display: inline-flex;
  white-space: nowrap;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  z-index: 1;
  will-change: transform;
}

.tech-marquee-row-wrapper {
  overflow: hidden;
  width: 100%;
}

.tech-marquee-row span {
  margin-right: 2rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #262626;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s ease-in-out, transform 0.3s ease-in-out;
  pointer-events: auto;
  user-select: none;
}

.tech-marquee-row[data-direction="left"] {
  animation: marqueeLeft 75s linear infinite;
}

.tech-marquee-row[data-direction="right"] {
  animation: marqueeRight 75s linear infinite;
}

.tech-marquee-highlight {
  animation: marqueeRight 30s linear infinite !important;
  z-index: 1;
}

.left-tech-marquee-highlight {
  animation: marqueeLeft 15s linear infinite !important;
  z-index: 1;
}

.tech-marquee-row.paused {
  animation-play-state: paused !important;
}

.tech-marquee-highlight span,
.left-tech-marquee-highlight span {
  color: #676767;
  font-weight: 700;
}

.tech-marquee-row span.hovered,
.tech-marquee-highlight span.hovered,
.left-tech-marquee-highlight span.hovered {
  color: rgba(255, 255, 255, 1);
  font-weight: 900 !important;
  transform: scale(1);
  pointer-events: auto;
  cursor: pointer !important;
}

@keyframes marqueeLeft {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@keyframes marqueeRight {
  0%   { transform: translate3d(-50%, 0, 0); }
  100% { transform: translate3d(0, 0, 0); }
}


/* navbar */

.navbar {
  position: fixed;
  top: 50%;
  left: 2rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  background: transparent;
  filter: drop-shadow(0 0 26px rgba(0, 0, 0, 1))
          drop-shadow(0 0 26px rgba(0, 0, 0, 1))
          drop-shadow(0 0 26px rgba(0, 0, 0, 1))
          drop-shadow(0 0 26px rgba(0, 0, 0, 1));
  border: none;
  pointer-events: all;
  cursor: default;
  z-index: 500;
  width: auto;
}

.navbar-menu {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-link {
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 1rem;
  cursor: pointer !important;
  pointer-events: all;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.navbar-link:hover,
.navbar-link.active {
  color: #ffffff;
}

@media (max-width: 768px) {
  .navbar {
    bottom: auto;
    top: 18%;
    left: 1rem;
    transform: none;
    flex-direction: column;
    width: auto;
  }

  .navbar-menu {
    flex-direction: column;
    gap: 2rem;
  }

  .navbar-link {
    font-size: 1rem;
    padding: 0.5rem 0.8rem;
  }
}

@media (max-width: 555px) {
  .navbar {
    display: none;
  }
}

@media (max-width: 300px) {
  .navbar {
    display: none;
  }
}


/* discord */

.glass-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 500px;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
  pointer-events: none;
}

.glass-panel {
  display: flex;
  position: relative;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  gap: 2rem;
  padding: 0 2rem;
  width: 650px;
  max-width: 999px;
  height: 150px;
  border-radius: 20px;
  box-sizing: border-box;
  margin-bottom: 15vh;
  background: linear-gradient(
    135deg,
    rgba(121, 121, 121, 0.13),
    rgba(200, 16, 47, 0.13),
    rgba(1, 32, 105, 0.13),
    rgba(39, 39, 39, 0.13)
  );
  border: 3px solid rgba(0, 0, 0, 0);
  border-top: none;
  border-bottom: none;
  z-index: 11;
  overflow: visible;
  pointer-events: auto;
  isolation: isolate;
  transition: box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out, background 0.3s ease-in-out;
}

.glass-panel > * {
  position: relative;
  z-index: 11;
  margin-top: 0;
  margin-bottom: 0;
}

.glass-panel.status-online {
  border-color: #43b581;
  background: linear-gradient(
    135deg,
    rgba(121, 121, 121, 0.13),
    rgba(200, 16, 47, 0.13),
    rgba(1, 32, 105, 0.13),
    rgba(39, 39, 39, 0.13),
    rgba(67, 181, 129, 0.10)
  );
}

.glass-panel.status-idle {
  border-color: #faa61a;
  background: linear-gradient(
    135deg,
    rgba(121, 121, 121, 0.13),
    rgba(200, 16, 47, 0.13),
    rgba(1, 32, 105, 0.13),
    rgba(39, 39, 39, 0.13),
    rgba(250, 166, 26, 0.10)
  );
}

.glass-panel.status-dnd {
  border-color: #f04747;
  : linear-gradient(
    135deg,
    rgba(121, 121, 121, 0.13),
    rgba(200, 16, 47, 0.13),
    rgba(1, 32, 105, 0.13),
    rgba(39, 39, 39, 0.13),
    rgba(240, 71, 71, 0.10)
  );
}

.glass-panel.status-offline,
.glass-panel.status-invisible {
  border-color: #747f8d;
  background: linear-gradient(
    135deg,
    rgba(121, 121, 121, 0.13),
    rgba(200, 16, 47, 0.13),
    rgba(1, 32, 105, 0.13),
    rgba(39, 39, 39, 0.13),
    rgba(116, 127, 141, 0.10)
  );
}

.avatar-wrapper {
  position: relative;
  flex-shrink: 0;
  margin: 0;
  left: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.avatar-decoration {
  position: absolute;
  width: 120%;
  height: 120%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  pointer-events: none;
  z-index: 2;
  display: none;
}

.discord-status-dot {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 100%;
  bottom: 5px;
  right: 5px;
  z-index: 3;
  outline: 5px solid rgb(0 0 0);
  background: rgb(0 0 0);
}

.username-badge-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
  flex: 1;
  min-width: 0;
}

.discord-username {
  font-size: 2.3rem;
  font-weight: 700;
  color: rgb(255, 255, 255);
  letter-spacing: 0.01em;
  position: relative;
  cursor: text;
  pointer-events: auto;
  line-height: 1;
  flex-shrink: 0;
}

.badge-bubble {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px 16px;
  border: 2.5px solid #ffffff;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  border-top: none;
  border-right: none;
  border-left: none;
  flex-shrink: 0;
}

.badge-icons {
  position: relative;
  display: inline-block;
  align-items: center;
  isolation: isolate;
}

.badge-icons svg {
  position: relative;
  width: 1.3rem;
  height: 1.3rem;
  color: rgb(255, 255, 255);
  display: block;
  cursor: default;
}

.badge-icons .textBubble,
.badge-icons #textBubble {
  font-family: 'Outfit', sans-serif;
  font-weight: bold;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  padding: 9px 15px;
  border-radius: 13px;
  display: inline-flex;
  background: rgb(19, 19, 19);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgb(255, 255, 255);
  font-size: 0.80rem;
  opacity: 0;
  pointer-events: auto;
  transition: opacity 0.2s ease-in-out;
  z-index: 3;
  text-align: center;
  white-space: nowrap;
}

.badge-icons svg:hover ~ .textBubble,
.badge-icons svg:hover ~ #textBubble {
  opacity: 1;
}

@media (max-width: 768px) {
  .glass-container {
    padding: 2rem 1rem;
    height: auto;
    min-height: 400px;
  }

  .glass-panel {
    flex-direction: column;
    width: 100%;
    max-width: calc(100% - 2rem);
    margin: 2rem auto;
    padding: 2rem 1.5rem;
    height: auto;
    gap: 1.5rem;
  }

  .avatar-wrapper {
    margin: 0 auto 0.5rem auto;
    width: 80px;
    height: 80px;
  }

  .username-badge-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .discord-username {
    font-size: 1.75rem;
    text-align: center;
  }

  .badge-bubble {
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px 12px;
  }
}

@media (max-width: 540px) {
  .glass-panel {
    max-width: calc(100% - 1.5rem);
    margin: 1.5rem auto;
    padding: 1.5rem 1rem;
  }

  .discord-username {
    font-size: 1.5rem;
  }
}

@media (max-width: 400px) {
  .glass-panel {
    max-width: calc(100% - 1rem);
    margin: 1rem auto;
    padding: 1.25rem 0.75rem;
  }

  .avatar-wrapper {
    width: 70px;
    height: 70px;
  }

  .discord-status-dot {
    width: 15px;
    height: 15px;
  }

  .discord-username {
    font-size: 1.35rem;
  }
}

@media (max-width: 180px) {
  .badge-bubble {
    display: none;
  }
}


/* combined widgets */

.widget-stack-container {
  display: flex;
  width: 100vw;
  justify-content: center;
  margin-top: -190px;
  margin-bottom: 10rem;
  position: relative;
  z-index: 5;
  pointer-events: none;
}

.widget-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 650px;
  gap: 0;
  position: relative;
  pointer-events: auto;
}

#activity-name,
#activity-details,
#activity-state,
#activity-elapsed,
#activity-off-status,
#song-name,
#artist-name,
#time-display,
#off-status,
.reconnecting-text,
.activity-label {
  cursor: text;
}


/* activity */

#activity-widget {
  display: flex;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 90px;
  border-radius: 20px 20px 0 0;
  box-sizing: border-box;
  padding: 20px 34px;
  background: linear-gradient(
    135deg,
    rgba(121, 121, 121, 0.13),
    rgba(200, 16, 47, 0.13),
    rgba(1, 32, 105, 0.13),
    rgba(39, 39, 39, 0.13)
  );
  border: 3px solid rgba(0, 0, 0, 0);
  border-left: none;
  border-right: none;
  border-bottom: none;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease-in-out,
              background 0.3s ease-in-out,
              max-height 0.45s cubic-bezier(.4,0,.2,1),
              opacity 0.35s cubic-bezier(.4,0,.2,1),
              padding 0.4s cubic-bezier(.4,0,.2,1),
              min-height 0.4s cubic-bezier(.4,0,.2,1);
  max-height: 0;
  min-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}

#activity-widget.visible {
  max-height: 200px;
  min-height: 90px;
  opacity: 1;
  padding-top: 20px;
  padding-bottom: 20px;
  pointer-events: auto;
}

#activity-widget.activity-active {
  border-color: rgb(181, 186, 193);
}

#activity-widget.activity-inactive {
  border-color: #747f8d;
  justify-content: center;
}

#activity-off-status {
  display: flex;
  width: 38%;
  text-align: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.39);
  font-style: italic;
}

#activity-widget > * {
  position: relative;
  z-index: 3;
}

.activity-icon-wrapper {
  display: none;
  position: relative;
  flex-shrink: 0;
}

#activity-icon {
  width: 67px;
  height: 67px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.activity-small-icon {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  bottom: -4px;
  right: -4px;
  object-fit: cover;
  display: none;
  z-index: 4;
  background: #1e1e1e;
  outline: 2px solid rgba(0, 0, 0, 0.5);
}

.activity-icon-fallback {
  width: 67px;
  height: 67px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.activity-icon-fallback svg {
  width: 28px;
  height: 28px;
  color: rgba(255, 255, 255, 0.4);
}

.activity-info {
  display: none;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  overflow: hidden;
  gap: 2px;
}

.activity-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

#activity-name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#activity-details {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
}

#activity-state {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
}

#activity-elapsed {
  font-size: 0.9em;
  color: rgb(67, 181, 129);
  margin-top: 4.4px;
  display: none;
  font-variant-numeric: lining-nums;
}

.widget-divider {
  width: 100%;
  height: 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 0;        
  display: block; 
  transition: opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.widget-divider.visible {
  opacity: 1;
}


/* spotify */

#spotify-widget {
  display: flex;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 90px;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 20px 34px;
  background: linear-gradient(
    135deg,
    rgba(121, 121, 121, 0.13),
    rgba(200, 16, 47, 0.13),
    rgba(1, 32, 105, 0.13),
    rgba(39, 39, 39, 0.13)
  );
  border: 3px solid rgba(0, 0, 0, 0);
  border-top: none;
  border-right: none;
  border-left: none;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  z-index: 5;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out,
              border-color 0.3s ease-in-out,
              background 0.3s ease-in-out,
              border-radius 0.45s cubic-bezier(.4,0,.2,1),
              max-height 0.45s cubic-bezier(.4,0,.2,1),
              opacity 0.35s cubic-bezier(.4,0,.2,1);
  max-height: 0;
  opacity: 0;         
  overflow: hidden;
  pointer-events: none;
}

#spotify-widget:not(.hidden) {
  max-height: 300px;
  opacity: 1;          
}

#spotify-widget.has-activity {
  border-radius: 0 0 20px 20px;
}

#spotify-widget.hidden {
  opacity: 0;
  pointer-events: none;
  max-height: 0;
}

#spotify-widget.active {
  border-color: #1db954 !important;
}

#spotify-widget.inactive {
  border-color: #747f8d !important;
  justify-content: center !important;
}

#spotify-widget.reconnecting {
  border-color: #faa61a !important;
}

#spotify-widget > * {
  position: relative;
  z-index: 3;
  margin-top: 0;
  margin-bottom: 0;
}

#spotify-widget #album-art {
  width: 67px;
  height: 67px;
  border-radius: 8px;
  margin-right: 0;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

#spotify-widget .song-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  overflow: hidden;
}

#spotify-widget #song-name {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 2px;
}

#spotify-widget #artist-name {
  font-size: 0.85rem;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#spotify-widget .progress-container {
  width: 100%;
  background: transparent;
  height: 4px;
  border-radius: 4px;
  margin-top: 5px;
  overflow: hidden;
}

#spotify-widget #progress-bar {
  background: #ffffff;
  height: 100%;
  width: 0%;
  transition: width 0.2s linear;
  will-change: width;
}

#spotify-logo {
  display: none !important;
  width: 40px;
  height: 40px;
  opacity: 0.4;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.time-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

#time-display {
  font-size: 0.9em;
  margin-top: 4.4px;
  color: #ffffff;
  font-variant-numeric: lining-nums;
}

.reconnecting-spinner {
  position: relative;
  left: 0;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 4px solid rgba(255, 255, 255, 0);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 20;
}

.reconnecting-text {
  display: none;
  position: relative;
  font-size: 1.1rem;
  font-style: italic;
  text-align: center;
  z-index: 20;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  background: linear-gradient(90deg, #ffffff 0%, transparent 10%, #ffffff 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: blink 1.4s ease-in-out infinite, swipe 2.5s linear infinite;
}

#spotify-widget.reconnecting .reconnecting-spinner,
#spotify-widget.reconnecting .reconnecting-text {
  display: block;
}

#spotify-widget.reconnecting #off-status,
#spotify-widget.reconnecting #album-art,
#spotify-widget.reconnecting .song-info {
  display: none !important;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

@keyframes swipe {
  0%   { background-position: 100% 0%; }
  100% { background-position: -300% 0%; }
}

#spotify-widget.reconnecting {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

#activity-widget.activity-inactive {
  justify-content: center;
}

#activity-widget.activity-inactive .off-status-text {
  width: 37%;
  text-align: center;
  justify-content: center;
}

.off-status-text {
  position: relative;
  width: 37%;
  display: flex;
  text-align: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffffff;
  border: 3px #747f8d;
  font-style: italic;
  cursor: pointer;
  pointer-events: auto;
  z-index: 10;
}

#spotify-widget #off-status {
  position: relative;
  width: 42% !important;
  flex: none !important;
  width: auto;
  display: none;
  text-align: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.39);
  font-style: italic;
  cursor: text;
  pointer-events: auto;
  z-index: 10;
}

@media (max-width: 768px) {
  .widget-stack-container {
    width: 100%;
    margin-top: 0;
    margin-bottom: 3rem;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .widget-stack {
    width: 100%;
    max-width: calc(100% - 2rem);
    margin: 0 auto;
    align-items: stretch;
  }

  #activity-widget {
    width: 100%;
    min-height: 90px;
    box-sizing: border-box;
    padding: 1.25rem 1rem;
    border-radius: 20px 20px 0 0;
  }

  #activity-widget.visible {
    min-height: 90px;
  }

  #activity-icon {
    width: 59px;
    height: 59px;
  }

  .activity-icon-fallback {
    width: 59px;
    height: 59px;
  }

  #activity-name {
    font-size: 1rem;
  }

  .widget-divider {
    width: 100%;
  }

  #spotify-widget {
    width: 100%;
    box-sizing: border-box;
    flex-direction: row;
    min-height: 90px;
    height: auto;
    padding: 1.25rem 1rem;
    gap: 16px;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
  }

  #spotify-widget.has-activity {
    border-radius: 0 0 20px 20px;
  }

  #spotify-widget #album-art {
    width: 59px;
    height: 59px;
    flex-shrink: 0;
    margin-right: 0;
  }

  #spotify-widget .song-info {
    flex: 1;
    min-width: 0;
    overflow: hidden;
  }

  #spotify-widget #song-name,
  #spotify-widget #artist-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  #spotify-widget #song-name {
    font-size: 1rem;
  }

  #spotify-widget #artist-name {
    font-size: 0.85rem;
  }

  #spotify-widget .progress-container {
    margin-top: 4px;
  }

  #time-display {
    font-size: 0.9rem;
  }

  #spotify-widget #off-status {
    font-size: 1.1rem !important;
    flex: 1;
    min-width: 0;
    white-space: normal;
    text-align: center;
    word-break: break-word;
    max-width: 100%;
    padding: 0;
  }

  #spotify-logo {
    display: none !important;
    width: 32px;
    height: 32px;
  }

  #activity-widget .off-status-text {
    font-size: 1.1rem !important;
  }

  #spotify-widget.reconnecting {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    min-height: 100px;
    padding: 1.25rem 1rem;
  }

  .reconnecting-text {
    font-size: 0.8rem;
    white-space: normal;
    text-align: center;
    max-width: 100%;
  }

  #activity-widget.activity-inactive .off-status-text {
    font-size: 1.1rem;
    white-space: normal;
    word-break: break-word;
  }
}


/* about */

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.about-footer-section {
  min-height: 100vh;
  background: transparent;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 5;
  margin-top: 5rem;
  pointer-events: none;
}

.underline {
  position: relative;
  bottom: 15vh;
  width: 1.8px;
  height: 40px;
  background: rgba(13, 13, 13, 0);
  overflow: visible;
  padding-bottom: 5px;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
}

.underline::before {
  content: "";
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to top, transparent 0%, rgba(255, 255, 255, 1), transparent 100%);
  animation: anmUnd 2s linear infinite;
}

@keyframes anmUnd {
  0%   { bottom: 100%;  opacity: 0; }
  25%  { bottom: 50%;   opacity: 0.5; }
  50%  { bottom: 0%;    opacity: 1; }
  75%  { bottom: -50%;  opacity: 1; }
  100% { bottom: -100%; opacity: 0.2; }
}

.about-container {
  max-width: 999px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
  box-sizing: border-box;
  pointer-events: none;
}

.about-space {
  height: 20vh;
  width: 100%;
  background: transparent;
}

.about-bg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgb(19, 21, 23);
  border-radius: 13px;
  border: 1.3px solid transparent;
  margin-bottom: 2rem;
  position: relative;
  z-index: 5;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  padding: 2rem;
  transition: border-color 0.2s ease-in-out;
}

.about-bg:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.about-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: rgba(255, 255, 255, 1);
  font-weight: 700;
  margin-bottom: 0.75rem;
  margin-top: 0;
  letter-spacing: -0.02em;
}

.about-secondary-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 0;
  letter-spacing: -0.015em;
}

.about-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  color: rgba(255, 255, 255, 1);
  margin-bottom: 1.25rem;
  margin-top: 0;
}

.about-description {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.5);
  box-sizing: border-box;
  word-wrap: break-word;
}

.about-hover {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease-in-out, background-color 0.1s ease-in-out;
}

.about-hover:hover {
  background-color: rgba(255, 255, 255, 1);
  color: rgba(0, 0, 0, 1);
}

@media (max-width: 768px) {
  .about-footer-section {
    padding: 1.5rem 1rem;
  }

  .about-description {
    line-height: 1.7;
    max-width: 100%;
  }

  .about-bg {
    padding: 1.75rem 1.25rem;
  }

  .underline {
    bottom: 15vh;
  }
}

@media (max-width: 480px) {
  .about-footer-section {
    padding: 1rem 0.75rem;
  }

  .about-bg {
    padding: 1.5rem 1rem;
  }

  .underline {
    bottom: 13vh;
  }
}

@media (max-width: 340px) {
  .underline {
    display: none;
  }
}


/* footer */

.footer {
  position: relative;
  background: rgba(0, 0, 0, 1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-right: none;
  border-left: none;
  border-bottom: none;
  width: 100%;
  min-height: 80px;
  padding: 20px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 200;
  flex-shrink: 0;
  overflow: visible;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  flex-direction: column;
  position: relative;
  z-index: 500;
  margin-bottom: 20px;
  overflow: visible;
}

.footer-title-wrapper {
  position: relative;
  display: inline-block;
  overflow: visible;
  min-width: 10.5ch;
  text-align: center;
}

.footer-title {
  font-family: Inter, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  display: inline-block;
  white-space: nowrap;
  cursor: text;
  pointer-events: auto;
}

.footer-title:hover {
  color: #ffffff;
}

.footer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5em;
}

.footer-icon,
.footer-iconn,
.footer-iconnn {
  display: flex;
  position: relative;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  justify-content: center;
  transition: transform 0.5s ease-out, opacity 1s ease-out;
}

.footer-icon.animate,
.footer-iconn.animate,
.footer-iconnn.animate {
  opacity: 1;
  transform: translateY(0);
}

.footer-icon img,
.footer-icon svg,
.footer-iconn img,
.footer-iconn svg,
.footer-iconnn img,
.footer-iconnn svg {
  width: 32px;
  height: 32px;
  opacity: 0.4;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  cursor: pointer !important;
  pointer-events: all;
}

.footer-icon:hover img,
.footer-icon:hover svg,
.footer-iconn:hover img,
.footer-iconn:hover svg,
.footer-iconnn:hover img,
.footer-iconnn:hover svg {
  opacity: 1;
}

.footer-icon img,
.footer-iconn img,
.footer-iconnn img {
  pointer-events: all;
}

.footer-copyright {
  display: flex;
  position: absolute;
  left: 3rem;
  top: 50%;
  padding: 0.5rem 1rem;
  transform: translateY(-50%);
  align-items: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.90rem;
  color: rgba(255, 255, 255, 1);
  z-index: 500;
  user-select: none;
  white-space: nowrap;
  pointer-events: auto;
  overflow: visible;
}

.underline-text {
  position: relative;
  display: inline-block;
  cursor: text;
}

.underline-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  border-bottom: 2px dashed #ffffff;
  transition: bottom 0.2s ease, opacity 0.2s ease;
  opacity: 0.8;
}

.copyright-link:hover .underline-text::after {
  bottom: -4px;
  opacity: 1;
}

.copyright-link {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
  display: inline-block;
}

.copyright-link:hover {
  background-color: #075985;
  border-radius: 2px;
}

.copyright-link .tooltip-bubble {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translateX(-50%) translateY(-14px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 0.3rem 0.6rem;
  border-radius: 13px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  z-index: 1000;
  font-weight: 500;
}

.copyright-link:hover .tooltip-bubble {
  opacity: 1;
}

.wipe-mask {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: #000000;
  z-index: 1;
}

@keyframes anm {
  0%   { bottom: -100%; opacity: 0; }
  25%  { bottom: -50%;  opacity: 0.5; }
  50%  { bottom: 0%;    opacity: 1; }
  75%  { bottom: 50%;   opacity: 1; }
  100% { bottom: 100%;  opacity: 0; }
}

@media (max-width: 860px) {
  .footer {
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 60px;
  }

  .footer-content {
    flex-direction: column;
    gap: 0.8em;
  }

  .footer-icons {
    gap: 2em;
  }

  .footer-icon,
  .footer-iconn,
  .footer-iconnn {
    transform: translateY(15px);
  }

  .footer-copyright {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%);
    justify-content: center;
    text-align: center;
  }
}


/* disable text */

#activity-widget,
#activity-widget *,
#spotify-widget,
#spotify-widget *,
.discord-username,
.textBubble,
#textBubble,
.badge-icons .textBubble,
.badge-icons #textBubble,
.avatar,
.avatar-wrapper {
  user-select: none;
  -webkit-user-select: none;
}


/* warn */

.mind-out {
  display: none;
  justify-content: space-between;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Inter', sans-serif;
  background: rgba(255, 255, 255, 1);
  color: #000000;
  padding: 13px 6.5px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
}

.car {
  width: auto;
  height: 150px;
  display: block;
  margin-left: auto;
  margin-right: 0;
  margin-top: 13px;
}

@media (max-width: 1450px) {
  .mind-out {
    display: block;
  }
}


/* scrollbar */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: var(--thumb-color, #262626);
  border-radius: 999px;
  transition: background 0.1s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(255, 255, 255);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #262626 #000000;
}