:root {
  --primary-gradient: linear-gradient(135deg, var(--primary-color, #4facfe) 0%, var(--primary-color, #00f2fe) 100%);
  --primary-shadow: rgba(79, 172, 254, 0.4);
  --text-main: #2c3e50;
  --text-sub: #607d8b;
  --glass-bg: rgba(255, 255, 255, 0.65);
  --card-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-blur: blur(20px) saturate(180%);
  --site-width: 1300px;
  --main-radius: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Poppins", "Noto Sans SC", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-main);
  background-image: var(--bg-image);
  background-size: var(--bg-size, cover);
  background-position: center;
  background-attachment: var(--bg-attachment, fixed);
  background-repeat: no-repeat;
  min-height: 100vh;
}

a {
  text-decoration: none !important;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.1),
    inset 0 0 15px rgba(255, 255, 255, 0.5);
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.nav-wrapper {
  position: fixed;
  top: 20px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  pointer-events: none;
}

.island {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: auto;
  min-width: 300px;
  max-width: 90%;
  height: 52px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--nav-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 0 10px;
  pointer-events: auto;
}

.island-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 800;
  font-size: 20px;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
}

.nav-list {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0 40px;
  padding: 0;
}

.nav-list li {
  position: relative;
}

.nav-list li a {
  position: relative;
  display: block;
  padding: 8px 16px;
  color: var(--nav-text-color, var(--text-main));
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  background: transparent;
  border-radius: 20px;
}

.nav-list li a:hover,
.nav-list li.current-menu-item a {
  background: var(--nav-pill-bg, rgba(79, 172, 254, 0.1));
  color: var(--nav-active-text-color, var(--primary-color, #4facfe));
}

.nav-list li.menu-item-has-children>a::after {
  content: "▾";
  margin-left: 6px;
  font-size: 10px;
}

.nav-list li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--main-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 1500;
}

.nav-list li ul.sub-menu li {
  width: 100%;
}

.nav-list li ul.sub-menu a {
  padding: 8px 16px;
  white-space: nowrap;
  border-radius: 0;
  background: transparent;
}

.nav-list li ul.sub-menu a:hover,
.nav-list li ul.sub-menu .current-menu-item>a {
  background: var(--nav-pill-bg, rgba(79, 172, 254, 0.1));
  color: var(--nav-active-text-color, var(--primary-color, #4facfe));
}

.nav-list li:hover>ul.sub-menu,
.nav-list li ul.sub-menu:hover {
  display: block;
}

.nav-list li ul.sub-menu li.menu-item-has-children>a::after {
  content: "▸";
  margin-left: 6px;
  font-size: 10px;
}

.nav-list li ul.sub-menu ul.sub-menu {
  top: 0;
  left: 100%;
  margin-left: 4px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  /*margin-left: 10px;*/
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: rgba(0, 0, 0, 0.1);
}

.nav-search-btn {
  background: none;
  border: none;
  color: var(--nav-text-color, var(--text-sub));
  font-size: 16px;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s;
}

.nav-search-btn:hover {
  color: var(--nav-active-text-color, var(--primary-color, #4facfe));
  transform: scale(1.1);
}

.nav-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  /*box-shadow: 0 6px 18px var(--primary-shadow);*/
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.nav-login-btn i {
  font-size: 16px;
}

.nav-login-btn:hover {
  transform: translateY(-1px);
  /*box-shadow: 0 10px 26px var(--primary-shadow);*/
  opacity: 0.9;
}

.user-menu-wrapper {
  position: relative;
  z-index: 2000;
  margin-left: 10px;
  padding-bottom: 20px;
  margin-bottom: -20px;
  pointer-events: auto;
}

.user-bubble {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: #fff;
  overflow: visible;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2004;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.user-bubble img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50% !important;
  border: 2px solid #fff;
}

.avatar-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fb7299;
  color: #fff;
  font-size: 8px;
  padding: 1px 3px;
  border-radius: 4px;
  line-height: 1;
  z-index: 2;
}

.user-menu-wrapper:hover .user-bubble {
  width: 70px;
  height: 70px;
  transform: translateY(25px);
  border-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.user-dropdown-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
  width: 260px;
  padding: 70px 15px 15px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 2003;
  transition: all 0.3s ease;
  text-align: center;
}

.user-menu-wrapper:hover .user-dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  top: 40px;
}

.ud-row-name {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #212529;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ud-row-level {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 6px 0 10px;
}

.vip-tag {
  font-size: 10px;
  padding: 1px 5px;
  border-radius: 3px;
  background: #fb7299;
  color: #fff;
  cursor: help;
  position: relative;
}

.level-tag {
  font-size: 10px;
  font-weight: 700;
  color: #f0b90b;
  font-style: italic;
  border: 1px solid #f0b90b;
  padding: 0 4px;
  border-radius: 3px;
}

.tooltip-trigger:hover::after {
  content: attr(data-title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 5px 8px;
  border-radius: 4px;
  white-space: nowrap;
  font-size: 10px;
  margin-bottom: 5px;
}

.ud-row-money {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 10px;
}

.money-item {
  display: flex;
  flex-direction: column;
}

.money-item .num {
  font-weight: 700;
  color: #2c3e50;
  font-size: 14px;
}

.money-item .label {
  font-size: 10px;
  color: #999;
}

.ud-row-social {
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  margin-bottom: 12px;
}

.social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.social-item .num {
  font-weight: 700;
  font-size: 16px;
  color: #333;
}

.social-item .label {
  font-size: 11px;
  color: #9499a0;
}

.social-item:hover .num {
  color: var(--primary-color, var(--primary-color, #4facfe));
}

.ud-row-vip {
  margin: 0 8px 10px;
}

.vip-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: linear-gradient(90deg, #ffecf2 0%, #fff 100%);
  border-radius: 8px;
  color: #fb7299;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #ffdeeb;
  transition: all 0.2s;
}

.vip-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 10px rgba(251, 114, 153, 0.2);
}

.ud-links {
  text-align: left;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ud-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  color: #61666d;
  font-size: 13px;
  border-radius: 8px;
  transition: background 0.2s;
}

.ud-link-item:hover {
  background: #f1f2f3;
  color: #333;
}

.ud-link-item i {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.dropdown-divider {
  height: 1px;
  background: #e3e5e7;
  margin: 10px 0;
}

.ud-logout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  color: #9499a0;
  font-size: 13px;
  border-radius: 8px;
}

.ud-logout:hover {
  background: #f6f7f8;
  color: #333;
}

.guest-bubble {
  color: var(--primary-color, var(--primary-color, #4facfe));
  font-size: 14px;
  font-weight: 700;
}

.user-bubble.guest-bubble {
  width: 48px;
  height: 48px;
  background: radial-gradient(circle at 30% 0, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.15)) no-repeat;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.15),
    inset 0 0 12px rgba(255, 255, 255, 0.6);
}

.guest-bubble i {
  font-size: 22px;
  color: var(--primary-color, #4facfe);
}

.guest-bubble:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.25),
    inset 0 0 16px rgba(255, 255, 255, 0.7);
}

/* 修复登录按钮无法点击的问题 */
.user-bubble,
.guest-bubble {
  pointer-events: auto !important;
}

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  pointer-events: none;
}

.search-modal.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
}

.close-search {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 40px;
  background: none;
  border: none;
  color: #333;
  cursor: pointer;
  line-height: 1;
}

.search-container {
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  text-align: center;
}

.search-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #ddd;
  font-size: 32px;
  padding: 15px 0;
  color: #333;
  text-align: center;
  outline: none;
  transition: border-color 0.3s;
}

.search-field:focus {
  border-color: var(--primary-color, var(--primary-color, #4facfe));
}

.search-tip {
  margin-top: 20px;
  color: #999;
  font-size: 14px;
}

.search-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.search-input {
  width: 100%;
  padding: 12px 20px 12px 45px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  font-size: 16px;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color, var(--primary-color, #4facfe));
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(79, 172, 254, 0.2);
}

.search-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #607d8b;
  font-size: 18px;
}

.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  display: none;
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
}

.suggestion-item {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.suggestion-item:hover {
  background-color: #f8f9fa;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.suggestion-item img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  margin-right: 15px;
}

.suggestion-content h4 {
  margin: 0 0 5px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main, #2c3e50);
}

.suggestion-content p {
  margin: 0;
  font-size: 12px;
  color: var(--text-sub, #607d8b);
  line-height: 1.4;
}

.hero-slider {
  width: 100%;
  max-width: var(--site-width);
  margin: 110px auto 40px;
  padding: 0 20px;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  position: relative;
}

.hero-slider-full {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 40px;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  position: relative;
}

.hero-slider-full .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  border: none;
}

.hero-slider-full .slide-img {
  height: 500px;
  object-fit: cover;
  filter: brightness(0.9);
}

.hero-slider-full .carousel-caption {
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 800px;
  padding: 25px 30px;
  background: rgba(0, 0, 0, 0.4) !important;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-slider-full h5 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 28px;
}

.hero-slider-full p {
  margin-bottom: 0;
  font-size: 16px;
  opacity: 0.95;
}

.hero-slider .carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  transform: translateZ(0);
}

.slide-img {
  height: 400px;
  object-fit: cover;
  filter: brightness(0.95);
}

.hero-slider .carousel-caption {
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 600px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.25) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-slider h5 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.hero-slider p {
  margin-bottom: 0;
  font-size: 14px;
  opacity: 0.9;
}

.slider-search-module {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.slider-custom-html {
  text-align: center;
  font-size: 14px;
  color: #fff;
}

.slider-hot-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff4b2b, #ff0000);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.slider-search-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.28);
}

.slider-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
  border-radius: 999px 0 0 999px;
}

.slider-search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.slider-search-btn {
  border: none;
  outline: none;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.slider-search-btn i {
  font-size: 20px;
}

.slider-search-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
  color: #fff;
}

.slider-search-btn:active {
  transform: scale(0.96);
}

.slider-hot-search {
  margin-top: 10px;
}

.slider-hot-title {
  font-size: 13px;
  opacity: 0.9;
  text-align: center;
  margin-bottom: 6px;
}

.slider-hot-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.slider-hot-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.slider-hot-tag:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .slider-search-inner {
    padding: 8px 12px;
    gap: 8px;
  }

  .slider-search-input {
    font-size: 13px;
  }

  .slider-search-btn {
    width: 34px;
    height: 34px;
  }
}

.glass-icon {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  padding: 15px;
  background-size: 50%;
  backdrop-filter: blur(4px);
}

.site-container {
  max-width: var(--site-width);
  margin: 0 auto 60px;
  padding: 0 20px;
}

.app-card {
  position: relative;
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--card-bg) !important;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px !important;
  transition: all 0.3s ease;
  overflow: visible;
}

