:root {
  --sidebar-width: 250px;
  --sidebar-collapsed-width: 60px;
  --primary-color: #1e293b;
  --primary-light: #334155;
  --secondary-color: #3b82f6;
  --secondary-hover: #2563eb;
  --accent-color: #ef4444;
  --text-color: #475569;
  --text-light: #94a3b8;
  --light-bg: #f8fafc;
  --dark-bg: #0f172a;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --modern-primary-color: #667eea;
  --modern-primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --modern-secondary-color: #f093fb;
  --modern-secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --modern-success-color: #4ecdc4;
  --modern-success-gradient: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
  --modern-warning-color: #ffecd2;
  --modern-warning-gradient: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
  --modern-error-color: #ff6b6b;
  --modern-error-gradient: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  --modern-background-color: #f8fafc;
  --modern-background-gradient: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
  --modern-card-background: rgba(255, 255, 255, 0.95);
  --modern-text-primary: #2d3748;
  --modern-text-secondary: #718096;
  --modern-border-color: rgba(226, 232, 240, 0.8);
  --modern-shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
  --modern-shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.12);
  --modern-shadow-heavy: 0 16px 48px rgba(0, 0, 0, 0.15);
  --modern-border-radius: 16px;
  --modern-border-radius-small: 8px;
  --modern-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  background: var(--modern-background-gradient);
  background-attachment: fixed;
  color: var(--text-color);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--modern-primary-gradient);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--modern-secondary-gradient);
}

html, body {
  height: 100%;
  overflow: auto;
}

.top-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  padding: 0 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary-color);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  transition: all 0.3s ease;
}

.navbar-left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.navbar-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 10px;
}

.navbar-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.user-area-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-controls {
  display: none;
  align-items: center;
  gap: 10px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  color: var(--primary-color);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand i {
  display: none;
}

.nav-links {
  display: none !important;
}

.language-selector {
  position: relative;
}

.language-selector-pc {
  display: block;
  position: relative;
  margin-left: 10px;
}

.language-selector-mobile {
  display: none;
  position: relative;
}

.language-btn {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.95rem;
}

.language-btn:hover {
  background: var(--secondary-color);
  color: white;
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  width: 180px;
  overflow: hidden;
  display: none;
  z-index: 1001;
  border: 1px solid var(--border-color);
}

.language-dropdown.show {
  display: block;
  animation: slideDown 0.3s ease;
}

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

.language-item {
  padding: 12px 16px;
  color: var(--text-color);
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
  font-weight: 500;
}

.language-item:hover {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  color: var(--secondary-color);
  padding-left: 20px;
}

.sidebar {
  position: fixed;
  top: 70px;
  left: 0;
  width: var(--sidebar-width);
  height: calc(100vh - 70px);
  height: calc(100dvh - 70px);
  background: white;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.05);
  z-index: 900;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  border-right: 1px solid var(--border-color);
}

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

.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}

.sidebar.collapsed {
  width: var(--sidebar-collapsed-width);
}

.sidebar-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-hover) 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 910;
  box-shadow: var(--shadow-md);
}

.sidebar-toggle:hover {
  transform: scale(1.1) rotate(180deg);
  box-shadow: var(--shadow-lg);
}

.sidebar.collapsed .sidebar-toggle {
  right: 15px;
}

.sidebar.collapsed .sidebar-toggle i {
  transform: rotate(180deg);
}

.sidebar-nav {
  list-style: none;
  padding: 20px 12px;
  padding-bottom: calc(60px + env(safe-area-inset-bottom, 20px)); /* 增加底部内边距 */
}

.sidebar-nav li {
  margin-bottom: 4px;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-weight: 500;
  font-size: 0.95rem;
}

.sidebar-nav a:hover {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
  color: var(--secondary-color);
  transform: translateX(4px);
}

.sidebar-nav a.active {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
  color: var(--secondary-color);
  font-weight: 600;
  box-shadow: inset 0 0 0 1px rgba(59, 130, 246, 0.2);
}

.sidebar-nav a.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  width: 4px;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--secondary-hover) 100%);
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.sidebar-nav a i {
  font-size: 1.2rem;
  width: 30px;
  transition: all 0.3s ease;
  color: var(--text-light);
}

