  .acard {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    font-family: var(--font-sans);
    background: #111;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  }
  .acard-img-principales {
    width: 100%; display: block;
  }
  .acard-img {
    width: 100%; height: 320px;
    object-fit: cover; display: block;
  }
  .acard-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 35%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.92) 100%);
  }
  .acard-badge {
    position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
    background: #F5C542; color: #1a1200;
    font-size: 13px; font-weight: 700;
    padding: 6px 16px; border-radius: 999px;
    display: flex; align-items: center; gap: 6px;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  .acard-content {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 0 16px 16px;
  }
  .acard-stars {
    display: flex; align-items: center; gap: 3px; margin-bottom: 4px;
  }
  .star { color: #F5C542; font-size: 16px; }
  .star-count { color: #F5C542; font-size: 14px; font-weight: 600; margin-left: 2px; }
  .acard-name {
    font-size: 20px; font-weight: 800; color: #fff;
    margin: 0 0 1px; letter-spacing: 0.3px; text-transform: uppercase;
  }
  .acard-sub {
    font-size: 12px; color: rgba(255,255,255,0.65); margin: 0 0 8px;
  }
  .acard-meta {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px;
  }
  .acard-genre {
    display: flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 600; color: #F5C542;
  }
  .acard-events {
    font-size: 12px; color: rgba(255,255,255,0.55);
  }
  .acard-buttons {
    display: flex; gap: 8px;
  }
  .btn-hire {
    flex: 1; padding: 10px 0; font-size: 13px; font-weight: 700;
    background: #F5C542; color: #1a1200;
    border: none; border-radius: 10px; cursor: pointer;
    transition: filter 0.15s;
  }
  .btn-hire:hover { filter: brightness(1.1); }
  .btn-view {
    flex: 1; padding: 10px 0; font-size: 13px; font-weight: 600;
    background: rgba(255,255,255,0.12); color: #fff;
    border: 1px solid rgba(255,255,255,0.25); border-radius: 10px; cursor: pointer;
    transition: background 0.15s;
    text-align: center;
    text-decoration: none;
  }
  .btn-view:hover { background: rgba(255,255,255,0.2); }