/*
Theme Name: FFXL - Xoilac TV
Description: Theme WordPress chuyên dụng cho website xem bóng đá trực tiếp với giao diện hiện đại, responsive và nhiều tính năng đặc biệt.
Author: Your Name
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ffxl
Tags: sports, football, live-streaming, dark-theme, responsive, bootstrap
*/

body {
  background: #121212;
  color: #fff;
  font-family: Arial, sans-serif;
  margin: 0;
}

/* Header */
.site-header {
  background: #1a1a1a;
  border-bottom: 3px solid #222;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  min-height: 70px;
}

.site-header .container {
  height: 100%;
}

.site-header .row {
  min-height: 70px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  height: 48px;
}

.logo {
  text-decoration: none !important;
  display: inline-block;
  transition: transform 0.2s, opacity 0.2s;
}

.logo:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.logo img,
.custom-logo,
.logo-img {
  max-height: 48px !important;
  max-width: 180px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
}

.main-navigation {
  display: flex;
  align-items: center;
  height: 100%;
}

/* Menu */
.nav-menu {
  display: flex;
  align-items: stretch;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  height: 70px;
}

.nav-menu li {
  height: 100%;
  display: flex;
  align-items: stretch;
  position: relative;
}

.nav-menu .menu-item a {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 8px;
  margin: 0 8px;
  overflow: hidden;
  position: relative;
  background: transparent;
  border: 2px solid transparent;
}

/* Gradient glow effect */
.nav-menu .menu-item a::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #2d5a3d, #4c935c, #3a7049, #1e3c72, #2a5298);
  background-size: 300% 300%;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  animation: gradientShift 3s ease infinite;
}

/* Inner glow effect */
.nav-menu .menu-item a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: -1;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.nav-menu .menu-item a:hover::before {
  opacity: 1;
}

.nav-menu .menu-item a:hover::after {
  transform: scale(1);
}

.nav-menu .menu-item a:hover {
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 4px 15px rgba(76, 147, 92, 0.2),
    0 2px 8px rgba(45, 90, 61, 0.15);
}

.nav-menu .menu-item a.active {
  color: #4c935c !important;
  background: rgba(76, 147, 92, 0.15);
  border: 2px solid rgba(76, 147, 92, 0.5);
  border-radius: 8px;
  box-shadow: 
    0 0 8px rgba(76, 147, 92, 0.2),
    inset 0 0 8px rgba(76, 147, 92, 0.05);
  transform: translateY(-2px);
}

/* Ripple effect on click */
.nav-menu .menu-item a {
  overflow: hidden;
}

.nav-menu .menu-item a .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(76, 147, 92, 0.6);
  transform: scale(0);
  animation: rippleEffect 0.6s ease-out;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Pulse animation for active state */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(76, 147, 92, 0.3); }
  70% { box-shadow: 0 0 0 6px rgba(76, 147, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 147, 92, 0); }
}

.nav-menu .menu-item a.active {
  animation: pulse 2s infinite;
}

/* Responsive Header */
@media (max-width: 768px) {
  .site-header .row {
    flex-direction: column;
    min-height: 60px;
    padding: 10px 0;
  }
  
  .site-header .col-auto {
    margin-bottom: 10px;
  }
  
  .main-navigation {
    justify-content: center !important;
  }
  
  .logo img,
  .custom-logo,
  .logo-img {
    max-height: 40px !important;
    max-width: 150px !important;
  }
  
  .nav-menu {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 5px;
  }
  
  .nav-menu .menu-item a {
    padding: 6px 10px !important;
    font-size: 0.8rem !important;
    border-radius: 6px;
    margin: 0 3px;
  }
}

@media (max-width: 576px) {
  .nav-menu .menu-item a {
    padding: 5px 8px !important;
    font-size: 0.75rem !important;
    border-radius: 5px;
    margin: 0 2px;
  }
  
  .nav-menu .menu-item a::before {
    border-radius: 7px;
  }
  
  .nav-menu .menu-item a::after {
    border-radius: 4px;
  }
}
/* Banner */
.banner {
  background: #0d47a1;
  color: yellow;
  text-align: center;
  padding: 10px;
  font-weight: bold;
}