.sidebar-nav a:hover i,
.sidebar-nav a.active i {
  color: var(--secondary-color);
  transform: scale(1.1);
}

.sidebar-nav a span {
  transition: all 0.3s ease;
  opacity: 1;
  font-size: 0.95rem;
}

.sidebar.collapsed .sidebar-nav a span {
  opacity: 0;
  width: 0;
  position: absolute;
  left: 100%;
  white-space: nowrap;
  background: var(--dark-bg);
  padding: 12px 15px;
  border-radius: 0 12px 12px 0;
  color: white;
  pointer-events: none;
}

.sidebar.collapsed .sidebar-nav a:hover span {
  opacity: 1;
  left: var(--sidebar-collapsed-width);
  width: auto;
  pointer-events: auto;
  box-shadow: var(--shadow-xl);
}

.sidebar-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-color) 50%, transparent 100%);
  margin: 20px 15px;
}

.sidebar-section-title {
  padding: 10px 16px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-section-title i {
  color: var(--secondary-color);
  opacity: 0.6;
  font-size: 0.9rem;
}

.sidebar.collapsed .sidebar-section-title {
  justify-content: center;
  padding: 10px 5px;
}

.sidebar.collapsed .sidebar-section-title span {
  display: none;
}

.sidebar::after {
  content: "";
  display: block;
  height: env(safe-area-inset-bottom, 20px);
  width: 100%;
  flex-shrink: 0;
}

.main-content {
  margin-top: 70px;
  margin-left: var(--sidebar-width);
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: calc(100vh - 70px);
  height: auto !important;
  overflow-y: visible;
  padding-bottom: 50px;
}

.main-content.collapsed {
  margin-left: var(--sidebar-collapsed-width);
}

#content-container {
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  padding-bottom: 20px;
  background: transparent;
}

.content-wrapper,
.page-content,
.download-section,
.game-detail,
.tool-section,
[class*="-container"] {
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 20px;
  letter-spacing: -0.025em;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, var(--secondary-hover) 100%);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.section {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 28px;
  margin-bottom: 30px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: auto !important;
  min-height: auto !important;
  max-height: none !important;
  width: 100%;
  overflow: visible;
}

.section:hover {
  box-shadow: var(--shadow-lg);
}

.section-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.025em;
}

.section-title i {
  color: var(--secondary-color);
  font-size: 1.5rem;
}

.warning {
  background: linear-gradient(135deg, #fef3f2 0%, #fee2e2 100%);
  border-left: 4px solid var(--accent-color);
  padding: 16px;
  margin-bottom: 25px;
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow-sm);
}

.warning strong {
  color: var(--accent-color);
  font-weight: 600;
}

.table-container {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 12px;
  overflow: hidden;
}

thead {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: white;
}

th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}

tbody tr:nth-child(even) {
  background: var(--light-bg);
}

tbody tr:hover {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
  transform: translateX(4px);
}

td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
}

td a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

td a:hover {
  color: var(--secondary-hover);
  border-bottom-color: var(--secondary-hover);
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-hover) 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 15px;
  box-shadow: var(--shadow-md);
}

.download-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--secondary-hover) 0%, var(--secondary-color) 100%);
}

footer {
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
  color: white;
  text-align: center;
  padding: 24px;
  margin-top: 50px;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 6px -1px rgb(0 0 0 / 0.1);
}

.sidebar-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(0, 0, 0, 0.5) !important;
  z-index: 899 !important;
  display: none !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
  pointer-events: none !important;
}

