/* FlixVar Badge - Shared Styles */
.flixvar-badge {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.flixvar-badge:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.flixvar-badge-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flixvar-badge-icon svg {
  width: 100%;
  height: 100%;
  stroke: white;
}

.flixvar-badge-text {
  color: white;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
  .flixvar-badge {
    bottom: 15px;
    left: 15px;
    padding: 10px 16px;
  }

  .flixvar-badge-text {
    font-size: 12px;
  }

  .flixvar-badge-icon {
    width: 16px;
    height: 16px;
  }
}

/* Animation on page load */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.flixvar-badge {
  animation: slideInLeft 0.6s ease-out 0.5s both;
}
