/* Estilos base */
body {
  font-family: "Inter", sans-serif;
  background-color: #121212;
  color: #ffffff;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

body.modal-open {
  overflow: hidden;
}

/* Animações e efeitos */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Header e navegação */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: rgba(18, 18, 18, 0.95);
  border-bottom: 1px solid #333333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.logo {
  height: 40px;
}

.nav-menu {
  display: flex;
  gap: 24px;
}

.nav-link {
  color: #cccccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff007f, #ff4500);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.search-bar {
  display: flex;
  align-items: center;
  background-color: #1a1a1a;
  border-radius: 4px;
  padding: 6px 12px;
  border: 1px solid #333333;
  width: 240px;
}

.search-bar input {
  background: transparent;
  border: none;
  color: #ffffff;
  outline: none;
  width: 100%;
  margin-left: 8px;
}

.search-bar i {
  color: #888888;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background-color: #1a1a1a;
  padding: 16px;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #333333;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-search {
  width: 100%;
}

/* Carrossel */
.carousel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  height: 480px;
  margin-top: 60px;
  overflow: hidden;
  z-index: 1;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 1;
}

.carousel-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.2) 100%
  );
}

.carousel-content {
  /* Removeremos o `position` e ajustes relacionados */
  text-align: center;
  z-index: 2;
  max-width: 600px;
  animation: fadeIn 0.5s;
}

/* Badge "AO VIVO" */
.carousel-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-block;
  background: linear-gradient(90deg, #ff4500, #ff007f);
  color: white;
  padding: 10px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 17px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  animation: pulse 1.5s infinite;
}

