* {
   box-sizing: border-box;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

body {
   background-color: #00a3a3;
  color: #FFFFFF;
  font-family: "Jost", sans-serif;
  font-weight: 400;
}

h2 {
  color: #FFFFFF;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

p {
  color: #f0f0f0;
  font-size: 1.1rem;
}
/* ==========================================================================
   15. FOOTBALL / WORLD CUP PAGE STYLES
   ========================================================================== */
.football-hero {
  background: linear-gradient(rgba(0, 50, 0, 0), rgba(0, 20, 0, 0.9)), url('../images/football/football.webp');
  background-size: cover;
  background-position: top;
  background-attachment: fixed;
  color: white;
  padding: 100px 20px;
  min-height: 80vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.football-hero h1 {
  color: #ffd700;
  font-size: 4rem;
  text-shadow: 0 4px 15px rgba(0,0,0,0.8);
  margin-bottom: 1rem;
}

.football-hero p {
  color: #f0f0f0;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.countdown-wrapper {
  margin: 30px 0;
}

.countdown-label {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
  font-weight: bold;
}

.countdown-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.time-box {
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid #ffd700;
  border-radius: 10px;
  padding: 15px;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.time-box span {
  font-size: 2rem;
  font-weight: bold;
  font-family: "Alfa Slab One", serif;
  color: #ffd700;
}

.time-box small {
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Sports Channels Grid */
.sports-channels-section {
  padding: 60px 20px;
 
  text-align: center;
}

.sports-channels-section h2 {
  color: #fff;
}

.sports-channels-section p {
  color: #ddd;
  margin-bottom: 30px;
}
.sports-channels-section img {
  width: 100px;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.channel-item {
  padding: 20px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px; /* Ensures consistent height */
  
   background: rgba(255, 255, 255, 0.2);
  border-color: #ffd700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Enhanced hover effect */
}

.channel-item img.channel-logo {
  max-width: 80px;
  height: auto;
  margin-bottom: 15px;
  object-fit: contain; /* Ensures the logo is scaled correctly */
  
}

.channel-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffd700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Enhanced hover effect */
}


/* WC Pricing Card */
#wc-pricing {
    padding: 60px 20px;
    background-color: #121212;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.price-card.wc-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border: 3px solid #ffd700;
    max-width: 400px;
    position: relative;
    transition: transform 0.3s ease;
    color: #333;
}

.price-card.wc-card:hover {
    transform: scale(1.05);
}

.wc-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #d50000;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.price-card h3 {
    font-size: 1.8rem;
    color: #1a1f2e;
    text-align: center;
    margin-bottom: 10px;
}

.price-card .price {
    font-size: 3rem;
    font-weight: bold;
    color: #0056b3;
    text-align: center;
    margin-bottom: 20px;
}

.price-card .price span {
    font-size: 1rem;
    color: #555;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.price-card ul li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.price-card ul li::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 10px;
}

.price-card .btn {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    color: #1a1f2e;
    background-color: #ffd700;
    border: none;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}


.price-card .btn:hover {
    background-color: #ffc400;
}

/* Schedule Section */
.schedule-section {
    background-color: #1a1f2e;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

.schedule-section h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    background: none;
    border: none;
}

.schedule-details, .teams-section {
    margin-bottom: 40px;
}

.schedule-list, .teams-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.schedule-list li {
    font-size: 1.1rem;
    color: #cdd5e0;
    margin-bottom: 10px;
}

.teams-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.teams-list li {
    background: #2c344b;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    border: 1px solid #444;
}



.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    background-color: #1a1f2e;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #2c344b;
    border: 1px solid #444;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 10px;
}

.feature-description {
    color: #cdd5e0;
    font-size: 1rem;
    line-height: 1.6;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
  .football-hero h1 {
    font-size: 2.2rem;
  }
  
  .football-hero {
    padding: 80px 15px;
  }

  .countdown-container {
    gap: 10px;
  }

  .time-box {
    min-width: 70px;
    padding: 10px;
  }

  .time-box span {
    font-size: 1.5rem;
  }
}
