/* VikingIPTV Additional Styles */
/* This file provides additional styling that complements the inline styles and Tailwind CSS */

/* Smooth scrolling for the entire page */
html {
  scroll-behavior: smooth;
}

/* Additional button hover effects */
.cta-button {
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(45, 212, 191, 0.3);
}

/* Loading states */
.loading {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Custom scrollbar for better UX */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #1F2937;
}

::-webkit-scrollbar-thumb {
  background: #2DD4BF;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #00ff95;
}

/* Focus states for accessibility */
button:focus,
a:focus,
input:focus {
  outline: 2px solid #2DD4BF;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  body {
    background: white !important;
    color: black !important;
  }
  
  .no-print {
    display: none !important;
  }
}