.sidebar-overlay.show {
  display: block !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

@media (max-width: 768px) {
  .mobile-controls {
    display: flex !important;
  }

  .language-selector-pc {
    display: none !important;
  }

  .language-selector-mobile {
    display: block !important;
    position: relative;
    z-index: 100;
  }

  .language-selector-mobile .language-btn {
    padding: 6px 10px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 8px;
  }
  
  .language-selector-mobile .language-btn span {
    display: none;
  }
  
  .language-selector-mobile .language-btn:hover {
    background: rgba(59, 130, 246, 0.1);
  }

  .language-selector-mobile .language-dropdown {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    right: 0 !important;
    left: auto !important;
    background: #ffffff !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    width: 150px !important;
    min-height: 120px !important;
    z-index: 9999 !important;
    overflow: visible !important;
    padding: 8px 0 !important;
  }
  
  .language-selector-mobile .language-dropdown.show {
    display: block !important;
  }

  .language-selector-mobile .language-dropdown .language-item {
    display: block !important;
    padding: 10px 15px !important;
    color: #333333 !important;
    text-decoration: none !important;
    font-size: 14px !important;
    white-space: nowrap !important;
    background: transparent !important;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .language-selector-mobile .language-dropdown .language-item:last-child {
    border-bottom: none;
  }
  
  .language-selector-mobile .language-dropdown .language-item:hover,
  .language-selector-mobile .language-dropdown .language-item:active {
    background-color: #f8f9fa !important;
    color: #007bff !important;
  }

  .user-area-container {
    display: none !important;
  }

  .navbar-center {
    flex: 1;
    justify-content: center;
    padding: 0 10px;
  }
  
  .navbar-center .brand {
    text-align: center;
    font-size: 1.1rem;
  }
  
  .navbar-right {
    flex: 0 0 auto;
  }
  
  .nav-links {
    display: none;
  }
  
  .brand {
    font-size: 1.1rem;
    letter-spacing: 0.02em;
  }
  
  .page-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
  }
  
  .page-title::after {
    width: 60px;
  }
  
  .sidebar {
    transform: translateX(-100%);
  }
  
  .sidebar-toggle {
    display: none !important;
  }
  
  .sidebar.show {
    transform: translateX(0);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  }
  
  .main-content {
    margin-left: 0;
    padding: 15px;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .navbar-left {
    flex: 0 0 auto;
  }
  
  .top-navbar .brand {
    font-size: 1.2rem;
  }

  input[type="text"],
  input[type="password"],
  input[type="email"],
  input[type="number"],
  input[type="tel"],
  input[type="url"],
  input[type="search"],
  input[type="date"],
  input[type="time"],
  input[type="datetime-local"],
  input[type="month"],
  input[type="week"],
  input[type="color"],
  textarea,
  select,
  .form-control,
  .form-select,
  .form-control-sm,
  .form-control-lg,
  .input-group input,
  .input-group select,
  .input-group textarea {
    font-size: 16px !important;
    -webkit-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
  }

  input:focus,
  textarea:focus,
  select:focus {
    font-size: 16px !important;
  }

  input::placeholder,
  textarea::placeholder {
    font-size: 14px;
    opacity: 0.7;
  }
}

@media (min-width: 769px) {
  .mobile-controls {
    display: none !important;
  }
  
  .language-selector-mobile {
    display: none !important;
  }
}

@media (max-width: 992px) {
  html {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    height: 100% !important;
    position: relative !important;
  }
  
  body {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    height: auto !important;
    min-height: 100vh !important;
    min-height: -webkit-fill-available !important;
    position: relative !important;
    padding-bottom: env(safe-area-inset-bottom, 0) !important;
  }

  .main-content {
    margin-left: 0 !important;
    min-height: 100vh !important;
    min-height: -webkit-fill-available !important;
    padding-bottom: 50px !important;
    padding-bottom: calc(50px + env(safe-area-inset-bottom, 0)) !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior-y: contain;
    transform: translateZ(0);
    will-change: scroll-position;
  }

  .sidebar {
    position: fixed !important;
    top: 70px !important;
    left: 0 !important;
    width: var(--sidebar-width, 250px) !important;
    height: calc(100vh - 70px) !important;
    height: calc(100dvh - 70px) !important;
    transform: translateX(-100%);
    background: white !important;
    z-index: 900 !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0)) !important;
  }
  
  .sidebar.show {
    transform: translateX(0);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
  }
  
  .mobile-toggle {
    display: block;
  }

  body.mobile-sidebar-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100vh !important;
    touch-action: none !important;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    z-index: 1001 !important;
    position: relative !important;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
  }
  
  .mobile-toggle:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
  }
}

@media (max-width: 992px) {
  .mobile-toggle {
    display: block;
  }
}

