/* ==========================================
   EYESCODE LIVE CARD MOBILE
   ========================================== */


@media(max-width:700px) {
  
  
.live-card {
  
flex:0 0 280px;
  
  border-radius: 20px;
  
  overflow: hidden;
  
  flex-shrink: 0;
  
}
  
  
  /* THUMBNAIL */
  
  
.live-thumb {
  
  width: 100%;
  
  height: 158px;
  
}
  
  
  .live-thumb img {
    
    transition: .3s;
    
  }
  
  
  
  
  /* BADGE AO VIVO */
  
  
  .live-badge {
    
    top: 10px;
    
    left: 10px;
    
    padding: 5px 10px;
    
    font-size: 11px;
    
  }
  
  


  
  
  
  /* INFORMAÇÕES */
  
  
  .live-info {
    
    padding: 14px;
    
    gap: 12px;
    
    align-items: flex-start;
    
  }
  
  
  
  /* AVATAR */
  
  
  .live-avatar {
    
    width: 45px;
    
    height: 45px;
    
    border-width: 2px;
    
    flex-shrink: 0;
    
  }
  
  
  
  /* TEXTO */
  
  
  .live-details {
    
    gap: 4px;
    
    min-width: 0;
    
  }
  
  
  
  .live-details strong {
    
    font-size: 15px;
    
    white-space: nowrap;
    
    overflow: hidden;
    
    text-overflow: ellipsis;
    
  }
  
  
  
  .live-game {
    
    font-size: 12px;
    
  }
  
  .live-grid {
  
  display: flex;
  
  width: 100%;
  
  overflow-x: auto;
  
  gap: 15px;
  
  padding-bottom: 10px;
  
}
  
  .live-details p {
    
    font-size: 12px;
    
    display: -webkit-box;
    
    -webkit-line-clamp: 2;
    
    -webkit-box-orient: vertical;
    
    overflow: hidden;
    
  }
  
  
  
  /* REMOVE HOVER NO TOUCH */
  
  
  .live-card:hover {
    
    transform: none;
    
    box-shadow: none;
    
  }
  
  
  
}

@media(max-width:700px) {
  
  
  .live-overlay {
    
    padding: 10px;
    
  }
  
  
  
  .watch-live {
    
    display: flex;
    
    align-items: center;
    
    justify-content: center;
    
    background: #2563eb;
    
    color: white;
    
    border: none;
    
    border-radius: 20px;
    
    padding: 7px 14px;
    
    font-size: 12px;
    
    font-weight: 600;
    
  }
  
  
}

@media(max-width:700px) {
  
  
  .live-card,
  .live-card * {
    
    box-sizing: border-box;
    
  }
  
  
  .live-card img {
    
    max-width: 100%;
    
  }
  
  
  .live-thumb {
    
    flex: none;
    
  }
  
  
  .live-info {
    
    width: 100%;
    
  }
  
  
  .live-details {
    
    flex: 1;
    
  }
  
  
}

@media(max-width:700px) {
  
  
  .live-thumb {
    
    position: relative;
    
    overflow: hidden;
    
  }
  
  
  
  /* CONTAINER DOS ELEMENTOS SOBRE A THUMB */
  
  .live-overlay {
    
    position: absolute;
    
    inset: 0;
    
    display: flex;
    
    align-items: center;
    
    justify-content: center;
    
    pointer-events: none;
    
  }
  
  
  
  /* BOTÃO CENTRAL */
  
  .watch-live {
    
    pointer-events: auto;
    
    position: absolute;
    
    top: 50%;
    
    left: 50%;
    
    transform: translate(-50%, -50%);
    
    
    background: #2563eb;
    
    color: white;
    
    border: none;
    
    border-radius: 999px;
    
    
    padding: 10px 18px;
    
    
    font-size: 13px;
    
    font-weight: 700;
    
    
  }
  
  
  
  /* AO VIVO */
  
  .live-badge {
    
    position: absolute;
    
    top: 10px;
    
    left: 10px;
    
    
    background: #ef4444;
    
    color: white;
    
    
    border-radius: 999px;
    
    
    padding: 5px 10px;
    
    
    font-size: 11px;
    
    font-weight: 700;
    
    
  }
  
  
  
  /* ESPECTADORES */
  
.live-viewers {
  
  margin-left: auto;
  
  background: rgba(0, 0, 0, .45);
  
  padding: 5px 10px;
  
  border-radius: 20px;
  
  font-size: 12px;
  
  color: white;
  
  white-space: nowrap;
  
}
  
  
}
@media(max-width:700px) {
  
  .live-carousel-buttons {
    display: none;
  }
  
  .saved-lives-carousel {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }
  
  .saved-lives-carousel .live-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
  
}