html {
  cursor: url('assets/cursor/mao.png'), auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* Lenis Recommended CSS */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Comic Neue', cursive;
  overflow: hidden;
  background-color: black;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

body::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}

.custom-cursor {
  cursor: url('./assets/cursor/pointer.png'), auto !important;
}

img {
  -webkit-user-drag: none;
  user-select: none;
}

#terminal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 90vw);
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: #ffffff;
  border-radius: 0;
  z-index: 1000;
  border: none;
  box-shadow: none;
  overflow: visible;
  padding: 0;
  box-sizing: border-box;
}

@media screen and (max-width: 600px) {
  #terminal {
    width: 90% !important;
    padding: 0;
  }
}

#terminal-header {
  display: none;
}

#terminal-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

#terminal-buttons {
  display: flex;
  gap: 8px;
}

.terminal-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.terminal-button:hover {
  transform: scale(1.15);
  filter: brightness(1.2);
}

#close-button { background-color: #ff5f56; }
#minimize-button { background-color: #ffbd2e; }
#maximize-button { background-color: #27c93f; }

#terminal-content {
  padding: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  user-select: none;
}

#terminal-text {
  margin: 0 auto;
  padding: 0;
  width: max-content;
  max-width: 90vw;
  font-family: 'Product Sans', 'Google Sans', 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #ffffff;
  text-transform: uppercase;
  text-align: left;
  line-height: 2.2;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 255, 255, 0.4);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

.poem-line-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-items: start;
  min-height: 2.2em;
  width: 100%;
}

.poem-line-ghost {
  grid-area: 1 / 1;
  visibility: hidden;
  white-space: pre;
  pointer-events: none;
  user-select: none;
}

.poem-line {
  grid-area: 1 / 1;
  white-space: pre;
  text-align: left;
}

.typing-cursor {
  display: inline;
  font-weight: 100;
  color: #ffffff;
  animation: blink-cursor 0.53s step-end infinite;
  margin-left: 1px;
  font-size: 1.1em;
  vertical-align: baseline;
  user-select: none;
  pointer-events: none;
}

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

#myVideo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -3;
  filter: brightness(0.85) contrast(1.1);
}

#video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%);
  transition: all 1s ease;
}

#video-overlay::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}


.top-left {
  top: 0;
  left: 0;
}

.top-right {
  top: 0;
  right: 0;
}

.bottom-left {
  bottom: 0;
  left: 0;
}

.bottom-right {
  bottom: 0;
  right: 0;
}

#blurred-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) perspective(1000px);
  width: 500px;
  height: 600px;
  background: var(--theme-panel-bg);
  border-radius: 20px;
  border: 2px solid var(--theme-border);
  box-shadow: var(--theme-shadow);
  backdrop-filter: blur(5px);
  z-index: 999;
  display: none;
  padding: 20px;
  text-align: center;
  transform-style: preserve-3d;
  color: var(--theme-text);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

#blurred-box:hover {
  background: var(--theme-panel-bg);
  border-color: var(--theme-hover-border);
  box-shadow: var(--theme-hover-shadow);
}

#blurred-box img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 10px;
}

#profile-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 190px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

#profile-picture {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--theme-shadow);
}

#profile-picture:hover {
  transform: scale(1.05);
  border-color: var(--theme-hover-border);
  box-shadow: var(--theme-avatar-shadow);
}

.profile-picture-container {
  position: absolute;
  top: 120px;
  left: 20px;
  z-index: 2;
}

#custom-status-bubble {
  position: absolute;
  top: 95px;
  left: 145px;
  margin-left: 0;
  transform: translateY(-50%);
  background-color: #1e1f22;
  border-radius: 8px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  z-index: 1002;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  /* border: 1px solid rgba(255, 255, 255, 0.05); (removing border for smoother cloud merging) */
}

#custom-status-bubble.custom-status-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(-10px);
}

