/* backg.css */
html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border: none;
  overflow-x: hidden;
  overflow-y: auto;
  height: auto;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
  cursor: auto !important;
}

.main-content {
  flex: 1;
}

body {
  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);
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  cursor: none;
}

div.background {
  background-color: #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;
}

.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;
  height: 8vh;
  gap: 10px;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 500;
  padding: 0 20px;
  cursor: pointer;
  pointer-events: auto;
}

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

.volume-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: auto;
  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: auto;
}

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

#mute-icon { opacity: 0; }
#unmute-icon { opacity: 1; }

.volume-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 150px;
  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;
  width: 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: 0.6; 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: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  margin-top: -6px;
}
.volume-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  margin-top: -6px;
}
.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;
}
.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 {
  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;
}

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

/* intro.css */
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: pointer;
  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;
}

.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.css */
.tech-marquee-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 71%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: 1;
  background-color: #000000;
  box-shadow: 0 -1px 0px rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  top: 50%;
  left: 50%;
  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.5) 0%,
    rgba(0, 0, 0, 0.1) 12%,
    rgba(0, 0, 0, 0.7) 25%,
    rgba(0, 0, 0, 0.9) 50%,
    rgba(0, 0, 0, 0.7) 75%,
    rgba(0, 0, 0, 0.1) 90%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 2;
}

.tech-marquee-row {
  display: inline-flex;
  white-space: nowrap;
  transform: translate3d(0,0,0);
  pointer-events: auto;
  z-index: 10;
  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.css */
.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: pointer;
  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.css */
.glass-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 500px;
  box-sizing: border-box;
}

.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: 10;
  overflow: visible;
  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: 3; 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;
  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(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%; }
.discord-status-dot {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 100%;
  bottom: 5px;
  right: 5px;
  z-index: 3;
}

.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: pointer;
  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; }
.badge-icons svg { position: relative; width: 1.3rem; height: 1.3rem; color: rgb(255,255,255); display: block; }

.textBubble, #textBubble {
  font-family: 'Inter', sans-serif;
  font-weight: bold;
  position: absolute;
  top: -25px;
  left: 10px;
  transform: translate(-50%, -60%);
  padding: 9px 15px;
  border-radius: 9px;
  display: inline-flex;
  background: #262626;
  color: rgb(255,255,255);
  font-size: 0.80rem;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  z-index: 3;
  text-align: center;
  white-space: nowrap;
}
.badge-icons:hover .textBubble,
.badge-icons:focus-within .textBubble,
.badge-icons:hover #textBubble,
.badge-icons:focus-within #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; } }

/* spotify.css */
.spotify-widget-container {
  display: flex;
  width: 100vw;
  height: max-content;
  justify-content: center;
  margin: -190px auto 0 auto;
  margin-bottom: 10rem;
}

#spotify-widget {
  display: flex;
  position: relative;
  width: 650px;
  height: 270px;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 0 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: center;
  z-index: 10;
  overflow: hidden;
  transition: box-shadow 0.3s ease-in-out, border-color 0.3s ease-in-out, background 0.3s ease-in-out;
}

#spotify-widget.hidden { opacity: 1; pointer-events: none; }
#spotify-widget.active { border-color: #1db954 !important; }
#spotify-widget.inactive { border-color: #747f8d !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: 64px; height: 64px; border-radius: 8px; margin-right: 12px; object-fit: cover; display: block; }

#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-color: transparent; height: 4px; border-radius: 4px; margin-top: 5px; overflow: hidden; }
#spotify-widget #progress-bar { background-color: #ffffff; height: 100%; width: 0%; transition: width 0.2s linear; will-change: width; }

.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; }

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

.reconnecting-spinner {
  position: relative;
  left: -5%;
  width: 42px;
  height: 42px;
  display: flex;
  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%; } }

@media (max-width: 768px) {
  .spotify-widget-container { display: none; }
  #spotify-widget { flex-direction: column; width: 90%; margin-bottom: 15vh; padding: 10px; height: auto; }
  #spotify-widget #song-name, #spotify-widget #artist-name { font-size: 0.9rem; }
  #spotify-widget #album-art { width: 48px; height: 48px; }
}

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

.about-footer-section {
  min-height: 100vh;
  background-color: rgba(0,0,0,0.13);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 100;
  margin-top: 5rem;
}

.underline {
  position: relative;
  bottom: 15vh;
  width: 1.8px;
  height: 40px;
  background-color: rgba(13,13,13,0);
  overflow: visible;
  padding-bottom: 5px;
  z-index: 100;
  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: 100; padding: 0 1rem; box-sizing: border-box; }
.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-color: #131517;
  border-radius: 13px;
  border: 1.3px solid transparent;
  margin-bottom: 2rem;
  position: relative;
  z-index: 100;
  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 dashed 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.css */
.footer {
  position: relative;
  background-color: 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;
}
.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-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; }
.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;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  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; }
}

/* warn.css */
.mind-out {
  display: none;
  justify-content: space-between;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Inter', sans-serif;
  background-color: 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; } }