:root {
  --card-accent: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --card-accent-hover: linear-gradient(135deg, #7c8ff5 0%, #8b5cf6 100%);
  --glow-color: rgba(102, 126, 234, 0.25);
  --glow-hover: rgba(102, 126, 234, 0.4);
  --card-bg: rgba(15, 23, 42, 0.5);
  --border-subtle: rgba(102, 126, 234, 0.12);
  --border-hover: rgba(102, 126, 234, 0.3);
}

.service-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(8px);
  border-radius: 10px !important;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px var(--glow-hover);
  border-color: var(--border-hover);
}

.service-card .service-icon {
  min-width: 40px !important;
  width: 40px !important;
}

.service-card .service-icon img {
  width: 24px !important;
  height: 24px !important;
  object-fit: contain;
}

.service-title-text {
  padding-left: 4px;
}

.service-name {
  font-weight: 600 !important;
  letter-spacing: 0.3px;
}

.service-description {
  opacity: 0.7;
  font-size: 0.7rem !important;
}

.bookmark-group-name,
.service-group-name {
  font-weight: 700 !important;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 0.85rem !important;
  opacity: 0.8;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 8px !important;
}

.bookmark-group-name:hover,
.service-group-name:hover {
  opacity: 1;
}

.info-widget {
  background: var(--card-bg) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
}

.info-widget:hover {
  border-color: var(--border-hover) !important;
  box-shadow: 0 4px 20px var(--glow-color) !important;
}

.header-widget {
  padding: 12px 16px !important;
}

.search-widget input {
  border-radius: 8px !important;
  border: 1px solid var(--border-subtle) !important;
  background: var(--card-bg) !important;
  padding: 10px 14px !important;
  transition: all 0.2s ease;
}

.search-widget input:focus {
  border-color: #667eea !important;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2) !important;
  outline: none;
}

.search-widget input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.widget-datetime {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.widget-greeting {
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--card-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quicklaunch-item {
  border-radius: 8px !important;
  border: 1px solid var(--border-subtle) !important;
  background: var(--card-bg) !important;
}

.quicklaunch-item:hover {
  background: rgba(102, 126, 234, 0.1) !important;
  border-color: var(--border-hover) !important;
}

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

.services-group,
.bookmark-group {
  animation: fadeInUp 0.4s ease forwards;
}

.services-group:nth-child(1) { animation-delay: 0.05s; }
.services-group:nth-child(2) { animation-delay: 0.1s; }
.services-group:nth-child(3) { animation-delay: 0.15s; }
.services-group:nth-child(4) { animation-delay: 0.2s; }
.services-group:nth-child(5) { animation-delay: 0.25s; }
.services-group:nth-child(6) { animation-delay: 0.3s; }