/* Small cloud circle */
#custom-status-bubble::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -12px;
  width: 6px;
  height: 6px;
  background-color: #1e1f22;
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Medium cloud circle */
#custom-status-bubble::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -6px;
  width: 14px;
  height: 14px;
  background-color: #1e1f22;
  border-radius: 50%;
  transform: translateY(-50%);
}

#custom-status-emoji {
  width: 20px !important;
  height: 20px !important;
  object-fit: contain;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
}

#custom-status-emoji.custom-status-hidden {
  display: none;
}

#custom-status-text {
  color: #dbdee1;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.sync-indicator {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #5865f2 0%, #3b49df 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.sync-indicator.active {
  opacity: 1;
  transform: scale(1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.links {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  z-index: 1001;
  width: 100%;
}

.links a {
  display: flex;
  align-items: center;
  margin: 0 10px;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
  transition: transform 0.3s ease;
}

.links a:hover {
  color: #67cfff;
  text-decoration: underline;
  transform: translateY(-5px) scale(1.1);
}

.links a i {
  margin-right: 5px;
  font-size: 24px;
}

.user-description {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  text-align: center;
  width: 450px;
}

.user-description p {
  color: white;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 18px;
  margin: 0;
  transition: transform 0.3s;
}

#avatar-frame {
  position: absolute;
  top: 180px;
  left: 80px;
  transform: translate(-50%, -50%) scale(1.2);
  width: 160px;
  height: 160px;
  z-index: 1000;
  pointer-events: none;
  display: none;
  border-radius: 0 !important;
}

#typing-cursor {
  display: inline-block;
  animation: blink 1s infinite;
  color: white;
  font-weight: normal;
  font-size: 32px;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

#username,
#typing-cursor {
  --custom-neon-shadow-radius: calc(4px + 0.12em);
  --custom-display-name-styles-main-color: #ff3377;
  paint-order: stroke fill;
  -webkit-text-stroke-width: calc(1px + .04em);
  -webkit-text-stroke-color: var(--custom-display-name-styles-main-color);
  color: white;
  margin: calc(var(--custom-neon-shadow-radius) * -1);
  padding: var(--custom-neon-shadow-radius);
  position: relative;
  text-shadow: 0 0 var(--custom-neon-shadow-radius) var(--custom-display-name-styles-main-color);
  z-index: 0;
}

#typing-cursor {
  animation: blink 1s infinite;
}

#username-container {
  position: absolute;
  top: 210px;
  left: 85px;
  transform: translateX(-50%);
  z-index: 1001;
  padding: 5px 15px;
  text-align: center;
  text-shadow: 0 0 10px #ff3377;
  border-radius: 20px;
  pointer-events: auto;
  white-space: nowrap;
  font-family: 'MedievalSharp', cursive;
  font-size: 24px;
  font-weight: bold;
  min-height: 50px;
  display: flex;
  align-items: center;
}

.discord-widget {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px;
  border-radius: 12px;
  padding: 8px 12px;
  margin: 15px auto;
  margin-top: 310px !important;
  width: 90%;
  max-width: 360px;
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: 'Inter', sans-serif;
  display: block;
  box-sizing: border-box;
}

.discord-content {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

.discord-icon img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-right: 16px;
  background-color: #222;
  border: 0px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.discord-meta .discord-name-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  bottom: -7px;
}

.discord-meta b {
  font-size: 20px;
  display: block;
  font-weight: 600;
}

.discord-meta span,
.discord-meta div {
  font-size: 15px;
  display: inline-block;
  color: #ccc;
}

#discord-status-text {
  display: none !important;
}

#discord-status-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 2px;
  margin-left: -190px;
  margin-bottom: 3px;
  margin-top: 10px;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.status-online {
  background-color: #3ba55d;
}

.status-idle {
  background-color: #faa81a;
}

.status-dnd {
  background-color: #ed4245;
}

.status-offline {
  background-color: #747f8d;
}

.discord-activity {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 13px;
  font-size: 13px;
  color: #ccc;
  min-height: 80px;
  overflow: hidden;
}