.mobile-sidebar-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

*:focus {
  outline: 2px solid rgba(59, 130, 246, 0.5);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid rgba(59, 130, 246, 0.5);
  outline-offset: 2px;
}

button {
  cursor: pointer;
  font-family: inherit;
}

.spa-loading {
  position: relative;
}

.spa-loading::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  z-index: 9998;
  pointer-events: none;
}

i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.shadow-hover {
  transition: box-shadow 0.3s ease;
}

.shadow-hover:hover {
  box-shadow: var(--shadow-xl);
}

@supports (-webkit-touch-callout: none) {
  @media (max-width: 992px) {
    body {
      padding-top: env(safe-area-inset-top, 0) !important;
      padding-left: env(safe-area-inset-left, 0) !important;
      padding-right: env(safe-area-inset-right, 0) !important;
    }
    
    .main-content {
      min-height: calc(var(--vh, 1vh) * 100) !important;
      padding-bottom: calc(50px + env(safe-area-inset-bottom, 0)) !important;
    }

    * {
      -webkit-tap-highlight-color: transparent;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      user-select: none;
    }

    p, span, div, a, input, textarea {
      -webkit-user-select: text;
      user-select: text;
    }

    input, textarea, select {
      -webkit-appearance: none;
      appearance: none;
      border-radius: 0;
      font-size: 16px !important;
    }

    input[type="checkbox"],
    input[type="radio"] {
      -webkit-appearance: checkbox;
      appearance: checkbox;
    }
    
    input[type="radio"] {
      -webkit-appearance: radio;
      appearance: radio;
    }
    
    .sidebar {
      -webkit-transform: translateX(-100%);
    }
    
    .sidebar.show {
      -webkit-transform: translateX(0);
    }
    
    body.mobile-sidebar-open {
      position: fixed !important;
      width: 100% !important;
      -webkit-overflow-scrolling: touch;
    }
    
    .sidebar-overlay {
      -webkit-backdrop-filter: blur(1px);
    }
  }
}

body {
  touch-action: manipulation;
}

.form-group,
.input-group,
.input-wrapper {
  touch-action: auto;
}

.sidebar,
.sidebar-overlay,
.mobile-toggle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  perspective: 1000;
}

@media (hover: none) and (pointer: coarse) {
  .mobile-toggle {
    min-width: 44px;
    min-height: 44px;
  }
  
  .sidebar-nav a {
    min-height: 44px;
    padding: 12px 16px;
  }

  .sidebar-overlay {
    cursor: pointer;
  }
}

@supports (padding: max(0px)) {
  @media (max-width: 992px) {
    .sidebar {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
      padding-bottom: max(80px, calc(80px + env(safe-area-inset-bottom)));
    }
    
    .top-navbar {
      padding-left: max(20px, env(safe-area-inset-left));
      padding-right: max(20px, env(safe-area-inset-right));
    }
  }
}

.shipping-info-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
}

.shipping-info-card .info-row {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e9ecef;
}

.shipping-info-card .info-row:last-child {
  border-bottom: none;
}

.shipping-info-card .info-label {
  flex: 0 0 120px;
  color: #6c757d;
  font-weight: 500;
}

.shipping-info-card .info-value {
  flex: 1;
  color: #212529;
}

.shipping-actions {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.no-shipping-info {
  text-align: center;
  padding: 40px 20px;
}

.no-shipping-info .empty-icon {
  font-size: 48px;
  color: #dee2e6;
  margin-bottom: 20px;
}

.no-shipping-info .hint-text {
  color: #6c757d;
  font-size: 14px;
  margin: 10px 0 20px;
}

.chat-emoji-picker {
  position: absolute !important;
  bottom: 60px;
  left: 10px;
  width: 340px;
  height: 400px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  z-index: 1400;
  animation: slideUp 0.3s ease;
  border: 1px solid #e4e6eb;
}

.chat-emoji-picker.show {
  display: flex !important;
}

.chat-container {
  position: relative;
  overflow: visible !important;
}

.pc-draggable .chat-container {
  overflow: visible !important;
}

.chat-emoji-picker .emoji-tabs {
  display: flex;
  align-items: center;
  padding: 8px;
  background: #f7f8fa;
  border-top: 1px solid #e4e6eb;
  border-radius: 0 0 12px 12px;
  gap: 8px;
  overflow-x: auto;
  flex-shrink: 0;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

#emoji-cache-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #eaeaea;
  margin-bottom: 25px;
  max-width: 100%;
  width: 100%;
}

#emoji-cache-card .setting-header {
  padding: 20px;
  background: #f8fafc;
  border-bottom: 1px solid #eee;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

#emoji-cache-card .setting-body {
  padding: 25px;
}

