/* Stream Section Styling for Top Navigation */

.stream-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.35rem;
  margin-left: auto;
  margin-right: 0;
}

.stream-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.7;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

.stream-buttons {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: flex-end;
}

.stream-buttons .icon-link {
  width: 2rem;
  height: 2rem;
  margin-left: 0 !important;
  transition: all 0.2s ease;
}

.stream-buttons .icon-link:hover {
  transform: scale(1.1);
}

.stream-buttons .icon-link svg {
  width: 1.1rem;
  height: 1.1rem;
}

@media (max-width: 768px) {
  .stream-section {
    gap: 0.25rem;
    margin-left: 0.8rem;
  }

  .stream-label {
    font-size: 0.6rem;
    letter-spacing: 0.02em;
  }

  .stream-buttons {
    gap: 0.4rem;
  }

  .stream-buttons .icon-link {
    width: 1.8rem;
    height: 1.8rem;
  }

  .stream-buttons .icon-link svg {
    width: 1rem;
    height: 1rem;
  }
}

@media (max-width: 480px) {
  .stream-section {
    display: none;
  }
}