#discord-activity-info,
#discord-no-activity {
  position: absolute;
  inset: 0;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  transition: opacity 0.35s ease;
}

#discord-activity-info.hidden,
#discord-no-activity.hidden {
  opacity: 0;
  pointer-events: none;
}

#discord-activity-info {
  gap: 16px;
}

#discord-album-art {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #333;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  margin-left: 16px;
}

.discord-activity-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  flex: 1;
  text-align: left;
}

.activity-time {
  color: #23a559;
  font-weight: 500;
  font-size: 13px;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.activity-extra {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 4px;
}

#discord-activity-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  font-style: normal;
}

#discord-activity-details,
#discord-activity-state {
  font-size: 11px;
  color: #ccc;
  margin-bottom: 1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#discord-no-activity {
  justify-content: center;
  color: #aaa;
  font-style: italic;
}

.discord-widget .discord-icon img {
  width: 52px !important;
  height: 52px !important;
  margin-right: 14px !important;
}

.badges-container {
  position: absolute;
  top: 200px;
  right: 20px;
  left: auto;
  transform: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  width: auto;
  max-width: 250px;
  z-index: 1001;
  margin-top: 0;
  flex-wrap: wrap;
}

.badges-container img {
  width: 20px !important;
  height: 20px !important;
  border-radius: 0 !important;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.tagText {
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  display: inline-block;
  text-shadow: none;
}

#discord-clan-container {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 1005;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 4px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  text-decoration: none;
  overflow: hidden;
}

#discord-clan-container:hover {
  background-color: rgba(88, 101, 242, 0.25);
  border-color: rgba(88, 101, 242, 0.5);
  box-shadow: 0 0 10px rgba(88, 101, 242, 0.4);
  transform: scale(1.08);
}

#discord-clan-container:active {
  transform: scale(0.95);
  background-color: rgba(88, 101, 242, 0.45);
  box-shadow: 0 0 16px rgba(88, 101, 242, 0.6);
}

#discord-clan-container .clan-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(88, 101, 242, 0.5);
  transform: scale(0);
  animation: clan-ripple-anim 0.5s linear;
  pointer-events: none;
}

@keyframes clan-ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

#discord-clan-container img {
  width: 14px !important;
  height: 14px !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  margin: 0 !important;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}


.music-controls {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 90%;
  max-width: 380px;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 12px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.music-btn {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.music-btn:hover {
  background: linear-gradient(135deg, #7c94ff 0%, #8a5cb8 100%);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.music-btn:active {
  transform: scale(0.95);
}

#randomBtn {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
}

#randomBtn:hover {
  background: linear-gradient(135deg, #ff7979 0%, #ff6b6b 100%);
}

.volume-container {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 100px;
}

.volume-slider {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb:hover {
  background: linear-gradient(135deg, #7c94ff 0%, #8a5cb8 100%);
  transform: scale(1.2);
}

.volume-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.video-normal #video-overlay {
  background: radial-gradient(circle at center, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
  backdrop-filter: blur(0);
}

#ip-info-container {
  position: fixed;
  bottom: 10px;
  right: 0px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px 15px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  z-index: 0;
  /* Cũng đặt thấp hơn terminal */
  pointer-events: none;
}

#rainbow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, red, orange, yellow, green, cyan, blue, violet);
  background-size: 400% 400%;
  z-index: 9999;
  animation: rainbow-animate 8s linear infinite;
}

@keyframes rainbow-animate {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

#blur-overlay {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(5px);
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
}

@media (max-width: 768px) {
  #blurred-box {
    width: 90%;
    padding: 10px;
    font-size: 14px;
  }

  .profile-picture-container img {
    width: 80px;
    height: 80px;
  }

  .badges-container img {
    width: 24px;
    height: 24px;
    margin: 2px;
  }

  .music-controls {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  .volume-container {
    width: 80%;
  }


  .discord-widget {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #ip-info-container {
    font-size: 12px;
    padding: 6px;
    width: 90%;
    right: 5%;
  }

  #username-container {
    font-size: 20px !important;
  }

  .links a {
    font-size: 20px;
    margin: 0 5px;
  }
}

#video-background video {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
}

