/**
 * IIEC - FLOATING RECRUITMENT LIVE POPUP PILL
 * Customized to the official IIEC Orange & Obsidian Dark Theme.
 */

.iiec-floating-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99990;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0c0e14;
  border: 1.5px solid #ff5a1f;
  padding: 6px 14px 6px 7px;
  border-radius: 9999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55), 
              0 0 18px rgba(255, 90, 31, 0.35);
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.25s ease,
              box-shadow 0.25s ease,
              background 0.25s ease;
}

.iiec-floating-pill.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.iiec-floating-pill:hover {
  transform: translateY(-3px) scale(1.03);
  background: #11141d;
  border-color: #ff7b4c;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.65), 
              0 0 25px rgba(255, 90, 31, 0.55);
}

.iiec-floating-pill:active {
  transform: translateY(0) scale(0.98);
}

/* IIEC Electric Orange LIVE Badge */
.iiec-floating-pill .pill-live-badge {
  background: #ff5a1f;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(255, 90, 31, 0.4);
}

/* White Typography Label */
.iiec-floating-pill .pill-label {
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  line-height: 1;
}

/* IIEC Flame Arrow */
.iiec-floating-pill .pill-arrow {
  color: #ff7b4c;
  font-size: 12px;
  font-weight: 800;
  margin-left: -2px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.iiec-floating-pill:hover .pill-arrow {
  color: #ffa07a;
  transform: translate(2px, -2px);
}

/* Mobile Responsiveness */
@media (max-width: 640px) {
  .iiec-floating-pill {
    bottom: 18px;
    right: 18px;
    padding: 5px 12px 5px 6px;
    gap: 8px;
  }

  .iiec-floating-pill .pill-live-badge {
    font-size: 10px;
    padding: 3.5px 8px;
  }

  .iiec-floating-pill .pill-label {
    font-size: 12.5px;
  }
}
