.video-item {
  cursor: pointer;
  background-color: #181a24;
  padding: 10px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  flex: 0 0 220px;
  margin-right: 10px;
}

.carousel-video-item {
  cursor: pointer;
  background-color: #181a24;
  padding: 10px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
  flex: 0 0 220px;
  margin-right: 30px;
}

.video-item:hover {
  transform: scale(1.1);
}

.preview-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
  border-radius: 6px;
}

.preview-container img,
.preview-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-title-with-icon {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 8px;
  color: white;
  font-size: 0.8rem;
}

.icon-placeholder {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: ##181a24;
  object-fit: cover;
  margin-left: 8px;
}

.score-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10px;
  width: 30%;
  box-sizing: border-box;
}

.score-box {
  justify-content: flex-end;
  align-items: center;
  width: 30%;
}

.score-table {
  border-collapse: collapse;
  text-align: center;
  width: auto;
}

.score-table th {
  font-size: 9px;
  font-weight: normal;
  color: white;
  padding-bottom: 4px;
}

.score-table td {
  padding: 4px 10px;
}

.score-circle {
  font-weight: bold;
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  background-color: transparent;
  color: white;
}

.score-circle.dnq {
  color: #e50914;
  border-color: #e50914;
  font-size: 10px;
}

.video-title-text {
  line-height: 1.2;
}

.video-title-text a {
  text-decoration: none;
  color: inherit;
}

.video-title-text::first-line {
  font-size: 0.85rem;
  font-weight: bold;
}

.flag-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #444;
  object-fit: cover;
  margin-left: 8px;
}

.circle-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: auto;
  gap: 4px; /* reduced horizontal gap between SF and F */
}

.circle-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 24px;
}

.circle-label {
  font-size: 0.6rem;
  color: #ccc;
  margin-bottom: 12px; /* tighter spacing between label and image */
  line-height: 1;
  text-align: center;
}

.circle-icon {
  width: 24px;       /* 20% smaller than 26px base */
  height: 24px;
  border-radius: 50%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