#page {
  display: inline-block;
  position: relative;
  text-align: center;
  align-items: center;
  top: 10em;
  vertical-align: middle;
  width: 100%;
}

#scroll-container {
  position: fixed;
  /* Cố định ở một vị trí */
  bottom: 25px;
  /* Gắn vào cạnh dưới */
  left: 50%;
  /* Căn giữa theo chiều ngang */
  transform: translateX(-50%);
  text-align: center;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 5px;
  border-top: 0px;
  border-bottom: 0px;
  display: inline-block;
  cursor: default;
  align-items: center;
  vertical-align: middle;
  height: auto;
  /* Không cần % */
  width: 25%;
  overflow: hidden;
  z-index: 9999;
  /* Đảm bảo nằm trên cùng */
  display: none;
  /* Ẩn ban đầu */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

marquee {
  position: relative;
  font-size: 20px;
  display: inline-block;
}

#scroll-container a {
  color: white;
}

a {
  font-size: 16px;
  text-transform: lowercase;
  text-decoration: none;
  text-align: center;
  font-family: 'consolas', sans-serif;
  display: inline-block;
  margin: 0 10px;
}

a:hover {
  color: #a8a8a8;
}

marquee a.social-link {
  animation: none;
  color: #ffffff;
  transition: color 0.25s ease, transform 0.25s ease;
}

marquee a.social-link:hover {
  color: #67cfff;
  transform: translateY(-2px) scale(1.15);
}

@keyframes colorRotate {
  from {
    color: #000000;
  }

  10% {
    color: #ffffff;
  }

  50% {
    color: #000000;
  }

  75% {
    color: #ffffff;
  }

  100% {
    color: #000000;
  }
}

.faceit {
  position: fixed;
  top: 15px;
  left: 13px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 16px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  backdrop-filter: blur(4px);
  display: none;
  opacity: 0;
  align-items: center;
  gap: 6px;
  transition: opacity 1s ease, visibility 1s ease, transform 0.3s ease;
}

.faceit span {
  display: inline-flex;
  /* Để ảnh và text căn giữa theo chiều dọc */
  align-items: center;
  gap: 2px;
  /* Khoảng cách giữa icon và text */
  white-space: nowrap;
}

.faceit-icon {
  width: 23px;
  /* Kích thước icon */
  height: auto;
  object-fit: contain;
}

.faceit-flag {
  width: 20px;
  /* giữ kích thước mong muốn */
  height: auto;
  border-radius: 4px;
  /* 👈 bo góc 4px, chỉnh theo ý bạn */
}

.valorant {
  position: fixed;
  top: 50px;
  left: 13px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 16px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  backdrop-filter: blur(4px);
  display: none;
  opacity: 0;
  align-items: center;
  gap: 6px;
  transition: opacity 1s ease, visibility 1s ease, transform 0.3s ease;
}

.valorant span {
  display: inline-flex;
  /* Để ảnh và text căn giữa theo chiều dọc */
  align-items: center;
  gap: 2px;
  /* Khoảng cách giữa icon và text */
  white-space: nowrap;
}

.valorant-icon {
  width: 23px;
  /* Kích thước icon */
  height: auto;
  object-fit: contain;
}

.csgo {
  position: fixed;
  top: 85px;
  left: 13px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 16px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  backdrop-filter: blur(4px);
  display: none;
  opacity: 0;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  transition: opacity 1s ease, visibility 1s ease, transform 0.3s ease;
}

.scrolled-out {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

footer {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  padding: 10px 0;
}

.credit-line {
  position: fixed;
  bottom: 0.4rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  font-family: 'Saira', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 0rem 0;
  z-index: 100;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}

.credit-line.credit-visible {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease;
}

#media-toggle-buttons {
  display: none;
  /* Ẩn hoàn toàn ban đầu */
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#media-toggle-buttons i {
  font-size: 42px;
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease;
}