.cache-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.cache-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 10px;
  transition: all 0.3s;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.cache-stat-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(102, 126, 234, 0.15);
}

.cache-stat-item i {
  font-size: 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cache-stat-value {
  font-size: 20px;
  font-weight: 700;
  color: #2d3748;
}

.cache-stat-label {
  font-size: 12px;
  color: #718096;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cache-progress {
  margin: 25px 0;
}

.cache-progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  color: #6c757d;
  font-weight: 600;
}

.cache-progress-bar {
  height: 24px;
  background: #e9ecef;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
}

.cache-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.cache-progress-fill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2s infinite;
}

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

.progress-text {
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  z-index: 1;
}

.cache-actions {
  display: flex;
  gap: 12px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.cache-actions button,
.cache-actions .btn,
#refresh-cache-stats,
#clean-old-cache,
#clear-all-cache,
#clear-audio-cache {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  min-width: 120px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#refresh-cache-stats {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
  color: white;
}

#refresh-cache-stats:hover:not(:disabled) {
  background: linear-gradient(135deg, #5eddd4 0%, #54b19d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.4);
}

#refresh-cache-stats:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(78, 205, 196, 0.3);
}

#clean-old-cache {
  background: linear-gradient(135deg, #ffa726 0%, #fb8c00 100%);
  color: white;
}

#clean-old-cache:hover:not(:disabled) {
  background: linear-gradient(135deg, #ffb74d 0%, #ff9800 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

#clean-old-cache:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(255, 152, 0, 0.3);
}

#clear-all-cache {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
}

#clear-all-cache:hover:not(:disabled) {
  background: linear-gradient(135deg, #ff7b7b 0%, #fe6a34 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
}

#clear-all-cache:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(238, 90, 36, 0.3);
}

#clear-audio-cache {
  background: linear-gradient(135deg, #9f7aea 0%, #805ad5 100%);
  color: white;
}

#clear-audio-cache:hover:not(:disabled) {
  background: linear-gradient(135deg, #af8afa 0%, #906ae5 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 90, 213, 0.4);
}

#clear-audio-cache:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(128, 90, 213, 0.3);
}

.cache-actions button:disabled,
.cache-actions .btn:disabled,
#refresh-cache-stats:disabled,
#clean-old-cache:disabled,
#clear-all-cache:disabled,
#clear-audio-cache:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
  background: #cbd5e0 !important;
  color: #718096 !important;
}

.cache-actions button:disabled .fa-spinner,
.cache-actions .btn:disabled .fa-spinner {
  animation: spin 1s linear infinite;
}

.cache-actions button i,
.cache-actions .btn i {
  font-size: 14px;
  transition: transform 0.3s;
}

#refresh-cache-stats:hover:not(:disabled) i {
  transform: rotate(360deg);
}

#clean-old-cache:hover:not(:disabled) i {
  transform: scale(1.2);
}

#clear-all-cache:hover:not(:disabled) i {
  animation: shake 0.5s;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

.cache-actions button span,
.cache-actions .btn span {
  position: relative;
  z-index: 1;
}

.cache-actions button::before,
.cache-actions .btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cache-actions button:active::before,
.cache-actions .btn:active::before {
  width: 300px;
  height: 300px;
}

.cache-settings {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 2px solid #e9ecef;
}

.cache-settings h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cache-settings h4 i {
  color: #667eea;
}

.setting-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 15px;
  background: #f7fafc;
  border-radius: 8px;
  margin-bottom: 12px;
  transition: all 0.3s;
}

