/* ============================= */
/* Global TV Section Styles      */
/* ============================= */

/* Global container styles */
.global-tv, .trending-events, .available-countries {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.8rem;
  margin: 2rem auto;
  max-width: 1000px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.global-tv:hover, .trending-events:hover, .available-countries:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* Section headings */
.global-tv h3, .trending-events h3, .available-countries h3 {
  font-size: 1.9rem;
  color: #2563eb; /* soft blue highlight */
  margin-bottom: 1rem;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.5rem;
}

/* Paragraph text */
.global-tv p, .trending-events p, .available-countries p {
  font-size: 1rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 1rem;
}

/* Global TV links list */
.global-tv ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.global-tv ul li {
  background: linear-gradient(135deg, #4a90e2, #2563eb);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  flex: 1 1 calc(33% - 1rem);
  text-align: center;
  min-width: 160px;
}

.global-tv ul li:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.global-tv ul li a {
  color: #fff;
  text-decoration: none;
}

/* Trending Events list */
.trending-events ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.trending-events ul li {
  background: #f3f4f6;
  border-left: 4px solid #2563eb;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.trending-events ul li a {
  text-decoration: none;
  color: #111827;
}

.trending-events ul li:hover {
  background: #e0f2fe;
}

/* ============================= */
/* Available Countries Enhancements */
/* ============================= */

/* Make flag emojis larger and nicely spaced */
.available-countries ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.6rem;
  border-bottom: 1px solid #e5e7eb;
  font-size: 1rem;
  transition: background 0.2s ease, transform 0.2s ease;
  border-radius: 6px;
}

.available-countries ul li:last-child {
  border-bottom: none;
}

/* Highlight on hover */
.available-countries ul li:hover {
  background: #e0f2fe;
  transform: translateX(2px);
}

/* Style the flag span */
.available-countries ul li span.flag {
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Style country name */
.available-countries ul li span.country-name {
  font-weight: 600;
  color: #111827;
}

/* Style SEO description text */
.available-countries ul li span.seo-text {
  color: #4b5563;
  font-size: 0.9rem;
  margin-left: auto;
  text-align: right;
  flex: 1;
}

/* Region-based subtle colors */
/* Example: Africa, Americas, Europe, Asia, Oceania */
.available-countries ul li.africa { border-left: 4px solid #10b981; }    /* green */
.available-countries ul li.americas { border-left: 4px solid #f59e0b; } /* amber */
.available-countries ul li.europe { border-left: 4px solid #3b82f6; }   /* blue */
.available-countries ul li.asia { border-left: 4px solid #ef4444; }      /* red */
.available-countries ul li.oceania { border-left: 4px solid #8b5cf6; }  /* purple */

/* Responsive adjustments */
@media (max-width: 768px) {
  .available-countries ul li {
    flex-direction: column;
    align-items: flex-start;
  }
  .available-countries ul li span.seo-text {
    margin-left: 0;
    text-align: left;
    margin-top: 0.2rem;
  }
}