/* Username */
.carousel-username {
  position: absolute;
  top: 310px; /* Ajuste conforme necessário */
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 16px 0 8px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* Informações do streamer (país e espectadores) */
.carousel-info {
  position: absolute;
  top: 16px; /* Ajuste conforme necessário */
  left: 70px;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.carousel-country img {
  height: 23px;
  border-radius: 4px;
}

.carousel-viewers {
  display: flex;
  align-items: center;
  color: #cccccc;
  font-size: 20px;
}

.carousel-button {
  display: block;
  position: absolute;
  background: linear-gradient(
    135deg,
    #ff007f,
    #800080
  ); /* Gradiente do botão */
  color: white;
  bottom: 50px;
  left: 50%; /* Posiciona o botão no centro horizontal */
  transform: translateX(-50%); /* Centraliza o botão no eixo X */
  font-size: 18px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease-in-out; /* Transição suave */
}

.carousel-button:hover {
  transform: translateX(-50%) scale(1.1); /* Cresce 10% ao passar o mouse */
}

/* Controles do Carrossel */
.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  transform: translateY(-50%);
  z-index: 2;
}

.carousel-control {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.carousel-control:hover {
  opacity: 1;
}

/* Indicadores do Carrossel */
.carousel-indicators {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-indicator.active {
  background-color: #ff007f;
}

/* Filtros */
.filters-section {
  position: relative;
  padding: 24px;
  background-color: #1a1a1a;
  border-bottom: 1px solid #333333;
  z-index: 0;
}

.filters-container {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 200px;
}

.filter-label {
  font-size: 14px;
  font-weight: 500;
  color: #cccccc;
}

.filter-select {
  background-color: #2a2a2a;
  border: 1px solid #333333;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.filter-button {
  background: linear-gradient(135deg, #4169e1, #800080);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  align-self: flex-end;
}

.filter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(65, 105, 225, 0.3);
}

/* Grid de transmissões */
.broadcasts-section {
  padding: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title i {
  color: #ff007f;
}

.broadcasts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

/* Card de transmissão */
.broadcast-card {
  background-color: #1a1a1a;
  border: 1px solid #333333;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.broadcast-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.card-thumbnail {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 aspect ratio */
  overflow: hidden;
}

.card-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.broadcast-card:hover .card-thumbnail img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.broadcast-card:hover .card-overlay {
  opacity: 1;
}

.play-button {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 0, 127, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  transform: scale(0.8);
  transition: transform 0.3s;
}

.broadcast-card:hover .play-button {
  transform: scale(1);
}

.live-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(90deg, #ff007f, #ff4500);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 12px;
  animation: pulse 1.5s infinite;
}

.card-info {
  padding: 12px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.card-username {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 80%;
}

.card-country img {
  height: 16px;
  border-radius: 2px;
}

.card-viewers {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 8px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.tag {
  background-color: #2a2a2a;
  color: #cccccc;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
}

/* Estados do grid */
.loading-state,
.error-state,
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  text-align: center;
  padding: 24px;
}

.loader {
  width: 48px;
  height: 48px;
  border: 4px solid #333333;
  border-top: 4px solid #ff007f;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.error-icon,
.empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.error-state h3,
.empty-state h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.error-state p,
.empty-state p {
  color: #cccccc;
  margin-bottom: 16px;
}

.error-state button {
  background: linear-gradient(135deg, #ff007f, #800080);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
}

/* Estilização para o botão "Atualizar" */
.update-button {
  display: inline-block;
  background: linear-gradient(
    135deg,
    #ff007f,
    #800080
  ); /* Gradiente do botão */
  color: white;
  font-size: 16px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease-in-out; /* Transição suave */
  border: none;
  margin-left: auto; /* Alinha à direita dentro da linha */
}

.update-button:hover {
  transform: scale(1.1); /* Cresce 10% ao passar o mouse */
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* Paginação */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination-button,
.pagination-number {
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
  border: 1px solid #333333;
  color: #ffffff;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.pagination-button:hover:not([disabled]),
.pagination-number:hover:not(.active) {
  background-color: #2a2a2a;
}

.pagination-number.active {
  background: linear-gradient(135deg, #ff007f, #800080);
  border: none;
}

.pagination-button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: #1a1a1a;
  border-radius: 8px;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s;
  animation: fadeIn 0.3s forwards;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #333333;
}

.modal-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  color: #cccccc;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #ffffff;
}

.modal-body {
  padding: 24px;
}

.modal-player {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.player-container {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
  /* 16:9 aspect ratio */
  background-color: #0a0a0a;
  border-radius: 8px;
  overflow: hidden;
}

.player-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.play-button-large {
  width: 80px;
  height: 80px;
  background-color: rgba(255, 0, 127, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
}

.play-button-large:hover {
  transform: scale(1.1);
  background-color: rgba(255, 0, 127, 1);
}

.modal-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.streamer-info {
  display: flex;
  gap: 16px;
}

.streamer-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.streamer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.streamer-details {
  flex: 1;
}

.streamer-details h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.streamer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #cccccc;
  font-size: 14px;
}

.country {
  display: flex;
  align-items: center;
  gap: 6px;
}

.country img {
  height: 16px;
  border-radius: 2px;
}

.viewers {
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.additional-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid #333333;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cccccc;
  font-size: 14px;
}

.related-broadcasts {
  margin-top: 24px;
}

.related-broadcasts h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.related-card {
  background-color: #2a2a2a;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}

.related-card:hover {
  transform: translateY(-5px);
}

.related-thumbnail {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 aspect ratio */
}

.related-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.related-card:hover .related-overlay {
  opacity: 1;
}

.related-play {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 0, 127, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}

.related-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(90deg, #ff007f, #ff4500);
  color: white;
  padding: 2px 6px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 10px;
  animation: pulse 1.5s infinite;
}

.related-info {
  padding: 8px;
}

.related-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #cccccc;
}

.related-country img {
  height: 14px;
  border-radius: 2px;
}

/* Toast notifications */
.toast-container {
  position: fixed;
  top: 80px;
  right: 24px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #2a2a2a;
  border-left: 4px solid;
  padding: 12px 16px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  max-width: 300px;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast-success {
  border-left-color: #4caf50;
}

.toast-error {
  border-left-color: #f44336;
}

.toast-info {
  border-left-color: #2196f3;
}

.toast-warning {
  border-left-color: #ff9800;
}

.toast-icon {
  font-size: 20px;
}

.toast-success .toast-icon {
  color: #4caf50;
}

.toast-error .toast-icon {
  color: #f44336;
}

.toast-info .toast-icon {
  color: #2196f3;
}

.toast-warning .toast-icon {
  color: #ff9800;
}

.toast-message {
  flex: 1;
  font-size: 14px;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  padding: 32px 24px;
  margin-top: 48px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-description {
  max-width: 400px;
  color: #cccccc;
  font-size: 14px;
  margin-bottom: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}

.footer-link {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-copyright {
  width: 100%;
  text-align: center;
  color: #888888;
  font-size: 14px;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid #333333;
}

/* Responsividade */
@media (max-width: 1200px) {
  .carousel-content {
    left: 32px;
    bottom: 32px;
  }

  .carousel-username {
    font-size: 28px;
  }
}

@media (max-width: 992px) {
  .carousel {
    height: 360px;
  }

  .carousel-content {
    left: 24px;
    bottom: 24px;
  }

  .carousel-username {
    font-size: 24px;
  }

  .modal-player {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header {
    height: 50px;
    padding: 0 16px;
  }

  .logo {
    height: 30px;
  }

  .nav-menu {
    display: none;
  }

  .search-bar {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-menu {
    display: flex;
  }

  .carousel {
    height: 240px;
    margin-top: 50px;
  }

  .carousel-content {
    left: 16px;
    bottom: 16px;
    max-width: 80%;
  }

  .carousel-username {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .carousel-info {
    margin-bottom: 16px;
  }

  .carousel-button {
    padding: 8px 16px;
  }

  .section-title {
    font-size: 20px;
  }

  .broadcasts-section,
  .filters-section {
    padding: 16px;
  }

  .filter-group {
    min-width: 100%;
  }

  .modal-content {
    width: 95%;
  }

  .modal-header {
    padding: 12px 16px;
  }

  .modal-body {
    padding: 16px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .carousel-badge {
    font-size: 12px;
    padding: 2px 8px;
  }

  .carousel-username {
    font-size: 18px;
  }

  .carousel-info {
    gap: 8px;
    font-size: 14px;
  }

  .broadcasts-grid {
    grid-template-columns: 1fr;
  }

  .pagination {
    flex-wrap: wrap;
    justify-content: center;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .streamer-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .streamer-meta {
    justify-content: center;
  }

  .additional-info {
    justify-content: center;
  }
}


#load-more.load-more-button {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #8f45f8, #d315a1);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s ease;
  max-width: 240px;
}
#load-more.load-more-button:hover {
  opacity: 0.9;
}

/* Grade de transmissões com 5 colunas fixas */
/* Grade responsiva com cards que se ajustam proporcionalmente */
#broadcasts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
  width: 100%;
  box-sizing: border-box;
}

/* Card ocupa toda a célula */
.broadcast-card {
  width: 100%;
  background-color: #1e1e1e;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}