.robin-container {
  display: flex;
  background: #111;
  border-radius: 12px;
  padding: 15px;
  gap: 20px;
  color: #eee;
}
.robinsp-player {
  width: 60%;
}
.robin-iframe-wrapper {
  height: 52vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}
.robin-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}
.robinsp-sidebar {
  width: 38%;
  background: #1c1c1c;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.robinsp-tabs {
  display: flex;
  gap: 10px;
}
.robin-tab {
  flex: 1;
  padding: 10px;
  background: #222;
  border: none;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.robin-tab:hover {
  background: #333;
}
.robin-tab.active {
  background: #008f57;
}
.robin-source-switch {
  display: none;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.robin-source-switch button {
  background: #333;
  color: #fff;
  border: none;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
}
.robin-source-switch button:hover {
  background: #444;
}
.robin-source-label {
  font-size: 13px;
  color: #bbb;
}
.robinsp-tab-content {
  display: none;
  flex-direction: column;
  gap: 10px;
  max-height: 43vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #444 #1c1c1c;
}
.robinsp-tab-content.active {
  display: flex;
}
.robinsp-tab-content::-webkit-scrollbar {
  width: 6px;
}
.robinsp-tab-content::-webkit-scrollbar-track {
  background: #1c1c1c;
}
.robinsp-tab-content::-webkit-scrollbar-thumb {
  background-color: #444;
  border-radius: 10px;
}
.robinsp-tab-content::-webkit-scrollbar-thumb:hover {
  background-color: #666;
}
.robinsp-match {
  background: #222;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid #333;
}
.robinsp-match:hover {
  background: #2a2a2a;
}
.robinsp-match-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.robinsp-match-line span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}
.robinsp-match-line strong {
  font-weight: 500;
  font-size: 14px;
}
.match-time {
  font-size: 13px;
  color: #bbb;
}
.robinsp-channel {
  background: #222;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #333;
  cursor: pointer;
}
.robinsp-channel:hover {
  background: #2a2a2a;
}
.robin-channel-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.robin-channel-info img {
  width: 50px;
  border-radius: 6px;
}
.robin-channel-info span {
  font-weight: bold;
  color: #eee;
}
@media (max-width: 768px) {
  .robin-container {
    flex-direction: column;
  }
  .robinsp-player,
  .robinsp-sidebar {
    width: 100%;
  }
  .robin-iframe-wrapper {
    height: 60vh;
  }
  .robinsp-tab-content {
    max-height: 50vh;
  }
}