/* Tiêu đề */
.headline {
  background: #222;
  padding: 10px;
  text-align: center;
  font-size: 16px;
}

/* Bộ lọc */
.filter-bar {
  display: flex;
  justify-content: center;
  padding: 10px;
  gap: 10px;
  background: #1f1f1f;
}

.filter-bar button {
  background: #333;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
}

.filter-bar button:hover {
  background: #f54242;
}

/* Match Grid */

/* Match Card Custom */
.match-card {
  border-radius: 16px;
  overflow: hidden;
  min-height: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
  background: #181818;
}
.match-card:hover {
  box-shadow: 0 6px 24px rgba(0,255,0,0.15);
  transform: translateY(-4px) scale(1.02);
}
.score-box {
  min-width: 90px;
  text-align: center;
  font-size: 2rem;
  background: linear-gradient(90deg,#1e3c72 0%,#2a5298 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  font-weight: bold;
}
.commentator {
  display: none;
  position: absolute;
  left: 18px;
  bottom: 12px;
  background: #222;
  color: #b3ff00;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,255,0,0.08);
}
.match-card:hover .commentator {
  display: block;
}
.fw-bold{
  font-size: clamp(8px, 2vw, 14px);
}

/* .match-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 40px 0;
}
.match-row {
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
.match-card {
  background: #181818;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  color: #fff;
  width: 48%;
  min-width: 350px;
  padding: 18px 22px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
@media (max-width: 900px) {
  .match-row {
    flex-direction: column;
  }
  .match-card {
    width: 100%;
    min-width: unset;
  }
}

.match-card:hover {
  box-shadow: 0 6px 24px rgba(0,255,0,0.15);
  transform: translateY(-4px) scale(1.02);
}
/* .match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  margin-bottom: 10px;
} */
.league { font-weight: bold; color: #b3ff00; }
.status.live { background: #1e7e34; color: #fff; padding: 2px 8px; border-radius: 6px; font-size: 13px; }
.status.finished { background: #007bff; color: #fff; padding: 2px 8px; border-radius: 6px; font-size: 13px; }
.time { color: #ccc; font-size: 13px; }
.match-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.team {
  display: flex;
  align-items: center;
  gap: 8px;
}
.team img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #222;
  object-fit: cover;
  border: 2px solid #333;
}
.score {
  font-size: 28px;
  font-weight: bold;
  color: #00e676;
  display: flex;
  align-items: center;
  gap: 6px;
}
.vs { color: #fff; font-size: 18px; }
.match-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-top: 8px;
}
.ht-score { color: #ffeb3b; }
.total-score { color: #ff5252; }
.viewer { color: #00e676; }
.commentator {
  display: none;
  position: absolute;
  left: 18px;
  bottom: 12px;
  background: #222;
  color: #b3ff00;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,255,0,0.08);
}
.match-card:hover .commentator {
  display: block;
}
/* .match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  padding: 20px;
}

.match-card {
  background: #1a1a1a;
  padding: 15px;
  border-left: 4px solid limegreen;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.league {
  font-size: 14px;
  color: #ccc;
  align-self: flex-start;
}

.teams {
  font-size: 16px;
  margin: 10px 0;
  text-align: center;
}

.info {
  font-size: 12px;
  color: #999;
  text-align: center;
}

.watch-btn {
  background: #f54242;
  color: #fff;
  border: none;
  padding: 8px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  align-items: center;
  justify-content: center;
} */

/* Highlight */
/* VIDEO HIGHLIGHT layout */
.highlight {
  padding: 20px;
  background: #1e1e1e;
}

.highlight h2 {
  color: limegreen;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}

.highlight-list {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 20px;
}

.video-main {
  position: relative;
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  align-items: flex-end;
}

.video-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-main .play-btn {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  cursor: pointer;
  z-index: 2;
}

.video-main .main-title {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 1px 1px 4px #000;
  z-index: 1;
  margin-left: 60px;
}

.video-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.video-item {
  background: #222;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 70px;
  position: relative;
}

.video-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px 0 0 4px;
  flex-shrink: 0;
}

.video-item .play-btn {
  position: absolute;
  left: 8px;
  top: 8px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 2;
}

.video-item .video-title {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  margin: 10px 0 0 0;
  text-shadow: 1px 1px 2px #000;
  padding-left: 5px;
}

@media (max-width: 900px) {
  .highlight-list {
    grid-template-columns: 1fr;
  }
  .video-list {
    grid-template-columns: 1fr;
  }
}

/* About Section */
.about-section {
  background: #181a1b;
  padding: 30px 0;
}

.about-container {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
}

.about-menu {
  width: 260px;
  background: #161718;
  border-radius: 6px;
  padding: 20px 10px 20px 20px;
}

.about-menu h3 {
  color: #aaff77;
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid #222;
  padding-bottom: 8px;
  font-weight: bold;
}

.about-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-menu ul li {
  margin-bottom: 8px;
}

.about-menu ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
  display: block;
  padding: 4px 0;
}

.about-menu ul li a:hover {
  color: #fff;
}

.about-content {
  flex: 1;
  background: #202224;
  border-radius: 6px;
  padding: 25px 30px;
  color: #fff;
  min-width: 0;
}

.about-content h2 {
  color: #aaff77;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: bold;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-image {
  text-align: center;
}

.about-image img {
  max-width: 260px;
  width: 100%;
  border-radius: 16px;
  border: 4px solid #222;
  margin-bottom: 10px;
  background: #fff;
}

.about-caption {
  color: #aaa;
  font-size: 14px;
  font-style: italic;
}

@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 20px;
  }
  .about-menu {
    width: 100%;
    padding: 15px;
  }
  .about-content {
    padding: 18px 10px;
  }
}

/* Footer */
.footer-xl {
  background: #111;
  color: #fff;
  margin-top: 40px;
  font-size: 16px;
  border-top: 3px solid #222;
}

.footer-xl-title {
  color: #fff;
  font-size: 1.35rem;
  font-weight: bold;
  margin-bottom: 12px;
  border-left: 4px solid #aaff77;
  padding-left: 10px;
  text-transform: none;
}

.footer-xl-logo-link {
  display: inline-block;
  text-decoration: none;
  border: none;
  outline: none;
}

.footer-xl-logo-link:hover {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-xl-logo {
  width: 180px !important;
  height: 60px !important;
  margin: 8px 0 12px 0;
  display: block !important;
  object-fit: contain !important;
  object-position: left center;
  background: transparent;
  border-radius: 4px;
  max-width: 180px !important;
  max-height: 60px !important;
}

.footer-xl-desc {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-xl-info {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.7;
}

.footer-xl-info a {
  color: #aaff77;
  text-decoration: none;
  margin-right: 6px;
  font-size: 1rem;
}

.footer-xl-info a:hover {
  color: #fff;
}

.footer-xl-disclaimer {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-xl-disclaimer b {
  color: #aaff77;
}

.footer-xl-disclaimer ul {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
}

.footer-xl-disclaimer ul li {
  margin-bottom: 4px;
}

.footer-xl-disclaimer ul li a {
  color: #7fff4e;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-xl-disclaimer ul li a:hover {
  color: #fff;
}

.footer-xl-col-dmca {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.footer-xl-dmca {
  width: 100px;
  margin-top: 12px;
}

.footer-xl-bottom {
  background: #0f0f0f;
  color: #aaff77;
  font-size: 1rem;
  border-top: 1px solid #222;
}

/* Footer responsive styles are handled by Bootstrap */


@media (max-width: 700px) {
  .footer-top, .footer-main {
    max-width: 98vw;
    padding: 0 6px;
  }
  .footer-logo .logo-main {
    font-size: 22px;
  }
  .footer-social img {
    width: 22px;
    height: 22px;
  }
}
/* Highlight headline */
.highlight-headline {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  margin: 25px 0 18px 0;
  letter-spacing: 1px;
}

/* Highlight list grid */
.highlight-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.highlight-item {
  background: #181a1b;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 8px #0002;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.highlight-item img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.highlight-caption {
  color: #fff;
  font-size: 15px;
  padding: 10px 8px 8px 8px;
  text-align: center;
  background: #111;
  width: 100%;
}

/* Pagination */
.highlight-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 18px 0 30px 0;
}

.highlight-pagination button {
  background: #222;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s;
}

.highlight-pagination button.active,
.highlight-pagination button:hover {
  background: #aaff77;
  color: #222;
  font-weight: bold;
}

/* About Section (reuse or override if needed) */
.about-section {
  background: #181a1b;
  padding: 30px 0;
}

.about-container {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  gap: 30px;
}

.about-menu {
  width: 260px;
  background: #161718;
  border-radius: 6px;
  padding: 20px 10px 20px 20px;
}

.about-menu h3 {
  color: #aaff77;
  font-size: 18px;
  margin-bottom: 15px;
  border-bottom: 2px solid #222;
  padding-bottom: 8px;
  font-weight: bold;
}

.about-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-menu ul li {
  margin-bottom: 8px;
}

.about-menu ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
  display: block;
  padding: 4px 0;
}

.about-menu ul li a:hover {
  color: #fff;
}

.about-content {
  flex: 1;
  background: #202224;
  border-radius: 6px;
  padding: 25px 30px;
  color: #fff;
  min-width: 0;
}

.about-content h2 {
  color: #aaff77;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: bold;
}

.about-content h3 {
  color: #aaff77;
  font-size: 18px;
  margin: 18px 0 10px 0;
  font-weight: bold;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.about-image {
  text-align: center;
}

.about-image img {
  max-width: 350px;
  width: 100%;
  border-radius: 12px;
  border: 3px solid #222;
  margin-bottom: 10px;
  background: #fff;
}

.about-caption {
  color: #aaa;
  font-size: 14px;
  font-style: italic;
}

@media (max-width: 900px) {
  .highlight-list {
    grid-template-columns: 1fr 1fr;
  }
  .about-container {
    flex-direction: column;
    gap: 20px;
  }
  .about-menu {
    width: 100%;
    padding: 15px;
  }
  .about-content {
    padding: 18px 10px;
  }
}

@media (max-width: 600px) {
  .highlight-list {
    grid-template-columns: 1fr;
  }
}

/* bang-xep-hang */
.page-title {
  font-size: 2rem;
  font-weight: bold;
  color: #aaff77;
  margin: 20px 0 10px 0;
}

.filter-bar {
  margin-bottom: 15px;
}

.league-table table {
  width: 100%;
  border-collapse: collapse;
  background: #181818;
  color: #fff;
}

.league-table th, .league-table td {
  border: 1px solid #333;
  padding: 8px 12px;
  text-align: left;
}

.league-table th {
  background: #2e2e2e;
  color: #aaff77;
}

.league-table tr:nth-child(even) {
  background: #222;
}

.content-section {
  margin-top: 30px;
  color: #fff;
}

.content-section h2 {
  color: #aaff77;
  margin-top: 20px;
}

.content-section ul {
  margin-left: 20px;
}

/* Tabs kết quả */
.result-tabs {
  display: flex;
  gap: 8px;
  margin: 18px 0 12px 0;
  justify-content: flex-start;
}

.result-tabs button {
  background: #181818;
  color: #aaff77;
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: bold;
  font-size: 15px;
  padding: 8px 18px 4px 18px;
  cursor: pointer;
  text-transform: uppercase;
  transition: border 0.2s, color 0.2s;
  outline: none;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.result-tabs button span {
  font-size: 12px;
  color: #fff;
  font-weight: normal;
  margin-top: 2px;
}

.result-tabs button.active,
.result-tabs button:hover {
  color: #fff;
  border-bottom: 3px solid #aaff77;
  background: #222;
}

/* Bảng kết quả */
.result-table {
  background: #181818;
  border-radius: 8px;
  padding: 18px 12px;
  margin-bottom: 24px;
}

.result-league {
  margin-bottom: 18px;
}

.league-title {
  color: #aaff77;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.result-match {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #222;
  border-radius: 5px;
  padding: 8px 10px;
  margin-bottom: 7px;
  font-size: 15px;
}

.match-status {
  color: #aaff77;
  font-weight: bold;
  width: 45px;
  text-align: center;
}

.match-teams {
  flex: 1;
  color: #fff;
  font-weight: 500;
}

.match-odds {
  color: #ffd700;
  font-size: 14px;
  min-width: 90px;
  text-align: center;
}

.match-extra {
  color: #4caf50;
  font-size: 13px;
  min-width: 60px;
  text-align: right;
}

@media (max-width: 700px) {
  .result-match {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    font-size: 13px;
  }
  .result-tabs {
    flex-wrap: wrap;
    gap: 4px;
  }
}
/* Tin Thể Thao Layout */
.news-container {
  display: flex;
  gap: 32px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 24px 0 40px 0;
}

.news-main {
  flex: 2;
}

.news-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 18px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.news-item {
  display: flex;
  align-items: flex-start;
  background: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.news-item a {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.news-thumb {
  width: 200px;
  min-width: 200px;
  height: 120px;
  overflow: hidden;
  border-radius: 6px;
  margin-right: 18px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-headline {
  font-size: 1.1rem;
  font-weight: bold;
  color: #aaff77;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.news-meta {
  font-size: 0.95rem;
  color: #bbb;
}

.news-meta span {
  color: #4caf50;
}

.news-item:hover .news-headline {
  color: #fff;
}

/* Sidebar */
.news-sidebar {
  flex: 1;
  background: #181818;
  border-radius: 8px;
  padding: 18px 18px 18px 22px;
  min-width: 260px;
  max-width: 340px;
  height: fit-content;
}

.sidebar-title {
  font-size: 1.15rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 14px;
  border-left: 4px solid #aaff77;
  padding-left: 10px;
  text-transform: uppercase;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  margin-bottom: 8px;
}

.sidebar-list a {
  color: #7fff4e;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s;
}

.sidebar-list a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .news-container {
    flex-direction: column;
    gap: 18px;
    padding: 12px 0 24px 0;
  }
  .news-sidebar {
    max-width: 100%;
    min-width: unset;
    margin-top: 18px;
  }
  .news-thumb {
    width: 140px;
    min-width: 140px;
    height: 90px;
    margin-right: 12px;
  }
}
/* Toin Thể Thao Layout */

.news-container {
  display: flex;
  gap: 32px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 24px 0 40px 0;
}

.news-main {
  flex: 2;
}

.news-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 18px;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.news-item {
  display: flex;
  align-items: flex-start;
  background: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.news-item a {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.news-thumb {
  width: 200px;
  min-width: 200px;
  height: 120px;
  overflow: hidden;
  border-radius: 6px;
  margin-right: 18px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-headline {
  font-size: 1.1rem;
  font-weight: bold;
  color: #aaff77;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.news-meta {
  font-size: 0.95rem;
  color: #bbb;
}

.news-meta span {
  color: #4caf50;
}

.news-item:hover .news-headline {
  color: #fff;
}

/* Sidebar */
.news-sidebar {
  flex: 1;
  background: #181818;
  border-radius: 8px;
  padding: 18px 18px 18px 22px;
  min-width: 260px;
  max-width: 340px;
  height: fit-content;
}

.sidebar-title {
  font-size: 1.15rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 14px;
  border-left: 4px solid #aaff77;
  padding-left: 10px;
  text-transform: uppercase;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  margin-bottom: 8px;
}

.sidebar-list a {
  color: #7fff4e;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color 0.2s;
}

.sidebar-list a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .news-container {
    flex-direction: column;
    gap: 18px;
    padding: 12px 0 24px 0;
  }
  .news-sidebar {
    max-width: 100%;
    min-width: unset;
    margin-top: 18px;
  }
  .news-thumb {
    width: 140px;
    min-width: 140px;
    height: 90px;
    margin-right: 12px;
  }
}