.app-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.app-header {
  position: relative;
  margin-bottom: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.platform-badge {
  position: absolute;
  top: -15px;
  right: -5px;
  background: #263238;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.app-icon-wrapper {
  width: 80px;
  height: 80px;
  display: block;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s;
}

.app-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.app-card:hover .app-icon-wrapper {
  transform: scale(1.08) rotate(-3deg);
}

.content {
  width: 100%;
  margin-bottom: 15px;
}

.app-title {
  font-size: 16px;
  font-weight: 700;
  margin: 10px 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-title a {
  color: var(--text-main);
}

.app-title a:hover {
  color: var(--primary-color, var(--primary-color, #4facfe));
}

.app-meta {
  display: flex;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px !important;
}

.meta-tag {
  font-size: 11px;
  color: var(--text-sub);
  background: rgba(0, 0, 0, 0.06);
  padding: 2px 8px;
  border-radius: 4px;
  font-family: monospace;
}

.app-action {
  width: 100%;
  margin-top: auto;
  padding: 0 5px;
}

.btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 0;
  background: transparent;
  border: 2px solid var(--primary-color, var(--primary-color, #4facfe));
  border-radius: 12px;
  color: var(--primary-color, var(--primary-color, #4facfe)) !important;
  font-weight: 700;
  font-size: 14px;
  backdrop-filter: none;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-download i {
  font-size: 16px;
  color: var(--primary-color, var(--primary-color, #4facfe));
  transition: all 0.3s ease;
}

.btn-download:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, var(--primary-color, var(--primary-color, #4facfe)) 0%, #00f2fe 100%);
  border-color: var(--primary-color, var(--primary-color, #4facfe));
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(79, 172, 254, 0.4);
}

.btn-download:hover i {
  color: #fff;
}

.btn-download:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(79, 172, 254, 0.3);
  opacity: 0.9;
}

.btn-tab {
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 14px;
  color: #607d8b;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-tab:hover {
  background: #fff;
  transform: translateY(-2px);
  color: var(--primary-color, var(--primary-color, #4facfe));
}

.btn-tab.active {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: none;
}

.home-section {
  position: relative;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0 60px;
  width: 100%;
}

.pagination .screen-reader-text {
  display: none;
}

.nav-links {
  display: flex;
  gap: 12px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-weight: 700;
  font-size: 14px;
  color: #607d8b;
  text-decoration: none !important;
  border-radius: 10px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

a.page-numbers {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

a.page-numbers:hover {
  transform: translateY(-3px);
  background: #fff;
  color: var(--primary-color, var(--primary-color, #4facfe));
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-numbers.current {
  background: linear-gradient(135deg, var(--primary-color, var(--primary-color, #4facfe)) 0%, #00f2fe 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
  transform: scale(1.1);
}

.page-numbers.dots {
  background: transparent;
  border: none;
  color: #999;
  letter-spacing: 2px;
}

.loading-blur {
  filter: blur(5px);
  opacity: 0.6;
  transition: all 0.3s ease;
  pointer-events: none;
}

.glass-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 20px rgba(79, 172, 254, 0.5);
  animation: loader-spin 1.5s infinite ease-in-out;
}

@keyframes loader-spin {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
    box-shadow: 0 0 40px rgba(0, 242, 254, 0.8);
  }

  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
}

.load-more-container {
  text-align: center;
  margin: 40px 0;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: var(--primary-gradient, linear-gradient(135deg, var(--primary-color, var(--primary-color, #4facfe)) 0%, #00f2fe 100%));
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.load-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
}

.load-more-btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
}

.load-more-btn .spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.load-more-btn.loading .spinner {
  display: inline-block;
}

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

  100% {
    transform: rotate(360deg);
  }
}

.user-banner {
  height: 200px;
  background: url('https://api.paugram.com/wallpaper/') center/cover no-repeat;
  position: relative;
}

.user-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
}

.banner-content {
  position: relative;
  height: 100%;
  z-index: 2;
}

.user-header-info {
  position: absolute;
  bottom: -20px;
  left: 20px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  width: 100%;
}

.user-avatar-large img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.user-text-info {
  margin-bottom: 15px;
  flex: 1;
}

.h-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.u-name {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .u-name {
    color: #333;
    text-shadow: none;
  }

  .user-header-info {
    bottom: -70px;
  }

  .user-banner {
    margin-bottom: 100px;
  }
}

.h-bio {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  max-width: 600px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .h-bio {
    color: #666;
    text-shadow: none;
  }
}

.user-stats-bar {
  display: flex;
  align-items: center;
  gap: 40px;
  color: #343a40;
  margin-left: auto;
  margin-right: 20px;
  margin-bottom: -30px;
  z-index: 5;
}

@media (max-width: 768px) {
  .user-stats-bar {
    display: none;
  }
}

.s-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
}

.s-item:hover {
  color: var(--secondary-color, #00a1d6);
  transform: translateY(-2px);
}

.s-item .num {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.s-item .label {
  font-size: 12px;
  opacity: 0.85;
  margin-top: 2px;
  font-weight: 400;
}

.user-nav-bar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
  height: 60px;
  width: 100%;
  top: 60px;
  z-index: 100;
  display: flex;
  align-items: center;
}

.user-nav-bar .nav-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.u-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 30px;
  height: 100%;
  margin-left: 160px;
}

@media (max-width: 768px) {
  .u-tabs {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .u-tabs li {
    font-size: 13px;
    padding: 0 10px;
    flex-shrink: 0;
  }

  .user-nav-bar .nav-inner {
    padding: 0 10px;
  }
}

.u-tabs li {
  font-size: 15px;
  color: #61666d;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  position: relative;
  transition: color 0.3s;
  font-weight: 500;
  top: 30px;
}

.u-tabs li i {
  font-size: 16px;
  margin-bottom: 2px;
}

.u-tabs li:hover {
  color: var(--secondary-color, #00a1d6);
}

.u-tabs li.active {
  color: var(--secondary-color, #00a1d6);
  font-weight: 600;
}

.u-tabs li.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  background: var(--secondary-color, #00a1d6);
  border-radius: 3px 3px 0 0;
}

.user-content-area {
  min-height: 500px;
}

.tab-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  border-left: 4px solid var(--secondary-color, #00a1d6);
  padding-left: 10px;
  color: #333;
}

.u-tab-content {
  display: none;
  transition: opacity 0.3s ease;
}

.u-tab-content.active {
  display: block;
}

.empty-state {
  text-align: center;
  padding: 100px 0;
  color: #999;
}

.wallet-card .w-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

.u-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.u-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-head .title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.edit-link {
  font-size: 12px;
  color: var(--secondary-color, #00a1d6);
  border: 1px solid var(--secondary-color, #00a1d6);
  padding: 2px 10px;
  border-radius: 4px;
  transition: all 0.2s;
}

.edit-link:hover {
  background: var(--secondary-color, #00a1d6);
  color: #fff;
}

.cert-card {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: box-shadow 0.2s;
  padding: 12px 15px;
}

.cert-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cert-icon-box {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f2f3;
  border-radius: 50%;
  color: #f0b90b;
  font-size: 16px;
}

.cert-info .cert-title {
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.cert-info .cert-desc {
  font-size: 12px;
  color: #999;
  margin-top: 2px;
}

.creator-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn-creator {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 34px;
  font-size: 13px;
  border-radius: 4px;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-creator.upload {
  background: #fff;
  border: 1px solid #d7dde4;
  color: #333;
}

.btn-creator.upload:hover {
  border-color: var(--secondary-color, #00a1d6);
  color: var(--secondary-color, #00a1d6);
}

.btn-creator.manage {
  background: #fff;
  border: 1px solid #d7dde4;
  color: #333;
}

.btn-creator.manage:hover {
  border-color: var(--secondary-color, #00a1d6);
  color: var(--secondary-color, #00a1d6);
}

.btn-charge {
  width: 100%;
  height: 34px;
  background: #fff;
  border: 1px solid #fb7299;
  color: #fb7299;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-charge:hover {
  background: #fb7299;
  color: #fff;
}

.notice-content {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  word-break: break-all;
}

.info-row {
  display: flex;
  margin-bottom: 8px;
  font-size: 12px;
}

.info-row:last-child {
  margin-bottom: 0;
}

.info-row .label {
  color: #999;
  width: 40px;
  flex-shrink: 0;
}

.info-row .value {
  color: #333;
}

.select-all {
  user-select: all;
}

@media (max-width: 991px) {
  .user-sidebar {
    margin-top: 20px;
  }
}

.settings-avatar-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.current-avatar {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.current-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s;
}

.avatar-overlay i {
  font-size: 24px;
  margin-bottom: 2px;
}

.avatar-overlay span {
  font-size: 12px;
}

.current-avatar:hover .avatar-overlay {
  opacity: 1;
}

#avatar-upload {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.banner-upload-box {
  margin-top: 10px;
}

.banner-preview {
  width: 100%;
  height: 120px;
  background-color: #f4f5f7;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

.avatar-trigger-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
}

.avatar-trigger-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.avatar-mask-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.avatar-mask-overlay i {
  font-size: 24px;
  margin-bottom: -2px;
}

.avatar-trigger-wrapper:hover .avatar-mask-overlay {
  opacity: 1;
}

.user-avatar-large {
  border: none !important;
  padding: 0 !important;
  background: none !important;
  box-shadow: none !important;
}

.user-avatar-large img,
.avatar-trigger-wrapper img.avatar {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.avatar-trigger-wrapper {
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 120px;
  height: 120px;
  overflow: hidden;
  position: relative;
  background: #fff;
}

.bili-modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.bili-modal-mask.active {
  opacity: 1;
  visibility: visible;
}

.bili-modal-wrapper {
  width: 800px;
  height: 500px;
  background: transparent;
  border-radius: 10px;
  display: flex;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  z-index: 1;
}

.bili-modal-mask.active .bili-modal-wrapper {
  transform: scale(1);
}

.bili-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  border: none;
  background: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
  z-index: 100;
  line-height: 1;
}

.bili-close-btn:hover {
  color: #333;
}

.bili-left-banner {
  width: 380px;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.bili-left-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 161, 214, 0.1);
  pointer-events: none;
}

.left-ad-container {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 1;
}

.left-ad-container .ad-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.left-ad-container h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px 0;
}

.left-ad-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.left-ad-container li {
  font-size: 14px;
  color: #666;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.left-ad-container li:last-child {
  border-bottom: none;
}

.left-ad-container li::before {
  content: '✓';
  color: var(--primary-color, var(--primary-color, #4facfe));
  font-weight: bold;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .left-ad-container {
    display: none;
  }
}

.bili-right-form {
  flex: 1;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 20;
}

.login-mascots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
  border-radius: 10px;
}

.mascot-img {
  position: absolute;
  width: 120px;
  transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
  bottom: -10px;
}

.m-left {
  left: -10px;
}

.m-right {
  right: -10px;
}

.bili-modal-wrapper:focus-within .m-left,
.bili-modal-wrapper:focus-within .m-right {}

@media (max-width: 768px) {
  .login-mascots {
    display: none;
  }
}

.login-error-message {
  background: rgba(255, 87, 87, 0.1);
  border: 1px solid rgba(255, 87, 87, 0.3);
  color: #ff5757;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideDown 0.3s ease;
  transition: opacity 0.3s ease;
}

.login-error-message i {
  font-size: 18px;
}

.login-success-message {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: slideDown 0.3s ease;
  transition: opacity 0.3s ease;
}

.login-success-message i {
  font-size: 18px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-title {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.login-title h3 {
  font-size: 18px;
  font-weight: 500;
  color: #212121;
}

.input-group {
  margin-bottom: 15px;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.input-group label {
  font-size: 14px;
  color: #212121;
  width: 100%;
  border: none;
  margin-right: 0;
  margin-bottom: 8px;
  line-height: 1;
  font-weight: 500;
}

.bili-input {
  width: 100%;
  border: 1px solid #e7e7e7;
  background: #fff;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: all 0.3s;
}

.bili-input:focus {
  border-color: var(--primary-color, #4facfe);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary-color, #4facfe) 30%, transparent);
}

.input-group:focus-within {
  border-color: transparent;
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.btn-login,
.btn-register {
  flex: 1;
  min-width: 120px;
  max-width: 200px;
  height: 40px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  box-sizing: border-box;
}

.btn-login {
  background: var(--secondary-color, #00a1d6);
  color: #fff;
  transition: all 0.3s;
  border: none;
  position: relative;
  z-index: 100;
  pointer-events: auto !important;
}

.btn-login:hover {
  background: var(--primary-color, #4facfe);
}

.btn-register {
  background: #fff;
  border: 1px solid #e7e7e7;
  color: #333;
  transition: all 0.3s;
}

.btn-register:hover {
  border-color: var(--secondary-color, #00a1d6);
  color: var(--secondary-color, #00a1d6);
}

.form-extras {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}

.form-extras a {
  color: var(--secondary-color, #00a1d6);
}

.form-extras label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  padding-left: 24px;
  user-select: none;
}

.form-extras label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.form-extras label .checkmark {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 2px solid #e7e7e7;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.form-extras label:hover .checkmark {
  border-color: var(--primary-color, #4facfe);
}

.form-extras label input[type="checkbox"]:checked~.checkmark {
  background-color: var(--primary-color, #4facfe);
  border-color: var(--primary-color, #4facfe);
}

.form-extras label .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-extras label input[type="checkbox"]:checked~.checkmark:after {
  display: block;
}

.form-extras label input[type="checkbox"]:focus~.checkmark {
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-color, #4facfe) 30%, transparent);
}

.third-party-login {
  margin-top: auto;
  text-align: center;
}

.separator {
  position: relative;
  font-size: 12px;
  color: #999;
  margin-bottom: 15px;
}

.separator::before,
.separator::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: #e7e7e7;
}

.separator::before {
  left: 0;
}

.separator::after {
  right: 0;
}

.icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.tp-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  cursor: not-allowed;
  transition: all 0.3s;
}

.tp-icon:hover {
  color: #fff;
}

.tp-icon.wechat:hover {
  background: #07c160;
}

.tp-icon.qq:hover {
  background: #12b7f5;
}

.tp-icon.weibo:hover {
  background: #fa2f2f;
}

.login-footer {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 15px;
}

.login-footer a {
  color: var(--secondary-color, #00a1d6);
}

.agreement-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  gap: 8px;
  flex-wrap: nowrap;
  font-size: 12px;
}

.agreement-checkbox input[type="checkbox"] {
  display: none;
}

.agreement-checkbox .checkmark {
  width: 16px;
  height: 16px;
  border: 2px solid #e7e7e7;
  border-radius: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.agreement-checkbox:hover .checkmark {
  border-color: var(--primary-color, #4facfe);
}

.agreement-checkbox input[type="checkbox"]:checked~.checkmark {
  background: var(--primary-color, #4facfe);
  border-color: var(--primary-color, #4facfe);
}

.agreement-checkbox input[type="checkbox"]:checked~.checkmark::after {
  content: '';
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -2px;
}

.agreement-checkbox .text {
  display: inline;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .bili-modal-wrapper {
    width: 90%;
    height: auto;
    flex-direction: column;
  }

  .bili-left-banner {
    width: 100%;
    height: 100px;
  }

  .login-mascots {
    display: none;
  }

  .login-title {
    margin-top: 10px;
  }
}

.auth-view {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  width: 100%;
}

.auth-view.active {
  display: block;
  opacity: 1;
  animation: fadeInSlide 0.4s ease forwards;
}

@keyframes fadeInSlide {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.bili-right-form {
  justify-content: center;
}

.agreement-modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.agreement-modal-mask.active {
  opacity: 1;
  visibility: visible;
}

.agreement-modal-wrapper {
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.agreement-modal-mask.active .agreement-modal-wrapper {
  transform: scale(1);
}

.agreement-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(255, 255, 255, 0.5);
}

.agreement-modal-header h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.agreement-close-btn {
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  font-size: 20px;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}

.agreement-close-btn:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #333;
  transform: rotate(90deg);
}

.agreement-modal-content {
  padding: 25px;
  overflow-y: auto;
  flex: 1;
}

.agreement-modal-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 20px 0 10px;
}

.agreement-modal-content h3:first-child {
  margin-top: 0;
}

.agreement-modal-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  margin: 15px 0 8px;
}

.agreement-modal-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 10px;
}

.agreement-modal-content ul {
  margin: 10px 0;
  padding-left: 20px;
}

.agreement-modal-content li {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .agreement-modal-wrapper {
    width: 95%;
    max-height: 85vh;
  }

  .agreement-modal-header {
    padding: 15px 20px;
  }

  .agreement-modal-header h3 {
    font-size: 16px;
  }

  .agreement-modal-content {
    padding: 20px;
  }

  .agreement-modal-content h3 {
    font-size: 15px;
  }

  .agreement-modal-content p,
  .agreement-modal-content li {
    font-size: 13px;
  }
}

.footer {
  padding: 30px 0;
  text-align: center;
}

.footer-inner {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.site-footer {
  padding: 0 20px 40px;
  width: 100%;
  max-width: var(--site-width);
  margin: 0 auto;
}

.footer-glass {
  padding: 50px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.1),
    inset 0 0 20px rgba(255, 255, 255, 0.5);
  color: var(--text-main);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.brand-name {
  font-weight: 800;
  font-size: 22px;
  margin: 0;
}

.footer-desc {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.6;
  max-width: 300px;
}

.footer-year span {
  background: #2c3e50;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  opacity: 0.9;
}

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

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: var(--text-sub);
  font-size: 14px;
  transition: all 0.2s;
  position: relative;
  padding-left: 0;
}

.footer-menu a:hover {
  color: #fb7299;
  padding-left: 5px;
}

.footer-menu a::before {
  content: '›';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.2s;
}

.footer-menu a:hover::before {
  opacity: 1;
  left: -10px;
}

.social-icons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .social-icons {
    justify-content: flex-start;
  }

  .text-md-end {
    text-align: left !important;
  }
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: #555;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-btn:hover {
  background: #fff;
  color: var(--primary-color, var(--primary-color, #4facfe));
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.copyright p {
  margin: 0 0 5px;
  font-size: 12px;
  color: #999;
}

.copyright a {
  color: #888;
  border-bottom: 1px dashed #ccc;
}

.copyright a:hover {
  color: #333;
  border-bottom-style: solid;
}

.theme-credit {
  margin-top: 10px !important;
  font-size: 11px !important;
  opacity: 0.5;
  font-family: monospace;
}

.site-footer-uisdc-style {
  position: relative;
  margin-top: 140px;
  width: 100%;
  color: #555;
  padding-bottom: 0;
}

.footer-aurora-bg {
  position: absolute;
  top: -120px;
  bottom: -2px;
  left: 0;
  right: 0;
  background: #f9fafb;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%);
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: floatBlob 15s infinite alternate;
}

.blob-1 {
  top: 0;
  left: -10%;
  width: 600px;
  height: 600px;
  background: #e0f2fe;
}

.blob-2 {
  bottom: 0;
  right: -10%;
  width: 700px;
  height: 700px;
  background: #ffe4e6;
}

.blob-3 {
  top: 30%;
  left: 40%;
  width: 500px;
  height: 500px;
  background: #f3e8ff;
}

@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, -20px) scale(1.05);
  }
}

.footer-hero-bar {
  position: absolute;
  top: -80px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.hero-glass-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 30px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.hero-left h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.hero-left p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

.hero-center-mascot {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 130px;
  pointer-events: none;
  margin-bottom: -1px;
  z-index: 2;
}

.hero-center-mascot img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.hero-right {
  display: flex;
  gap: 15px;
  position: relative;
  z-index: 3;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-feedback {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  color: #fff;
}

.btn-save {
  background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
  color: #fff;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  color: #fff;
}

.footer-main-content {
  position: relative;
  z-index: 5;
  padding-top: 100px;
  padding-bottom: 30px;
}

.f-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 24px;
}

.f-text-block {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  text-align: justify;
}

.f-brand-mark {
  font-size: 24px;
  font-weight: 900;
  color: #e5e7eb;
  letter-spacing: -1px;
}

.f-link-grid {
  list-style: none;
  padding: 0;
  margin: 0;
}

.f-link-grid li {
  margin-bottom: 12px;
}

.f-link-grid a {
  color: #666;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  display: block;
}

.f-link-grid a:hover {
  color: var(--secondary-color, #00a1d6);
  transform: translateX(3px);
}

.f-community-box {
  text-align: right;
}

.social-row {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 25px;
}

.s-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fff;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f0f0f0;
  transition: all 0.3s;
  font-size: 18px;
}

.s-icon:hover {
  background: #333;
  color: #fff;
  border-color: #333;
  transform: translateY(-3px);
}

.big-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.big-stat .num {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(45deg, #ff6b6b, #f06595, #cc5de8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -2px;
}

.big-stat .label {
  font-size: 13px;
  color: #999;
  margin-top: 5px;
  font-weight: 500;
}

.partner-badges {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 25px;
}

.badge-item {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.footer-friend-links {
  position: relative;
  z-index: 5;
  padding-bottom: 20px;
}

.flink-box {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.flink-title {
  color: #999;
  font-weight: 600;
  white-space: nowrap;
}

.flink-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.flink-list a {
  color: #777;
  text-decoration: none;
  transition: color 0.2s;
}

.flink-list a:hover {
  color: var(--secondary-color, #00a1d6);
}

.footer-bottom-bar {
  position: relative;
  z-index: 5;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.aurora-separator {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #a18cd1, #fbc2eb, #ff9a9e, #fad0c4);
}

@media (max-width: 991px) {
  .site-footer-uisdc-style {
    margin-top: 60px;
  }

  .footer-hero-bar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .hero-glass-box {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 20px;
  }

  .hero-center-mascot {
    display: none;
  }

  .footer-main-content {
    padding-top: 0;
  }

  .f-community-box {
    text-align: left;
    margin-top: 40px;
    border-top: 1px dashed #eee;
    padding-top: 30px;
  }

  .social-row,
  .partner-badges {
    justify-content: flex-start;
  }

  .big-stat {
    align-items: flex-start;
  }

  .big-stat .num {
    font-size: 42px;
  }

  .flink-box {
    flex-direction: column;
    gap: 5px;
  }
}

.site-footer-uisdc-style .site-container {
  margin-bottom: 0 !important;
}

@media (min-width: 992px) {
  .footer-main-content .col-lg-6 .px-lg-5 {
    padding-left: 100px !important;
    padding-right: 5px !important;
  }
}

.wechat-hover-trigger {
  position: relative;
  cursor: pointer;
}

.hover-qr-box {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 140px;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 100;
  pointer-events: none;
}

.hover-qr-box::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #fff;
}

.hover-qr-box img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 5px;
  border-radius: 4px;
}

.hover-qr-box span {
  font-size: 12px;
  color: #666;
  display: block;
}

.wechat-hover-trigger:hover .hover-qr-box {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.wechat-hover-trigger:hover {
  background: #07c160;
  color: #fff;
  border-color: #07c160;
}

.flink-list-wrap {
  display: inline-block;
}

.flink-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.flink-list li a {
  color: #777;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

.flink-list li a:hover {
  color: var(--secondary-color, #00a1d6);
}

.copyright img {
  vertical-align: middle;
  margin-top: -2px;
}

.coodot-toast {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #343a40;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: toastSlideDown 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28) forwards;
  opacity: 0;
}

.coodot-toast.success i {
  color: #4caf50;
  font-size: 16px;
}

.coodot-toast.error i {
  color: #f44336;
  font-size: 16px;
}

.coodot-toast.hide {
  animation: toastFadeOut 0.4s ease forwards;
}

@keyframes toastSlideDown {
  0% {
    transform: translate(-50%, -20px);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

@keyframes toastFadeOut {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -20px);
    opacity: 0;
  }
}

.btn-ghost-banner {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  border-radius: var(--main-radius, 12px);
  transition: all 0.3s ease;
  margin-left: 15px;
  margin-bottom: 30px;
  pointer-events: auto;
}

.btn-ghost-banner:hover {
  background: var(--secondary-color, #00a1d6);
  border-color: var(--secondary-color, #00a1d6);
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .btn-ghost-banner {
    display: none;
  }
}

.app-card,
.glass,
.u-card,
.footer-glass {
  border-radius: var(--main-radius) !important;
}

.user-bubble {
  border-radius: 50% !important;
}

.btn-download,
.btn-login,
.btn-register,
.btn-charge,
.btn-creator,
.edit-link,
.vip-card,
.btn-primary,
.btn-warning,
.btn-outline-secondary {
  border-radius: var(--main-radius) !important;
}

.bili-input,
.form-control,
.input-group {
  border-radius: var(--main-radius) !important;
}

.bili-modal-wrapper,
.user-dropdown-menu,
.wallet-card,
.vip-banner {
  border-radius: var(--main-radius) !important;
}

.bili-modal-wrapper,
.app-card,
.u-card {
  overflow: hidden;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-main, #2c3e50) !important;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-sub, #607d8b) !important;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary-color, #00a1d6) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gradient, linear-gradient(135deg, var(--primary-color, var(--primary-color, #4facfe)) 0%, #00f2fe 100%));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .app-card .app-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .app-card .app-title {
    font-size: 16px;
  }

  .search-input {
    font-size: 14px;
    padding: 10px 15px 10px 40px;
  }

  .pagination {
    gap: 5px;
  }

  .pagination .page-numbers {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .app-card .content {
    padding: 15px;
  }

  .app-card .app-meta {
    flex-direction: column;
    gap: 5px;
  }

  .search-suggestions {
    max-height: 300px;
  }

  .suggestion-item {
    padding: 10px 15px;
  }

  .suggestion-item img {
    width: 30px;
    height: 30px;
  }
}

.single-wrapper {
  padding: 40px 0;
  min-height: calc(100vh - 200px);
}

.single-post {
  padding: 40px;
  border-radius: var(--main-radius);
  margin-bottom: 30px;
}

.single-header {
  margin-bottom: 30px;
  text-align: center;
}

.post-categories {
  margin-bottom: 20px;
}

.post-categories a {
  display: inline-block;
  padding: 5px 15px;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin: 0 5px;
}

.single-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.single-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--text-sub);
  font-size: 14px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.meta-item i {
  font-size: 16px;
}

.single-featured {
  margin-bottom: 30px;
  border-radius: var(--main-radius);
  overflow: hidden;
}

.single-featured img {
  width: 100%;
  height: auto;
  display: block;
}

.single-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-main);
  margin-bottom: 30px;
}

.single-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 30px 0 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-gradient);
}

.single-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 25px 0 12px;
}

.single-content p {
  margin-bottom: 15px;
}

.single-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--main-radius);
  margin: 20px 0;
}

.single-content blockquote {
  border-left: 4px solid var(--primary-color, var(--primary-color, #4facfe));
  padding: 15px 20px;
  margin: 20px 0;
  background: rgba(79, 172, 254, 0.1);
  border-radius: 0 var(--main-radius) var(--main-radius) 0;
}

.single-content ul,
.single-content ol {
  margin: 15px 0;
  padding-left: 30px;
}

.single-content li {
  margin-bottom: 8px;
}

.single-content code {
  background: rgba(0, 0, 0, 0.05);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
}

.single-content pre {
  background: #2d2d2d;
  color: #f8f8f2;
  padding: 20px;
  border-radius: var(--main-radius);
  overflow-x: auto;
  margin: 20px 0;
}

.single-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

.single-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-tags a {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(79, 172, 254, 0.1);
  color: var(--primary-color, var(--primary-color, #4facfe));
  border-radius: 15px;
  font-size: 13px;
  transition: all 0.3s;
}

.post-tags a:hover {
  background: var(--primary-gradient);
  color: #fff;
  transform: translateY(-2px);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  border-radius: var(--main-radius);
  margin-bottom: 30px;
}

.post-navigation a {
  flex: 1;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--main-radius);
  transition: all 0.3s;
  text-align: center;
}

.post-navigation a:hover {
  background: var(--primary-gradient);
  color: #fff;
  transform: translateY(-2px);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-widget {
  padding: 25px;
  border-radius: var(--main-radius);
}

.widget-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-gradient);
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--primary-color, #4facfe);
  border-radius: 5px;
}

.widget-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.author-desc {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 10px;
  line-height: 1.5;
}

.author-stats span {
  font-size: 13px;
  color: var(--text-sub);
}

.author-stats strong {
  color: var(--primary-color, var(--primary-color, #4facfe));
  font-weight: 700;
}

.widget-posts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.widget-post-item {
  display: flex;
  gap: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--main-radius);
  transition: all 0.3s;
}

.widget-post-item:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(5px);
}

.widget-post-thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--main-radius);
  overflow: hidden;
  flex-shrink: 0;
}

.widget-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.widget-post-thumb .no-thumb {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.widget-post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.widget-post-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.widget-post-title a {
  color: var(--text-main);
  transition: color 0.3s;
}

.widget-post-title a:hover {
  color: var(--primary-color, var(--primary-color, #4facfe));
}

.widget-post-meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--text-sub);
}

.widget-post-meta span {
  display: flex;
  align-items: center;
  gap: 3px;
}

.widget-comments {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.widget-comment-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--main-radius);
  transition: all 0.3s;
}

.widget-comment-item:hover {
  background: rgba(255, 255, 255, 0.8);
}

.comment-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
}

.comment-content {
  flex: 1;
}

.comment-author {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-main);
}

.comment-text a {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.5;
  transition: color 0.3s;
}

.comment-text a:hover {
  color: var(--primary-color, var(--primary-color, #4facfe));
}

.comment-date {
  font-size: 12px;
  color: var(--text-sub);
  margin-top: 5px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 8px;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--main-radius);
  transition: all 0.3s;
}

.category-list a:hover {
  background: var(--primary-gradient);
  color: #fff;
  transform: translateX(5px);
}

.cat-name {
  font-size: 14px;
  font-weight: 500;
}

.cat-count {
  font-size: 12px;
  background: rgba(79, 172, 254, 0.2);
  color: var(--primary-color, var(--primary-color, #4facfe));
  padding: 3px 10px;
  border-radius: 12px;
}

.category-list a:hover .cat-count {
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.widget-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  font-size: 13px;
  color: var(--text-main);
  transition: all 0.3s;
}

.tag-item:hover {
  background: var(--primary-gradient);
  color: #fff;
  transform: translateY(-2px);
}

.comments-section {
  padding: 40px;
  border-radius: var(--main-radius);
}

.comments-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.comments-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.comment-item {
  margin-bottom: 20px;
}

.comment-item .children {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 20px;
}

.comment-wrapper {
  display: flex;
  gap: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--main-radius);
}

.comment-wrapper .comment-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.comment-body {
  flex: 1;
}

.comment-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.comment-author a {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  transition: color 0.3s;
}

.comment-author a:hover {
  color: var(--primary-color, var(--primary-color, #4facfe));
}

.comment-date {
  font-size: 13px;
  color: var(--text-sub);
}

.comment-awaiting-moderation {
  font-size: 12px;
  color: #ff6b6b;
  background: rgba(255, 107, 107, 0.1);
  padding: 3px 10px;
  border-radius: 12px;
}

.comment-content {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 10px;
}

.comment-actions {
  display: flex;
  gap: 15px;
  font-size: 13px;
}

.comment-actions a {
  color: var(--text-sub);
  transition: color 0.3s;
}

.comment-actions a:hover {
  color: var(--primary-color, var(--primary-color, #4facfe));
}

.comment-navigation {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--main-radius);
}

.comment-navigation a {
  padding: 8px 16px;
  background: var(--primary-gradient);
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  transition: all 0.3s;
}

.comment-navigation a:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

.no-comments {
  text-align: center;
  padding: 40px;
  color: var(--text-sub);
  font-size: 16px;
}

.comment-form {
  margin-top: 30px;
}

.comment-reply-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-main);
}

.comment-notes {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 20px;
  padding: 10px 15px;
  background: rgba(79, 172, 254, 0.1);
  border-radius: var(--main-radius);
  border-left: 3px solid var(--primary-color, var(--primary-color, #4facfe));
}

.comment-form-field {
  margin-bottom: 15px;
}

.comment-form-field input,
.comment-form-field textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--main-radius);
  background: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: all 0.3s;
}

.comment-form-field input:focus,
.comment-form-field textarea:focus {
  outline: none;
  border-color: var(--primary-color, var(--primary-color, #4facfe));
  box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.2);
}

.comment-form-textarea textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit button {
  padding: 12px 30px;
  background: var(--primary-gradient);
  color: #fff;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.form-submit button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
}

@media (max-width: 992px) {
  .single-wrapper {
    padding: 20px 0;
  }

  .single-post {
    padding: 25px;
  }

  .single-title {
    font-size: 26px;
  }

  .sidebar {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .single-post {
    padding: 20px;
  }

  .single-title {
    font-size: 22px;
  }

  .single-meta {
    gap: 10px;
    font-size: 13px;
  }

  .post-categories a {
    padding: 4px 12px;
    font-size: 13px;
    margin: 0 3px 5px;
  }

  .post-navigation {
    flex-direction: column;
  }

  .comment-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .comment-meta {
    justify-content: center;
  }

  .comment-form-field input,
  .comment-form-field textarea {
    padding: 10px 12px;
    font-size: 13px;
  }

  .form-submit button {
    width: 100%;
    padding: 12px 20px;
  }
}

.section-header h2 {
  position: relative;
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  padding: 10px 30px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary-color, #4facfe);
  border-radius: 2px;
}

.five-grid-section {
  margin-bottom: 40px;
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1100px;
  z-index: 15;
  animation: liquidFloat 0.8s ease-out;
}

@keyframes liquidFloat {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0.95);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
    filter: blur(0);
  }
}

.recommends.items {
  display: grid;
  grid-template-columns: repeat(var(--grid-columns, 5), minmax(0, 1fr));
  gap: 18px;
  padding: 20px 24px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.18) 0%,
      rgba(255, 255, 255, 0.10) 50%,
      rgba(255, 255, 255, 0.18) 100%);
  backdrop-filter: blur(24px) saturate(170%);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.12),
    inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.recommends.items::before,
.recommends.items::after {
  content: none;
}

.recommends.items .item {
  position: relative;
}

.recommends.items .item-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  height: 80px;
  padding: 0 18px;
  text-decoration: none;
  color: inherit;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.50);
  /*box-shadow:*/
  /* 0 10px 24px rgba(0, 0, 0, 0.12),*/
  /*inset 0 1px 2px rgba(255, 255, 255, 0.7);*/
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, background 0.18s ease-out, border-color 0.18s ease-out;
  box-shadow: 3px 0px 28px rgba(0, 0, 0, 0.16), inset 0 1px 2px rgb(255 255 255 / 0%);
}

.recommends.items .item-wrap::before,
.recommends.items .item-wrap::after {
  content: none;
}

.recommends.items .item-wrap:hover {
  transform: translateY(-2px);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.16),
    inset 0 1px 2px rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.36);
  border-color: rgba(255, 255, 255, 0.70);
}

.recommends.items .item-ico {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  font-size: 20px;
  color: rgba(80, 100, 120, 0.9);
  box-shadow: none;
  flex-shrink: 0;
  transition: transform 0.18s ease-out;
}

.ico-svg,
/* Keep just in case for legacy */
.recommends.items .item-ico svg {
  width: 1em !important;
  height: 1em !important;
  display: block;
  fill: currentColor !important;
  stroke: currentColor !important;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.recommends.items .item-ico::after {
  content: none;
}

.recommends.items .item-wrap:hover .item-ico {
  transform: translateY(-1px);
}

.recommends.items .item-main {
  text-align: left;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recommends.items .item-title {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: rgba(60, 80, 100, 0.9);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  line-height: 1.3;
  transition: color 0.18s ease-out;
}

.recommends.items .item-title .go {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--primary-color, #4facfe);
  transition: background 0.18s ease-out, transform 0.18s ease-out;
}

.recommends.items .item-wrap:hover .item-title .go {
  color: #ffffff;
  background: var(--primary-color, #4facfe);
  transform: translateY(-1px);
}

.recommends.items .item-desc {
  font-size: 13px;
  margin: 0;
  color: rgba(80, 100, 120, 0.7);
  opacity: 0.9;
  line-height: 1.4;
  transition: color 0.18s ease-out;
}

.recommends.items .item-wrap:hover .item-desc {
  opacity: 1;
  color: rgba(60, 80, 100, 0.9);
}

@media (max-width: 992px) {
  .five-grid-section {
    width: 96%;
    bottom: 70px;
  }

  .recommends.items {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .five-grid-section {
    width: 98%;
    bottom: 60px;
    padding: 0 8px;
  }

  .recommends.items {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .five-grid-section {
    bottom: 50px;
    width: 100%;
    padding: 0 12px;
  }

  .recommends.items {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
  }

  .recommends.items .item-wrap {
    flex-direction: row;
    text-align: left;
    padding: 0 16px;
    gap: 14px;
  }

  .recommends.items .item-ico {
    width: 40px;
    height: 40px;
    font-size: 18px;
    flex-shrink: 0;
  }

  .recommends.items .item-main {
    text-align: left;
    flex: 1;
  }

  .recommends.items .item-title {
    justify-content: flex-start;
    margin-bottom: 4px;
    font-size: 14px;
  }
}

.recommends.items .ico {
  display: inline-block;
  transition: transform 0.18s ease-out;
}

[class^="ri-"],
[class*=" ri-"] {
  font-family: "remixicon" !important;
  font-style: normal;
}

.recommends.items .item-wrap:hover .ico {
  transform: translateY(-1px);
}

.recommends.items .item-wrap:active {
  transform: translateY(0);
}

/* 液态玻璃标题美化 */
.five-grid-section .section-header {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}

.five-grid-section .section-title {
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.3),
    0 1px 2px rgba(255, 255, 255, 0.2);
  margin: 0;
  padding: 10px 24px;

  /* 液态玻璃背景 */
  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.25) 0%,
      rgba(255, 255, 255, 0.15) 50%,
      rgba(255, 255, 255, 0.08) 100%);
  backdrop-filter: blur(25px) saturate(150%);
  -webkit-backdrop-filter: blur(25px) saturate(150%);

  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  position: relative;
  overflow: hidden;

  box-shadow:
    0 8px 25px rgba(0, 0, 0, 0.1),
    inset 0 2px 4px rgba(255, 255, 255, 0.6),
    inset 0 -1px 2px rgba(255, 255, 255, 0.2);
}

/* 液态标题光效 */
.five-grid-section .section-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.4) 30%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0.4) 70%,
      transparent 100%);
  animation: liquidTitleShimmer 4s infinite;
}

@keyframes liquidTitleShimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* 液态标题悬浮效果 */
.five-grid-section .section-title:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 12px 35px rgba(0, 0, 0, 0.15),
    inset 0 3px 6px rgba(255, 255, 255, 0.7),
    inset 0 -2px 4px rgba(255, 255, 255, 0.3);

  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(255, 255, 255, 0.25) 50%,
      rgba(255, 255, 255, 0.15) 100%);

  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-title h2 {
  position: relative;
  display: inline-block;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  padding: 10px 30px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: var(--primary-color, #4facfe);
  border-radius: 2px;
}

/* 液态玻璃额外美化效果 */
.five-grid-section {
  animation: none;
}