#media-toggle-buttons i:hover {
  transform: scale(1.1);
}

#clock-date {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Roboto Mono', monospace;
  font-size: 15px;
  color: white;
  background: rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 9999;
  white-space: nowrap;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}

body.shimeji-pinned iframe {
  pointer-events: none;
}

body.shimeji-select-ie {
  cursor: cell !important;
}

#shimeji-contextMenu::-webkit-scrollbar {
  width: 6px;
}

#shimeji-contextMenu::-webkit-scrollbar-thumb {
  background-color: rgba(30, 30, 30, 0.6);
  border-radius: 3px;
}

#shimeji-contextMenu::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#skip-button {
  position: fixed;
  top: 10px;
  right: 10px;
  color: rgb(192, 192, 192);
  font-family: serif;
  font-size: 14px;
  z-index: 9999;
  background: none;
  border: none;
  padding: 0;
}

#github-link-button {
  position: fixed;
  top: 10px;
  right: 10px;
  color: rgb(192, 192, 192);
  font-family: serif;
  font-size: 14px;
  z-index: 9999;
  background: none;
  border: none;
  padding: 0;
  text-decoration: none;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: none;
}

#skip-button:hover,
#github-link-button:hover {
  text-decoration: underline;
  cursor: url('./assets/cursor/pointer.png'), pointer;
}

#terminal.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease;
}

:root {
  --mc-cyan: #00ffe1;
  --mc-green: #00ff88;
  --mc-red: #ff3b3b;
  --mc-orange: #ff9900;
  --mc-pink: #ff66cc;
  --mc-blue: #00bfff;
  --mc-white: #ffffff;
  --mc-gray: #444444;
  --mc-discord: #7289da;
}

#blurred-box.theme-ready .discord-widget,
#blurred-box.theme-ready .music-controls {
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

:root {
  --theme-text: #ffffff;
  --theme-soft: #cfcfcf;
  --theme-accent: #00ffe1;
  --theme-accent-2: #00ff88;
  --theme-danger: #ff3b3b;
  --theme-warning: #ff9900;
  --theme-pink: #ff66cc;
  --theme-blue: #00bfff;
  --theme-discord: #7289da;

  --theme-panel-bg: rgba(0, 0, 0, 0.3);
  --theme-panel-bg-strong: rgba(0, 0, 0, 0.68);
  --theme-border: rgba(255, 255, 255, 0.08);
  --theme-shadow: 0 0 20px rgba(0, 255, 225, 0.12);
  --theme-shadow-strong: 0 0 30px rgba(0, 255, 225, 0.18);
  --theme-hover-border: rgba(0, 255, 225, 0.45);
  --theme-hover-shadow: 0 0 28px rgba(0, 255, 225, 0.28);
  --theme-avatar-shadow: 0 12px 40px rgba(0, 255, 225, 0.22);
}

body.cyber-neon {
  --theme-text: #ffffff;
  --theme-soft: #cccccc;
  --theme-accent: #00ffe1;
  --theme-accent-2: #00ff88;
  --theme-danger: #ff3b3b;
  --theme-warning: #ff9900;
  --theme-pink: #ff66cc;
  --theme-blue: #00bfff;
  --theme-discord: #7289da;

  --theme-panel-bg: rgba(0, 0, 0, 0.3);
  --theme-panel-bg-strong: rgba(0, 0, 0, 0.68);
  --theme-border: rgba(0, 255, 225, 0.16);
  --theme-shadow: 0 0 30px rgba(0, 255, 225, 0.14);
  --theme-shadow-strong: 0 0 30px rgba(0, 255, 225, 0.22);
  --theme-hover-border: rgba(0, 255, 225, 0.45);
  --theme-hover-shadow: 0 0 50px rgba(0, 255, 225, 0.28);
  --theme-avatar-shadow: 0 12px 40px rgba(0, 255, 225, 0.22);
}

