/**
 * Plugin Name: LuxyFun Admin
 * Plugin URI:  https://www.diego.com.ec
 * Description: Admin dashboard and core management tools for the LuxyFun platform.
 * Version:     2.0.05
 * Author:      Diego WebStudio
 * Author URI:  https://www.diego.com.ec
 * Text Domain: luxyfun-admin
 */

.lx-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}

@media (max-width:1200px) {
  .lx-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:900px) {
  .lx-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:600px) {
  .lx-grid {
    grid-template-columns: 1fr;
  }
}

.lx-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 16px;
  transition: none !important;
  transform: none !important;
  box-shadow: none !important;
}

.lx-card:hover {
  transform: none !important;
  box-shadow: none !important;
}

.lx-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: none !important;
  transform: none !important;
}

.lx-card:hover img {
  transform: none !important;
}

.lx-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .75), rgba(0, 0, 0, .15) 50%, transparent);
}

.lx-info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 20px;
  color: #fff;
}

.lx-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff !important;
}

.lx-name:hover {
  color: #ffffff !important;
}

.lx-meta {
  font-size: 13px;
  opacity: .9;
  margin-bottom: 10px;
  color: #ffffff !important;
}

.lx-meta:hover {
  color: #ffffff !important;
  opacity: .9 !important;
}

.lx-btn {
  display: inline-block;
  background: #5569a6 !important;
  /* EL NUEVO COLOR PREMIUM */
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: none !important;
}

.lx-btn:hover {
  background: #5569a6 !important;
  color: #fff !important;
  transform: none !important;
}

.lx-name {
  font-weight: 700;
}

.lx-meta {
  color: #fff;
  font-size: 14px;
}

.lx-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  /*
  width:28px;
  height:28px;
  */
  display: flex;
  align-items: center;
  justify-content: center;
  /*background:rgba(0,0,0,.55);*/
  color: #fff;
  border-radius: 50%;
  z-index: 3;
}

img.queen-level-icon {
  filter:
    drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1)) drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
}