/* Grid container */
.lives-grid-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Grid de lives */
.lives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Items del grid */
.live-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.live-item:hover {
    transform: translateY(-5px);
}

.live-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.live-item img {
    width: 100%;
    height: auto;
    display: block;
}

.live-title {
    margin: 0;
    padding: 15px;
    font-size: 16px;
    text-align: center;
}

/* Botón de cargar más */
.load-more-container {
    text-align: center;
    margin-top: 20px;
}

.load-more-button {
    background: #ff0000; /* Rojo como YouTube */
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.load-more-button:hover {
    background: #cc0000;
}

/* Responsive */
@media (max-width: 1024px) {
    .lives-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .lives-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .lives-grid {
        grid-template-columns: 1fr;
    }
}