body.pink-anime {
  --theme-text: #fff5fb;
  --theme-soft: #f0c7de;
  --theme-accent: #ff66cc;
  --theme-accent-2: #ff9de1;
  --theme-danger: #ff5d8f;
  --theme-warning: #ffc0cb;
  --theme-pink: #ff66cc;
  --theme-blue: #d78cff;
  --theme-discord: #c084fc;

  --theme-panel-bg: rgba(32, 10, 28, 0.42);
  --theme-panel-bg-strong: rgba(28, 8, 24, 0.78);
  --theme-border: rgba(255, 102, 204, 0.18);
  --theme-shadow: 0 0 30px rgba(255, 102, 204, 0.16);
  --theme-shadow-strong: 0 0 30px rgba(255, 102, 204, 0.24);
  --theme-hover-border: rgba(255, 102, 204, 0.42);
  --theme-hover-shadow: 0 0 50px rgba(255, 102, 204, 0.26);
  --theme-avatar-shadow: 0 12px 40px rgba(255, 102, 204, 0.22);
}

body.dark-glass {
  --theme-text: #f5f7fa;
  --theme-soft: #aeb7c2;
  --theme-accent: #d7dee7;
  /* bạc */
  --theme-accent-2: #ffffff;
  --theme-danger: #ff8a8a;
  --theme-warning: #ffd79c;
  --theme-pink: #c7d0dc;
  --theme-blue: #9fa9b8;
  --theme-discord: #c8d0da;

  --theme-panel-bg: rgba(18, 22, 28, 0.58);
  --theme-panel-bg-strong: rgba(8, 12, 18, 0.88);
  --theme-border: rgba(255, 255, 255, 0.08);
  --theme-shadow: 0 0 26px rgba(255, 255, 255, 0.04);
  --theme-shadow-strong: 0 0 38px rgba(255, 255, 255, 0.06);
  --theme-hover-border: rgba(255, 255, 255, 0.14);
  --theme-hover-shadow: 0 0 55px 10px rgba(255, 255, 255, 0.08);
  --theme-avatar-shadow: 0 12px 35px rgba(255, 255, 255, 0.06);
}

#username,
#typing-cursor,
.discord-meta b,
#discord-activity-name {
  color: var(--theme-text);
}

#discord-activity-details,
#discord-activity-state,
#discord-no-activity,
.discord-meta span,
.discord-meta div {
  color: var(--theme-soft);
}

.discord-widget,
.discord-activity,
.music-controls {
  background: var(--theme-panel-bg);
  border-color: var(--theme-border);
  box-shadow: var(--theme-shadow);
  color: var(--theme-text);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.discord-widget:hover,
.discord-activity:hover,
.music-controls:hover {
  border-color: var(--theme-hover-border);
  box-shadow: var(--theme-hover-shadow);
}

.discord-widget,
.discord-activity,
.music-controls {
  box-shadow: var(--theme-shadow);
}

.discord-widget:hover,
.discord-activity:hover,
.music-controls:hover {
  box-shadow: var(--theme-hover-shadow);
  border-color: var(--theme-hover-border);
}

#blurred-box {
  box-shadow: var(--theme-shadow) !important;
  border-color: var(--theme-border) !important;
}

#blurred-box:hover {
  box-shadow: var(--theme-hover-shadow) !important;
  border-color: var(--theme-hover-border) !important;
}

#profile-picture:hover,
.discord-widget:hover,
.discord-activity:hover,
.music-controls:hover {
  box-shadow: var(--theme-hover-shadow) !important;
}

@media (max-width: 768px) {
  #blurred-box {
    width: 92%;
    height: auto;
    min-height: 620px;
    padding: 14px;
  }

  .music-controls {
    width: 92%;
    bottom: 58px;
    padding: 10px 12px;
  }

  .discord-widget {
    width: 100%;
    max-width: none;
  }
}

/* Allow scrolling on body once loaded but hide scrollbar */
body.allow-scroll {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scrollbar-width: none !important;
  /* Firefox */
  -ms-overflow-style: none !important;
  /* IE/Edge */
}

