.header-left img.hope-image {
  display: none !important;
}
.header-left {
  position: relative;
}
.header-left::before {
  content: '';
  display: inline-block;
  width: 60px;
  height: 60px;
  background: url('https://cdn.jsdelivr.net/gh/alist-org/logo@main/logo.svg') no-repeat center/contain;
  background-size: contain;
}
.login-page .hope-image,
.login-page img[alt="AList Logo"],
.login-page img[src*="new_icon.png"],
.hope-stack .hope-image,
.hope-c-dhzjXW .hope-image,
.hope-stack > img {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}
.login-page .hope-stack:first-child,
.login-page .hope-c-dhzjXW {
  margin: 20px 0 30px 0 !important;
  min-height: auto !important;
  padding: 10px 0 !important;
}
.footer {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  font-size: 16px !important;
  padding: 10px 0 16px 0 !important;
  color: inherit !important;
  opacity: 1 !important;
}
.footer a[href*="alist"],
.footer a[href*="github"],
.footer span {
  display: none !important;
}
.art-video {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  position: relative;
}
.art-subtitle {
  position: absolute;
  bottom: 10%;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0px 0px 2px rgba(0, 0, 0, 1);
  z-index: 99;
  line-height: 1.3;
  pointer-events: none;
}
#site-disclaimer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: rgba(15, 15, 20, 0.97);
  color: #ccc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  padding: 16px 20px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  animation: slideUp 0.35s ease;
}
@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
#site-disclaimer .disc-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
#site-disclaimer .disc-body {
  flex: 1;
}
#site-disclaimer .disc-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}
#site-disclaimer .disc-text {
  color: #aaa;
}
#site-disclaimer .disc-text strong {
  color: #fff;
}
#site-disclaimer .disc-text .disc-highlight {
  color: #faad14;
  font-weight: 600;
}
#site-disclaimer .disc-btn {
  flex-shrink: 0;
  align-self: center;
  background: #1890ff;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
#site-disclaimer .disc-btn:hover {
  background: #40a9ff;
}
@media (max-width: 600px) {
  #site-disclaimer {
    flex-direction: column;
    gap: 10px;
  }
  #site-disclaimer .disc-btn {
    width: 100%;
    text-align: center;
  }
}
.tele-bot-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}

.tele-bot-label {
  background: #ffffff;
  color: #0088cc;
  padding: 8px 14px;
  border-radius: 12px; 
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  position: relative;
  animation: gentle-bounce 3s ease-in-out infinite;
}

.tele-bot-label::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 6px 6px 6px 0;
  border-style: solid;
  border-color: transparent #ffffff transparent transparent;
}

.tele-bot-icon {
  width: 60px;
  height: 60px;
  background-color: #2aabee;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(42, 171, 238, 0.4);
  transition: transform 0.3s ease;
  animation: pulse-tele 2s infinite;
}

.tele-bot-icon svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
  margin-right: 2px;
}

.tele-bot-float:hover .tele-bot-icon {
  transform: scale(1.1);
  animation: none;
}

@keyframes pulse-tele {
  0% {
    box-shadow: 0 0 0 0 rgba(42, 171, 238, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(42, 171, 238, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(42, 171, 238, 0);
  }
}

@keyframes gentle-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  .tele-bot-float {
    bottom: 20px;
    left: 15px;
    gap: 8px; 
  }
  .tele-bot-icon {
    width: 45px;
    height: 45px;
  }
  .tele-bot-icon svg {
    width: 24px;
    height: 24px;
  }
  .tele-bot-label {
    font-size: 12px;
    padding: 6px 10px;
  }
}

/* === CSS CHO POPUP DONATE === */
.donate-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.donate-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.donate-modal {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}
.donate-overlay.active .donate-modal {
  transform: translateY(0) scale(1);
}
.donate-close {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #999;
  line-height: 1;
  transition: color 0.2s;
}
.donate-close:hover { color: #333; }
.donate-title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 12px;
}
.donate-desc {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  color: #555;
  margin-bottom: 24px;
  line-height: 1.5;
}
.qr-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.qr-box img {
  width: 140px;
  height: 140px;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  padding: 5px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.qr-name {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 700;
}
/* ======================== */