.setting-item:hover {
  background: #edf2f7;
  transform: translateX(5px);
}

.settings-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  flex: 1;
  gap: 10px;
}

.settings-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #667eea;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e0;
  transition: 0.4s;
  border-radius: 26px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

input:checked + .slider {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

input:checked + .slider:before {
  transform: translateX(24px);
}

#cache-status {
  position: fixed;
  top: 80px;
  right: 20px;
  padding: 12px 20px;
  border-radius: 8px;
  display: none;
  z-index: 2000;
  animation: slideInRight 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

#cache-status.success {
  background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
  color: white;
}

#cache-status.error {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
}

#cache-status.info {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

#cache-status-text {
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 768px) {
  .cache-stats {
    grid-template-columns: 1fr 1fr;
  }
  
  .cache-actions {
    flex-direction: column;
  }
  
  .cache-actions button,
  .cache-actions .btn {
    width: 100%;
    justify-content: center;
  }
  
  .setting-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .switch {
    align-self: flex-end;
  }
  
  #cache-status {
    right: 10px;
    left: 10px;
    top: 70px;
  }
}

@media (max-width: 480px) {
  .cache-stats {
    grid-template-columns: 1fr;
  }
  
  .cache-stat-item {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .cache-actions button,
  .cache-actions .btn {
    padding: 8px 16px;
    font-size: 13px;
    min-width: 100px;
  }
}

@media (prefers-color-scheme: dark) {
  #emoji-cache-card {
    background: #1a202c;
    border-color: #2d3748;
  }
  
  .cache-stat-item {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-color: rgba(102, 126, 234, 0.3);
  }
  
  .cache-stat-value {
    color: #e2e8f0;
  }
  
  .cache-stat-label {
    color: #a0aec0;
  }
  
  .cache-progress-bar {
    background: #2d3748;
  }
  
  .setting-item {
    background: #2d3748;
  }
  
  .setting-item:hover {
    background: #4a5568;
  }
}

.mobile-toggle i,
.mobile-toggle .fa-bars,
.mobile-toggle .fa-times {
    display: none !important;
}

.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    z-index: 1001 !important;
    position: relative !important;
    transition: transform 0.3s ease;
    align-items: center;
    justify-content: center;
}

.mobile-toggle .hamburger-icon {
    width: 24px;
    height: 20px;
    position: relative;
    display: inline-block;
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.mobile-toggle .hamburger-icon span {
    display: block !important;
    position: absolute !important;
    height: 3px !important;
    width: 100% !important;
    background: #1e293b !important;
    background: var(--primary-color) !important;
    border-radius: 3px !important;
    opacity: 1 !important;
    left: 0 !important;
    transform: rotate(0deg) !important;
    transition: all 0.25s ease-in-out !important;
}

.mobile-toggle .hamburger-icon span:nth-child(1) {
    top: 0px !important;
}

.mobile-toggle .hamburger-icon span:nth-child(2) {
    top: 8px !important;
}

.mobile-toggle .hamburger-icon span:nth-child(3) {
    top: 16px !important;
}

.mobile-toggle .hamburger-icon.open span:nth-child(1) {
    top: 8px !important;
    transform: rotate(45deg) !important;
}

.mobile-toggle .hamburger-icon.open span:nth-child(2) {
    opacity: 0 !important;
    left: -60px !important;
}

.mobile-toggle .hamburger-icon.open span:nth-child(3) {
    top: 8px !important;
    transform: rotate(-45deg) !important;
}

.mobile-toggle:hover .hamburger-icon span {
    background: #3b82f6 !important;
    background: var(--secondary-color) !important;
}

.mobile-toggle:hover {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .mobile-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
}

@media (hover: none) and (pointer: coarse) {
    .mobile-toggle {
        min-width: 44px;
        min-height: 44px;
    }
}

.settings-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.settings-card .card-header h3 {
  margin: 0;
  flex: 1;
}

.visibility-toggle-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #94a3b8;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visibility-toggle-btn:hover {
  background: rgba(148, 163, 184, 0.1);
  color: #a78bfa;
  transform: scale(1.1);
}

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

.binding-tab-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.08) 0%, rgba(196, 181, 253, 0.08) 100%);
  border-radius: 12px;
  flex-wrap: wrap;
}