body.allow-scroll::-webkit-scrollbar {
  display: none !important;
  /* Chrome, Safari, Opera */
  width: 0 !important;
  height: 0 !important;
}

/* White Footer Section Styling */
.site-footer {
  position: absolute;
  top: 100vh;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  z-index: 10005;
  box-sizing: border-box;
  padding: 60px 40px 30px 40px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.12);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  display: none;
}

body.allow-scroll .site-footer {
  display: block;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: none;
  margin: 0 auto;
  padding-left: 260px;
  padding-right: 260px;
  box-sizing: border-box;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-right {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 0;
}

.music-disc-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.vinyl-disc {
  position: relative;
  width: 245px;
  height: 245px;
  border-radius: 50%;
  background: radial-gradient(circle, #0d0d0d 30%, #1a1a1a 40%, #0d0d0d 50%, #262626 60%, #0d0d0d 70%);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.5), inset 0 0 18px rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 8s linear infinite;
  animation-play-state: paused;
  scale: 1;
  transition: scale 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
  cursor: pointer;
}

.vinyl-disc:hover {
  scale: 1.12;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.6), inset 0 0 22px rgba(0, 0, 0, 0.8);
}

.vinyl-disc::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px double rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.vinyl-disc::after {
  content: '';
  position: absolute;
  inset: 37px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.vinyl-center {
  width: 50%;
  height: 50%;
  border-radius: 50%;
  background-color: #222;
  background-size: cover;
  background-position: center;
  border: 3px solid #000;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  position: relative;
}

.vinyl-center::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.vinyl-disc.playing {
  animation-play-state: running;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.music-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.music-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-artist {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  color: #777777;
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-about {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  margin-top: 0;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 8px;
}

.footer-logo {
  font-size: 25px;
  font-weight: 800;
  color: #000000;
  margin: 0;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
}

.footer-logo img {
  width: 30%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  margin-left: -27px;
}

.footer-logo .logo-light-theme {
  display: block;
}

.footer-logo .logo-dark-theme {
  display: none;
}

.footer-description {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
  margin: 0;
}

.footer-links,
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-list li {
  margin-bottom: 12px;
  font-size: 15px;
  color: #555555;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

/* Reset default global style for links inside footer */
.site-footer a {
  animation: none !important;
  text-transform: none !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
  color: rgba(0, 0, 0, 0.6) !important;
  font-size: 15px !important;
  margin: 0 !important;
  text-align: left !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  border-bottom: none !important;
  text-decoration: none !important;
  transition: color 0.2s ease, background-color 0.2s ease !important;
}

.site-footer a span {
  border-bottom: 1px solid transparent !important;
  transition: border-color 0.2s ease !important;
}

.site-footer a:hover span {
  border-bottom-color: rgba(0, 0, 0, 0.1) !important;
}

.site-footer i {
  font-size: 15px;
  width: 18px;
  color: #555555;
  text-align: center;
}

.footer-social-span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #555555;
}

/* Live Clocks styling */
.clock-item {
  display: flex;
  align-items: center !important;
  gap: 10px;
}

.clock-item>span:first-of-type {
  font-size: 15px;
}

.timezone-label {
  font-size: 15px;
  color: #555555;
  font-weight: normal;
}

.timezone-time {
  font-family: 'Roboto Mono', monospace;
  font-size: 15px;
  font-weight: normal;
  color: #555555;
}

/* Footer Bottom styling */
.footer-bottom {
  border-top: 1px solid #eaeaea;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  margin-left: 260px;
  margin-right: 260px;
}

.footer-bottom p {
  font-size: 15px;
  color: #888888;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Responsive rules */
@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 40px;
    padding-right: 40px;
    gap: 40px;
  }

  .footer-right {
    align-self: flex-start;
    padding-right: 0;
    padding-left: 0;
  }

  .footer-bottom {
    margin-left: 40px;
    margin-right: 40px;
  }
}

@media (max-width: 576px) {
  .site-footer {
    padding: 40px 20px 20px 20px;
  }
}

/* --- CUSTOM SCROLLBAR --- */
body::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.dot-scrollbar {
  bottom: 45%;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 12px;
  top: 45%;
  transition: opacity .3s ease;
  width: 16px;
  z-index: 10010;
}

.dot-scrollbar.is-scrolling {
  opacity: 1;
}

.scrollbar-track {
  height: 100%;
  position: relative;
  width: 100%;
}

.track-line {
  background-color: rgba(255, 0, 182, 0.2);
  height: 100%;
  left: 50%;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: 3.5px;
  /* Dày hơn 2px ban đầu */
  border-radius: 3.5px;
  /* Bo góc tương ứng */
}

.scrollbar-dot {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  /* Tăng kích cỡ dot một chút */
  height: 10px;
  /* Smooth interpolation is handled by JS requestAnimationFrame mostly, but a tiny transition helps */
}

.dot-inner {
  background-color: #ff00b6;
  /* Màu hồng nhạt (pink) */
  box-shadow: 0 0 10px #ff00b6, 0 0 20px #ff00b6;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.dot-glow {
  background-color: rgba(255, 0, 182, 0.6);
  /* Đổi màu viền sáng hồng */
  border-radius: 50%;
  height: 200%;
  width: 200%;
  position: absolute;
  top: -50%;
  left: -50%;
  filter: blur(4px);
  z-index: -1;
}

/* --- COMPREHENSIVE MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {

  /* Center terminal */
  #terminal {
    width: 90% !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
  }

  /* Scale down game badges */
  .faceit,
  .valorant,
  .csgo {
    transform: scale(0.8);
    transform-origin: left top;
  }

  .faceit {
    top: 10px !important;
    left: 10px !important;
  }

  .valorant {
    top: 45px !important;
    left: 10px !important;
  }

  .csgo {
    top: 80px !important;
    left: 10px !important;
  }

  /* Adjust clock position */
  #clock {
    right: 15px !important;
    top: 10px !important;
    font-size: 15px;
  }

  /* Prevent media buttons from overlapping the music player */
  #media-toggle-buttons {
    bottom: 120px !important;
    right: 15px !important;
  }

  /* Hide custom dot scrollbar on mobile (touch handles it natively) */
  .dot-scrollbar {
    display: none !important;
  }

  /* Adjust title and footer text sizes */
  #username-container {
    font-size: 20px;
    padding: 4px 12px;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .footer-bottom span {
    font-size: 8px !important;
  }
}

