/*
Theme Name:  8K IPTV UK Provider
Theme URI:   https://8kiptvukprovider.com
Author:      zakichan
Author URI:  https://gowpservices.com
Description: Premium IPTV UK landing page theme with Tailwind CSS, Alpine.js, flash sale timers and WhatsApp integration.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 8k-iptv
Tags:        one-page, landing-page, custom-colors, responsive-layout
*/

/* ── Gradient banner ── */
.wd-negative-gap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #ff6c00, #000000);
  padding: 50px 100px;
  min-height: 400px;
}
.e-con-inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.e-con-full { display: flex; flex-direction: column; align-items: flex-start; }
.wd-image img { max-width: 100%; height: auto; }
.title-wrapper h4 {
  color: white;
  font-size: 2.8em;
  margin: 0 0 15px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}
.wd-text-block p { color: white; font-size: 14px; margin: 0; opacity: 0.9; }
.wd-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.wd-list li {
  display: flex;
  align-items: center;
  background: white;
  color: #333;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 1.1em;
  width: 250px;
  justify-content: center;
  text-align: center;
}
@media (max-width: 768px) {
  .wd-negative-gap { flex-direction: column; padding: 30px 20px; }
  .e-con-inner { flex-direction: column; align-items: center; }
  .title-wrapper h4 { font-size: 2em; }
  .wd-list { flex-direction: column; align-items: center; }
  .wd-list li { width: 90%; }
}

/* ── WhatsApp floating button pulse ── */
.live-dot {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  background: #22c55e;
  border-radius: 50%;
  border: 2px solid white;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.3); opacity: 0.7; }
}

/* ── Feature / Pricing card hover ── */
.feature-card:hover  { box-shadow: 0 20px 40px rgba(59,130,246,.15); }
.pricing-card:hover  { box-shadow: 0 20px 40px rgba(59,130,246,.15); }
.testimonial-card:hover { transform: translateY(-2px); transition: transform .2s; }
