/**
 * Pump Screener Page Styles
 * Chrome button animation for download link
 */

.chrome-spin-icon {
  transition: transform 2s cubic-bezier(0.15, 0.8, 0.2, 1);
}

.chrome-download-btn:hover .chrome-spin-icon {
  animation: chrome-spin-fast 0.25s linear infinite;
}

.chrome-download-btn:not(:hover) .chrome-spin-icon {
  animation: chrome-slowdown 2.5s cubic-bezier(0.1, 0.7, 0.1, 1) forwards;
}

.chrome-download-btn:hover {
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.8), 0 0 30px rgba(34, 197, 94, 0.5), inset 0 0 20px rgba(34, 197, 94, 0.1) !important;
}

@keyframes chrome-spin-fast {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes chrome-slowdown {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(720deg); }
}

/* Premium features grid centered */
.premium-features-grid-centered {
  max-width: 900px;
  margin: 0 auto;
}

/* Numbered feature icons */
.premium-feature-number {
  font-size: 24px;
  font-weight: 700;
}

/* Section padding variants */
.section-padding-large {
  padding: 80px 0;
}

/* Chrome download button large variant */
.chrome-download-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 12px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}

.chrome-download-btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.8), 0 0 30px rgba(34, 197, 94, 0.5);
}

/* Download button text */
.chrome-download-btn-text {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
}

/* FAQ margin bottom */
.faq-mb-0 {
  margin-bottom: 0;
}