/* --- THEME TOGGLE BUTTON --- */
.theme-toggle-btn {
  position: absolute;
  bottom: 25px;
  right: 30px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10006;
}

.theme-toggle-btn:hover {
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.1);
}

/* --- DARK THEME FOR FOOTER --- */
.site-footer.dark-theme {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.2);
}

.site-footer.dark-theme .footer-logo {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer.dark-theme .footer-logo .logo-light-theme {
  display: none;
}

.site-footer.dark-theme .footer-logo .logo-dark-theme {
  display: block;
}

.site-footer.dark-theme .footer-col h4 {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.site-footer.dark-theme .footer-description,
.site-footer.dark-theme .footer-links li,
.site-footer.dark-theme .footer-list li,
.site-footer.dark-theme i,
.site-footer.dark-theme .footer-social-span,
.site-footer.dark-theme .timezone-label,
.site-footer.dark-theme .timezone-time {
  color: rgba(255, 255, 255, 0.7) !important;
}

.site-footer.dark-theme a {
  color: rgba(255, 255, 255, 0.7) !important;
  border-bottom: none !important;
}

.site-footer.dark-theme a span {
  border-bottom-color: transparent !important;
}

.site-footer.dark-theme a:hover span {
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}

.site-footer.dark-theme .footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.site-footer.dark-theme .footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
}

.site-footer.dark-theme .music-title {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer.dark-theme .music-artist {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer.dark-theme .theme-toggle-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.site-footer.dark-theme .theme-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 576px) {
  .theme-toggle-btn {
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}