.binding-tab-btn {
  flex: 1;
  min-width: 120px;
  padding: 12px 20px;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.binding-tab-btn i {
  font-size: 16px;
  color: #94a3b8;
  transition: color 0.3s ease;
}

.binding-tab-btn:hover {
  border-color: #c4b5fd;
  color: #a78bfa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(167, 139, 250, 0.2);
}

.binding-tab-btn:hover i {
  color: #a78bfa;
}

.binding-tab-btn.active {
  background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
  border-color: #a78bfa;
  color: white;
  box-shadow: 0 4px 12px rgba(167, 139, 250, 0.3);
}

.binding-tab-btn.active i {
  color: white;
}

.binding-tab-btn.bound {
  border-color: #6ee7b7;
}

.binding-tab-btn.bound:not(.active) {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  color: #10b981;
}

.binding-tab-btn.bound:not(.active) i {
  color: #34d399;
}

.card-active-star {
  font-size: 14px;
  margin-left: 4px;
  animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.binding-tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.binding-tab-panel.active {
  display: block;
}

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

.no-binding-hint {
  padding: 30px 20px;
  text-align: center;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: 12px;
  margin-bottom: 15px;
}

.no-binding-hint p {
  margin: 0;
  color: #92400e;
  font-size: 14px;
}

.no-binding-hint i {
  margin-right: 8px;
  font-size: 16px;
}

.binding-info {
  margin-bottom: 20px;
}

.binding-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 10px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.binding-item:hover {
  background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
  transform: translateX(5px);
}

.binding-item > i {
  font-size: 18px;
  color: white;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.binding-item:hover > i {
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
  transform: scale(1.1);
}

.binding-item > div {
  flex: 1;
  min-width: 0;
}

.binding-item label {
  display: block;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 5px;
  font-weight: 500;
}

.binding-value {
  font-size: 14px;
  color: #1e293b;
  font-weight: 500;
  word-break: break-all;
  line-height: 1.5;
  padding: 4px 0;
}

.sensitive-data {
  font-family: 'Courier New', monospace;
  transition: all 0.3s ease;
}

.sensitive-data[data-hidden="true"] {
  letter-spacing: 2px;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .binding-tab-nav {
    flex-direction: column;
  }
  
  .binding-tab-btn {
    min-width: 100%;
  }

  .binding-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .binding-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px 15px;
    width: 100%;
    max-width: 100%;
  }
  
  .binding-item:hover {
    transform: translateY(-3px);
  }

  .binding-item > i {
    font-size: 22px;
    width: 50px;
    height: 50px;
    min-width: 50px;
    margin-bottom: 8px;
  }

  .binding-item > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .binding-item label {
    font-size: 12px;
    text-align: center;
  }
  
  .binding-value {
    font-size: 13px;
    text-align: center;
  }
}

@media (prefers-color-scheme: dark) {
  .binding-tab-btn {
    background: #1e293b;
    border-color: #334155;
    color: #94a3b8;
  }
  
  .binding-tab-btn i {
    color: #64748b;
  }
  
  .binding-tab-btn:hover {
    border-color: #c4b5fd;
    color: #c4b5fd;
  }
  
  .binding-tab-btn:hover i {
    color: #c4b5fd;
  }
  
  .binding-tab-btn.active {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 100%);
    color: white;
  }
  
  .binding-tab-btn.active i {
    color: white;
  }
  
  .binding-item {
    background: #1e293b;
  }
  
  .binding-item:hover {
    background: #334155;
  }
  
  .binding-item > i {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  }
  
  .binding-item:hover > i {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  }
  
  .binding-value {
    color: #e2e8f0;
  }
  
  .sensitive-data[data-hidden="true"] {
    color: #64748b;
  }
  
  .no-binding-hint {
    background: linear-gradient(135deg, #78350f 0%, #92400e 100%);
  }
  
  .no-binding-hint p {
    color: #fef3c7;
  }
  
  .visibility-toggle-btn {
    color: #94a3b8;
  }
  
  .visibility-toggle-btn:hover {
    color: #c4b5fd;
  }
}