/**
 * Dashboard HUD Styles
 * Sistema de diseño premium para la interfaz Single Page Application.
 */

[v-cloak] { display:none; }

.news-tagline-capsule {
  background: rgba(255, 146, 238, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 146, 238, 0.2);
  padding: 8px 24px;
  border-radius: 50px;
  color: #ff92ee;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 2px;
  font-size: 0.9rem;
  box-shadow: 0 0 20px rgba(255, 146, 238, 0.1);
  display: inline-flex;
  align-items: center;
}

.news-icon-pulse {
  animation: hud-pulse 2s infinite;
}

@keyframes hud-pulse {
  0% { transform: scale(1); opacity: 1; text-shadow: 0 0 0px rgba(255,146,238,0); }
  50% { transform: scale(1.2); opacity: 0.8; text-shadow: 0 0 10px rgba(255,146,238,0.5); }
  100% { transform: scale(1); opacity: 1; text-shadow: 0 0 0px rgba(255,146,238,0); }
}

.news-premium-card {
  background: linear-gradient(135deg, rgba(30, 22, 65, 0.85) 0%, rgba(15, 12, 35, 0.95) 100%) !important;
  border: 1px solid rgba(255, 146, 238, 0.2) !important;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
  overflow: hidden;
}

.news-premium-card:hover {
  border-color: rgba(255, 146, 238, 0.6) !important;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.6), 0 0 20px rgba(255, 146, 238, 0.2) !important;
}

.news-image-zoom {
  transition: transform 0.8s ease-in-out !important;
}

.news-image-zoom.zoomed {
  transform: scale(1.1);
}

.news-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(15, 12, 35, 0.8), transparent);
}

.news-title-hud {
  font-family: 'Audiowide', cursive !important;
  color: #ff92ee !important;
  line-height: 1.2 !important;
  text-shadow: 0 0 15px rgba(255, 146, 238, 0.3);
}

.news-body-content {
  line-height: 1.8 !important;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.auth-card-vue { 
  background: rgba(18, 13, 41, 0.95) !important; 
  backdrop-filter: blur(10px); 
}

/* Sidebar Custom Indentation */
.menu-sidebar-hud .v-navigation-drawer__content, 
.menu-sidebar-hud .v-list { 
  padding: 0 !important; 
}

.menu-sidebar-hud .v-list-item:not(.hud-sub-item):not(.hud-lvl3-item) { 
  margin-inline: 0 !important; 
  padding-inline-start: 16px !important; 
}

.hud-nav-item { 
  color: rgba(248, 245, 255, 0.8) !important; 
  font-size: 0.9rem !important; 
}

.menu-sidebar-hud {
  --v-list-indent-padding: 0px !important;
}

.menu-sidebar-hud .v-list-group__items .v-list-item {
  padding-inline-start: 24px !important;
}

.hud-sub-item-group { 
  padding-left: 12px !important; 
  font-size: 0.9rem !important; 
  color: #ff92ee !important; 
}

.hud-lvl3-item { 
  padding-left: 32px !important; 
  margin-left: 0 !important; 
  font-size: 0.8rem !important; 
  opacity: 0.8 !important; 
}

/* Product Cards */
.product-premium-card {
  background: rgba(255, 255, 255, 0.03) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  transition: all 0.3s ease;
}

.product-premium-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(146, 255, 201, 0.4) !important;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* Admin Tables */
.admin-table-hud {
  background: rgba(30, 20, 50, 0.4) !important;
  border-radius: 12px;
}

.admin-table-hud th {
  color: #ff92ee !important;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* News Slider */
.news-slider-overlay {
  background: linear-gradient(to bottom, transparent 0%, rgba(15, 12, 35, 0.9) 100%);
  height: 100%;
  width: 100%;
}

.slider-body-truncate {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-width: 800px;
}
