/* Import a clean modern font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #0d0d0d;
  color: #f5f5f5;
}

/* Header */
header {
  background: #111;
  padding: 15px 0;
  border-bottom: 2px solid #222;
}

.we_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.we_logo img {
  height: 50px;
}

.we_header_list {
  list-style: none;
  display: flex;
  gap: 20px;
}

.we_header_list li a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.we_header_list li a:hover {
  color: #ff3b3b; /* accent color */
}

/* Main content */
.we_part_title p {
  font-size: 22px;
  font-weight: 600;
  border-left: 5px solid #ff3b3b;
  padding-left: 10px;
  margin-bottom: 20px;
}

.we_matches_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0;
  list-style: none;
}

.we_match_box {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.we_match_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(255,59,59,0.3);
}

.we_match_image {
  position: relative;
  cursor: pointer;
}

.we_match_image img.we_match_pic {
  width: 100%;
  display: block;
  border-bottom: 2px solid #ff3b3b;
}

.we_match_date, .we_match_today {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #ff3b3b;
  color: white;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  margin-right: 5px;
}

.we_match_today {
  left: auto;
  right: 10px;
  background: #28a745; /* green for live */
}

.we_match_play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  transform: translate(-50%, -50%);
  opacity: 0.9;
}

.we_match_title {
  padding: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}

/* Footer */
footer {
  background: #111;
  padding: 20px;
  margin-top: 40px;
  text-align: center;
  color: #aaa;
  border-top: 2px solid #222;
}

footer img {
  height: 40px;
  margin-left: 10px;
  vertical-align: middle;
}
