.trebol-premium-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .trebol-premium {
    --size: 430px;
    --text-color: #ffffff;
    --text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
    --glow-color: rgba(255, 235, 120, 0.55);
    --hover-glow: rgba(255, 245, 180, 0.78);
    --focus-ring: #ffffff;
    --soft-transition: 260ms cubic-bezier(.2,.8,.2,1);
  
    position: relative;
    width: min(100%, var(--size));
    aspect-ratio: 1 / 1;
    isolation: isolate;
    user-select: none;
  }
  
  .trebol-premium__base {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    pointer-events: none;
    filter:
      drop-shadow(0 8px 18px rgba(22, 63, 24, 0.14))
      drop-shadow(0 18px 34px rgba(0, 0, 0, 0.12));
  }
  
  /* Glow central extra */
  .trebol-core-glow {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 18%;
    aspect-ratio: 1 / 1;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
      radial-gradient(circle,
        rgba(255,255,255,0.95) 0%,
        rgba(255,240,160,0.85) 18%,
        rgba(255,223,90,0.45) 44%,
        rgba(255,223,90,0.00) 72%);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
    animation: trebolPulse 3.4s ease-in-out infinite;
  }
  
  @keyframes trebolPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.92; }
    50% { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
  }
  
  /* Áreas clicables */
  .trebol-hit {
    position: absolute;
    z-index: 3;
    display: block;
    border-radius: 999px;
    text-decoration: none;
    color: var(--text-color);
    transition:
      transform var(--soft-transition),
      filter var(--soft-transition),
      opacity var(--soft-transition),
      box-shadow var(--soft-transition);
  }
  
  .trebol-hit__inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 7px;
    padding: 8px;
    text-align: center;
    position: relative;
  }
  
  .trebol-hit__inner::before {
    content: "";
    position: absolute;
    inset: 6% 8%;
    border-radius: 999px;
    background:
      radial-gradient(circle at 50% 45%,
        rgba(255,255,255,0.10) 0%,
        rgba(255,255,255,0.04) 25%,
        rgba(255,255,255,0.00) 62%);
    opacity: 0;
    transition: opacity var(--soft-transition);
    pointer-events: none;
  }
  
  .trebol-hit__icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    color: #fff;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.28));
  }
  
  .trebol-hit__icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }
  
  .trebol-hit__text {
    max-width: 120px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0.01em;
    text-shadow: var(--text-shadow);
  }
  
  /* Hover premium */
  .trebol-hit:hover {
    transform: scale(1.055);
    filter:
      brightness(1.06)
      saturate(1.06)
      drop-shadow(0 0 18px var(--glow-color));
  }
  
  .trebol-hit:hover .trebol-hit__inner::before {
    opacity: 1;
  }
  
  .trebol-hit:hover .trebol-hit__icon {
    filter:
      drop-shadow(0 0 10px rgba(255,255,255,0.26))
      drop-shadow(0 2px 8px rgba(0,0,0,0.26));
  }
  
  .trebol-hit:active {
    transform: scale(1.02);
  }
  
  .trebol-hit:focus-visible {
    outline: 3px solid var(--focus-ring);
    outline-offset: 3px;
    box-shadow: 0 0 0 7px rgba(255,255,255,0.18);
  }
  
  /* Posiciones afinadas al trébol */
  .trebol-hit--top {
    top: 10%;
    left:33%;
/*
    top: 20%;
    left: 15%;
*/
    transform: translateX(-50%);
    width: 34%;
    height: 26%;
  }
  .trebol-hit--top:hover,
  .trebol-hit--top:active {
    transform: translateX(-50%) scale(1.055);
  }
  
  .trebol-hit--left {
    top: 35%;
    left: 10%;
/*
    top: 55%;
    left: 15%;
*/
    width: 31%;
    height: 24%;
  }
  
  .trebol-hit--right {
    top: 35%;
    right: 10%;
/*
    top: 20%;
    right: 15%;
*/
    width: 31%;
    height: 24%;
  }
  
  .trebol-hit--bottom {
    bottom: 10%;
    left: 33%;
/*
    top: 55%;
    right: 15%;
*/
    transform: translateX(-50%);
    width: 34%;
    height: 26%;
  }
  .trebol-hit--bottom:hover,
  .trebol-hit--bottom:active {
    transform: translateX(-50%) scale(1.055);
  }
  
  /* Microanimación de entrada */
  .trebol-premium.is-ready .trebol-hit {
    animation: trebolFadeUp 620ms ease both;
  }
  
  .trebol-premium.is-ready .trebol-hit--top { animation-delay: 40ms; }
  .trebol-premium.is-ready .trebol-hit--left { animation-delay: 110ms; }
  .trebol-premium.is-ready .trebol-hit--right { animation-delay: 180ms; }
  .trebol-premium.is-ready .trebol-hit--bottom { animation-delay: 250ms; }
  
  @keyframes trebolFadeUp {
    from {
      opacity: 0;
      transform: translateY(8px);
      filter: blur(2px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    }
  }
  
  /* Accesibilidad: reducir movimiento */
  @media (prefers-reduced-motion: reduce) {
    .trebol-core-glow,
    .trebol-premium.is-ready .trebol-hit {
      animation: none !important;
    }
  
    .trebol-hit,
    .trebol-hit__inner::before {
      transition: none !important;
    }
  }
  
  /* Tablet */
  @media (max-width: 900px) {
    .trebol-premium {
      --size: 360px;
    }
  
    .trebol-hit__icon {
      width: 30px;
      height: 30px;
    }
  
    .trebol-hit__text {
      font-size: 0.98rem;
      max-width: 98px;
    }
  }
  
  /* Móvil */
  @media (max-width: 640px) {
    .trebol-premium {
      --size: 280px;
    }
  
    .trebol-hit__icon {
      width: 24px;
      height: 24px;
    }
  
    .trebol-hit__text {
      font-size: 0.82rem;
      max-width: 76px;
    }
  
    .trebol-hit__inner {
      gap: 5px;
      padding: 6px;
    }
  }
  
  /* Móvil pequeño */
  @media (max-width: 420px) {
    .trebol-premium {
      --size: 240px;
    }
  
    .trebol-hit__text {
      font-size: 0.74rem;
      max-width: 66px;
    }
  
    .trebol-hit__icon {
      width: 21px;
      height: 21px;
    }
  }
  